2016-04-12 12:40:37 -04:00
|
|
|
import {
|
|
|
|
beforeEach,
|
|
|
|
ddescribe,
|
|
|
|
xdescribe,
|
|
|
|
describe,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
beforeEachProviders,
|
|
|
|
it,
|
|
|
|
xit,
|
2016-04-28 20:50:03 -04:00
|
|
|
} from '@angular/core/testing/testing_internal';
|
|
|
|
import {
|
2016-04-26 19:38:54 -04:00
|
|
|
TestComponentBuilder,
|
|
|
|
ComponentFixtureAutoDetect,
|
|
|
|
ComponentFixtureNoNgZone
|
2016-04-28 20:50:03 -04:00
|
|
|
} from '@angular/compiler/testing';
|
|
|
|
import {AsyncTestCompleter} from '@angular/core/testing/testing_internal';
|
2016-05-02 01:50:37 -04:00
|
|
|
import {
|
|
|
|
Injectable,
|
|
|
|
provide,
|
|
|
|
Component,
|
|
|
|
Input,
|
|
|
|
ViewMetadata,
|
|
|
|
ComponentResolver
|
|
|
|
} from '@angular/core';
|
2016-04-28 20:50:03 -04:00
|
|
|
import {NgIf} from '@angular/common';
|
2016-05-03 14:26:07 -04:00
|
|
|
import {TimerWrapper} from '../src/facade/async';
|
2016-04-28 20:50:03 -04:00
|
|
|
import {IS_DART} from '../src/facade/lang';
|
|
|
|
import {PromiseWrapper} from '../src/facade/promise';
|
|
|
|
import {dispatchEvent} from "@angular/platform-browser/testing";
|
2016-05-02 01:50:37 -04:00
|
|
|
import {
|
|
|
|
withProviders
|
|
|
|
} from "@angular/core/testing/test_injector"
|
2015-05-15 19:42:52 -04:00
|
|
|
|
2016-05-02 01:50:37 -04:00
|
|
|
@Component({
|
|
|
|
selector: 'child-comp',
|
|
|
|
template: `<span>Original {{childBinding}}</span>`,
|
|
|
|
directives: []
|
|
|
|
}) @Injectable() class ChildComp {
|
2015-05-15 19:42:52 -04:00
|
|
|
childBinding: string;
|
2015-05-28 18:02:20 -04:00
|
|
|
constructor() { this.childBinding = 'Child'; }
|
2015-05-15 19:42:52 -04:00
|
|
|
}
|
|
|
|
|
2016-03-08 16:36:48 -05:00
|
|
|
@Component({selector: 'child-comp', template: `<span>Mock</span>`})
|
2015-05-15 19:42:52 -04:00
|
|
|
@Injectable()
|
|
|
|
class MockChildComp {
|
|
|
|
}
|
|
|
|
|
2016-03-08 16:36:48 -05:00
|
|
|
@Component({
|
|
|
|
selector: 'parent-comp',
|
|
|
|
template: `Parent(<child-comp></child-comp>)`,
|
|
|
|
directives: [ChildComp]
|
|
|
|
})
|
2015-05-15 19:42:52 -04:00
|
|
|
@Injectable()
|
|
|
|
class ParentComp {
|
|
|
|
}
|
|
|
|
|
2016-03-08 16:36:48 -05:00
|
|
|
@Component({
|
|
|
|
selector: 'my-if-comp',
|
|
|
|
template: `MyIf(<span *ngIf="showMore">More</span>)`,
|
|
|
|
directives: [NgIf]
|
|
|
|
})
|
2015-05-15 19:42:52 -04:00
|
|
|
@Injectable()
|
|
|
|
class MyIfComp {
|
|
|
|
showMore: boolean = false;
|
|
|
|
}
|
|
|
|
|
2016-03-08 16:36:48 -05:00
|
|
|
@Component({selector: 'child-child-comp', template: `<span>ChildChild</span>`})
|
2015-08-17 14:43:14 -04:00
|
|
|
@Injectable()
|
2015-09-08 13:14:57 -04:00
|
|
|
class ChildChildComp {
|
|
|
|
}
|
2015-08-17 14:43:14 -04:00
|
|
|
|
2016-03-08 16:36:48 -05:00
|
|
|
@Component({
|
|
|
|
selector: 'child-comp',
|
2015-09-08 13:14:57 -04:00
|
|
|
template: `<span>Original {{childBinding}}(<child-child-comp></child-child-comp>)</span>`,
|
|
|
|
directives: [ChildChildComp]
|
|
|
|
})
|
2015-08-17 14:43:14 -04:00
|
|
|
@Injectable()
|
|
|
|
class ChildWithChildComp {
|
|
|
|
childBinding: string;
|
|
|
|
constructor() { this.childBinding = 'Child'; }
|
|
|
|
}
|
|
|
|
|
2016-03-08 16:36:48 -05:00
|
|
|
@Component({selector: 'child-child-comp', template: `<span>ChildChild Mock</span>`})
|
2015-08-17 14:43:14 -04:00
|
|
|
@Injectable()
|
2015-09-08 13:14:57 -04:00
|
|
|
class MockChildChildComp {
|
|
|
|
}
|
|
|
|
|
2016-04-26 19:38:54 -04:00
|
|
|
@Component({selector: 'autodetect-comp', template: `<span (click)='click()'>{{text}}</span>`})
|
|
|
|
class AutoDetectComp {
|
|
|
|
text: string = '1';
|
2015-09-08 13:14:57 -04:00
|
|
|
|
2016-04-26 19:38:54 -04:00
|
|
|
click() { this.text += '1'; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({selector: 'async-comp', template: `<span (click)='click()'>{{text}}</span>`})
|
|
|
|
class AsyncComp {
|
|
|
|
text: string = '1';
|
|
|
|
|
|
|
|
click() {
|
|
|
|
PromiseWrapper.resolve(null).then((_) => { this.text += '1'; });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({selector: 'async-child-comp', template: '<span>{{localText}}</span>'})
|
|
|
|
class AsyncChildComp {
|
|
|
|
localText: string = '';
|
|
|
|
|
|
|
|
@Input()
|
|
|
|
set text(value: string) {
|
|
|
|
PromiseWrapper.resolve(null).then((_) => { this.localText = value; });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'async-change-comp',
|
|
|
|
template: `<async-child-comp (click)='click()' [text]="text"></async-child-comp>`,
|
|
|
|
directives: [AsyncChildComp]
|
|
|
|
})
|
|
|
|
class AsyncChangeComp {
|
|
|
|
text: string = '1';
|
|
|
|
|
|
|
|
click() { this.text += '1'; }
|
|
|
|
}
|
2015-09-08 13:14:57 -04:00
|
|
|
|
2016-05-03 14:26:07 -04:00
|
|
|
@Component({selector: 'async-timeout-comp', template: `<span (click)='click()'>{{text}}</span>`})
|
|
|
|
class AsyncTimeoutComp {
|
|
|
|
text: string = '1';
|
|
|
|
|
|
|
|
click() {
|
|
|
|
TimerWrapper.setTimeout(() => { this.text += '1'; }, 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component(
|
|
|
|
{selector: 'nested-async-timeout-comp', template: `<span (click)='click()'>{{text}}</span>`})
|
|
|
|
class NestedAsyncTimeoutComp {
|
|
|
|
text: string = '1';
|
|
|
|
|
|
|
|
click() {
|
|
|
|
TimerWrapper.setTimeout(() => { TimerWrapper.setTimeout(() => { this.text += '1'; }, 10); },
|
|
|
|
10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-08 13:14:57 -04:00
|
|
|
class FancyService {
|
|
|
|
value: string = 'real value';
|
|
|
|
}
|
|
|
|
|
|
|
|
class MockFancyService extends FancyService {
|
|
|
|
value: string = 'mocked out value';
|
|
|
|
}
|
|
|
|
|
2016-03-08 16:36:48 -05:00
|
|
|
@Component({
|
|
|
|
selector: 'my-service-comp',
|
|
|
|
bindings: [FancyService],
|
|
|
|
template: `injected value: {{fancyService.value}}`
|
|
|
|
})
|
2015-09-08 13:14:57 -04:00
|
|
|
class TestBindingsComp {
|
|
|
|
constructor(private fancyService: FancyService) {}
|
|
|
|
}
|
|
|
|
|
2016-03-08 16:36:48 -05:00
|
|
|
@Component({
|
|
|
|
selector: 'my-service-comp',
|
|
|
|
viewProviders: [FancyService],
|
|
|
|
template: `injected value: {{fancyService.value}}`
|
|
|
|
})
|
2015-09-08 13:14:57 -04:00
|
|
|
class TestViewBindingsComp {
|
|
|
|
constructor(private fancyService: FancyService) {}
|
|
|
|
}
|
2015-08-17 14:43:14 -04:00
|
|
|
|
2016-04-25 02:11:30 -04:00
|
|
|
@Component({selector: 'li1', template: `<span>One</span>`})
|
|
|
|
class ListDir1 {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({selector: 'li1', template: `<span>Alternate One</span>`})
|
|
|
|
class ListDir1Alt {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({selector: 'li2', template: `<span>Two</span>`})
|
|
|
|
class ListDir2 {
|
|
|
|
}
|
|
|
|
|
2016-04-26 00:58:48 -04:00
|
|
|
const LIST_CHILDREN = /*@ts2dart_const*/[ListDir1, ListDir2];
|
2016-04-25 02:11:30 -04:00
|
|
|
|
|
|
|
@Component(
|
|
|
|
{selector: 'directive-list-comp', template: `(<li1></li1>)(<li2></li2>)`, directives: [LIST_CHILDREN]})
|
|
|
|
class DirectiveListComp {
|
|
|
|
}
|
|
|
|
|
2015-08-17 14:43:14 -04:00
|
|
|
|
2015-05-15 19:42:52 -04:00
|
|
|
export function main() {
|
|
|
|
describe('test component builder', function() {
|
|
|
|
it('should instantiate a component with valid DOM',
|
2015-09-11 16:45:31 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-05-15 19:42:52 -04:00
|
|
|
|
2015-10-31 12:50:19 -04:00
|
|
|
tcb.createAsync(ChildComp).then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
2015-05-15 19:42:52 -04:00
|
|
|
|
2015-11-30 15:49:22 -05:00
|
|
|
expect(componentFixture.nativeElement).toHaveText('Original Child');
|
2015-05-15 19:42:52 -04:00
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2015-05-28 18:02:20 -04:00
|
|
|
it('should allow changing members of the component',
|
2015-09-11 16:45:31 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-05-15 19:42:52 -04:00
|
|
|
|
2015-10-31 12:50:19 -04:00
|
|
|
tcb.createAsync(MyIfComp).then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
2015-11-30 15:49:22 -05:00
|
|
|
expect(componentFixture.nativeElement).toHaveText('MyIf()');
|
2015-05-15 19:42:52 -04:00
|
|
|
|
2015-11-30 15:49:22 -05:00
|
|
|
componentFixture.componentInstance.showMore = true;
|
2015-10-31 12:50:19 -04:00
|
|
|
componentFixture.detectChanges();
|
2015-11-30 15:49:22 -05:00
|
|
|
expect(componentFixture.nativeElement).toHaveText('MyIf(More)');
|
2015-05-15 19:42:52 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should override a template',
|
2015-09-11 16:45:31 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-05-15 19:42:52 -04:00
|
|
|
|
2015-05-28 18:02:20 -04:00
|
|
|
tcb.overrideTemplate(MockChildComp, '<span>Mock</span>')
|
2015-05-15 19:42:52 -04:00
|
|
|
.createAsync(MockChildComp)
|
2015-10-31 12:50:19 -04:00
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
2015-11-30 15:49:22 -05:00
|
|
|
expect(componentFixture.nativeElement).toHaveText('Mock');
|
2015-05-15 19:42:52 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should override a view',
|
2015-09-11 16:45:31 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-05-15 19:42:52 -04:00
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
tcb.overrideView(ChildComp,
|
|
|
|
new ViewMetadata({template: '<span>Modified {{childBinding}}</span>'}))
|
2015-05-15 19:42:52 -04:00
|
|
|
.createAsync(ChildComp)
|
2015-10-31 12:50:19 -04:00
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
2015-11-30 15:49:22 -05:00
|
|
|
expect(componentFixture.nativeElement).toHaveText('Modified Child');
|
2015-05-15 19:42:52 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should override component dependencies',
|
2015-09-11 16:45:31 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-05-15 19:42:52 -04:00
|
|
|
|
|
|
|
tcb.overrideDirective(ParentComp, ChildComp, MockChildComp)
|
|
|
|
.createAsync(ParentComp)
|
2015-10-31 12:50:19 -04:00
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
2015-11-30 15:49:22 -05:00
|
|
|
expect(componentFixture.nativeElement).toHaveText('Parent(Mock)');
|
2015-05-15 19:42:52 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2015-08-17 14:43:14 -04:00
|
|
|
|
2016-04-25 02:11:30 -04:00
|
|
|
it('should override items from a list',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.overrideDirective(DirectiveListComp, ListDir1, ListDir1Alt)
|
|
|
|
.createAsync(DirectiveListComp)
|
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('(Alternate One)(Two)');
|
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2015-08-17 14:43:14 -04:00
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
it("should override child component's dependencies",
|
2015-09-11 16:45:31 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-09-08 13:14:57 -04:00
|
|
|
|
|
|
|
tcb.overrideDirective(ParentComp, ChildComp, ChildWithChildComp)
|
|
|
|
.overrideDirective(ChildWithChildComp, ChildChildComp, MockChildChildComp)
|
|
|
|
.createAsync(ParentComp)
|
2015-10-31 12:50:19 -04:00
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
2015-11-30 15:49:22 -05:00
|
|
|
expect(componentFixture.nativeElement)
|
2015-09-08 13:14:57 -04:00
|
|
|
.toHaveText('Parent(Original Child(ChildChild Mock))');
|
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2015-10-11 01:11:13 -04:00
|
|
|
it('should override a provider',
|
2015-09-11 16:45:31 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-09-08 13:14:57 -04:00
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
tcb.overrideProviders(TestBindingsComp,
|
|
|
|
[provide(FancyService, {useClass: MockFancyService})])
|
2015-09-08 13:14:57 -04:00
|
|
|
.createAsync(TestBindingsComp)
|
2015-10-31 12:50:19 -04:00
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
2015-11-30 15:49:22 -05:00
|
|
|
expect(componentFixture.nativeElement)
|
2015-09-08 13:14:57 -04:00
|
|
|
.toHaveText('injected value: mocked out value');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('should override a viewBinding',
|
2015-09-11 16:45:31 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-09-08 13:14:57 -04:00
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
tcb.overrideViewProviders(TestViewBindingsComp,
|
|
|
|
[provide(FancyService, {useClass: MockFancyService})])
|
2015-09-08 13:14:57 -04:00
|
|
|
.createAsync(TestViewBindingsComp)
|
2015-10-31 12:50:19 -04:00
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
2015-11-30 15:49:22 -05:00
|
|
|
expect(componentFixture.nativeElement)
|
2015-09-08 13:14:57 -04:00
|
|
|
.toHaveText('injected value: mocked out value');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2016-04-26 19:38:54 -04:00
|
|
|
|
|
|
|
if (!IS_DART) {
|
|
|
|
describe('ComponentFixture', () => {
|
|
|
|
it('should auto detect changes if autoDetectChanges is called',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(AutoDetectComp)
|
|
|
|
.then((componentFixture) => {
|
|
|
|
expect(componentFixture.ngZone).not.toBeNull();
|
|
|
|
componentFixture.autoDetectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
let element = componentFixture.debugElement.children[0];
|
|
|
|
dispatchEvent(element.nativeElement, 'click');
|
|
|
|
|
|
|
|
expect(componentFixture.isStable()).toBe(true);
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('11');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should auto detect changes if ComponentFixtureAutoDetect is provided as true',
|
|
|
|
withProviders(() => [provide(ComponentFixtureAutoDetect, {useValue: true})])
|
|
|
|
.inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(AutoDetectComp)
|
|
|
|
.then((componentFixture) => {
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
let element = componentFixture.debugElement.children[0];
|
|
|
|
dispatchEvent(element.nativeElement, 'click');
|
|
|
|
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('11');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should signal through whenStable when the fixture is stable (autoDetectChanges)',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(AsyncComp).then((componentFixture) => {
|
|
|
|
componentFixture.autoDetectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
let element = componentFixture.debugElement.children[0];
|
|
|
|
dispatchEvent(element.nativeElement, 'click');
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
// Component is updated asynchronously. Wait for the fixture to become stable
|
|
|
|
// before checking for new value.
|
|
|
|
expect(componentFixture.isStable()).toBe(false);
|
|
|
|
componentFixture.whenStable().then((waited) => {
|
|
|
|
expect(waited).toBe(true);
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('11');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should signal through isStable when the fixture is stable (no autoDetectChanges)',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(AsyncComp).then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
let element = componentFixture.debugElement.children[0];
|
|
|
|
dispatchEvent(element.nativeElement, 'click');
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
// Component is updated asynchronously. Wait for the fixture to become stable
|
|
|
|
// before checking.
|
|
|
|
componentFixture.whenStable().then((waited) => {
|
|
|
|
expect(waited).toBe(true);
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('11');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2016-05-03 14:26:07 -04:00
|
|
|
it('should wait for macroTask(setTimeout) while checking for whenStable ' +
|
|
|
|
'(autoDetectChanges)',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(AsyncTimeoutComp)
|
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.autoDetectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
let element = componentFixture.debugElement.children[0];
|
|
|
|
dispatchEvent(element.nativeElement, 'click');
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
// Component is updated asynchronously. Wait for the fixture to become
|
|
|
|
// stable before checking for new value.
|
|
|
|
expect(componentFixture.isStable()).toBe(false);
|
|
|
|
componentFixture.whenStable().then((waited) => {
|
|
|
|
expect(waited).toBe(true);
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('11');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should wait for macroTask(setTimeout) while checking for whenStable ' +
|
|
|
|
'(no autoDetectChanges)',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(AsyncTimeoutComp)
|
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
let element = componentFixture.debugElement.children[0];
|
|
|
|
dispatchEvent(element.nativeElement, 'click');
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
// Component is updated asynchronously. Wait for the fixture to become
|
|
|
|
// stable before checking for new value.
|
|
|
|
expect(componentFixture.isStable()).toBe(false);
|
|
|
|
componentFixture.whenStable().then((waited) => {
|
|
|
|
expect(waited).toBe(true);
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('11');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should wait for nested macroTasks(setTimeout) while checking for whenStable ' +
|
|
|
|
'(autoDetectChanges)',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(NestedAsyncTimeoutComp)
|
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.autoDetectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
let element = componentFixture.debugElement.children[0];
|
|
|
|
dispatchEvent(element.nativeElement, 'click');
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
// Component is updated asynchronously. Wait for the fixture to become
|
|
|
|
// stable before checking for new value.
|
|
|
|
expect(componentFixture.isStable()).toBe(false);
|
|
|
|
componentFixture.whenStable().then((waited) => {
|
|
|
|
expect(waited).toBe(true);
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('11');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should wait for nested macroTasks(setTimeout) while checking for whenStable ' +
|
|
|
|
'(no autoDetectChanges)',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(NestedAsyncTimeoutComp)
|
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
let element = componentFixture.debugElement.children[0];
|
|
|
|
dispatchEvent(element.nativeElement, 'click');
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
// Component is updated asynchronously. Wait for the fixture to become
|
|
|
|
// stable before checking for new value.
|
|
|
|
expect(componentFixture.isStable()).toBe(false);
|
|
|
|
componentFixture.whenStable().then((waited) => {
|
|
|
|
expect(waited).toBe(true);
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('11');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2016-04-26 19:38:54 -04:00
|
|
|
it('should stabilize after async task in change detection (autoDetectChanges)',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(AsyncChangeComp)
|
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.autoDetectChanges();
|
|
|
|
componentFixture.whenStable().then((_) => {
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
let element = componentFixture.debugElement.children[0];
|
|
|
|
dispatchEvent(element.nativeElement, 'click');
|
|
|
|
|
|
|
|
componentFixture.whenStable().then((_) => {
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('11');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should stabilize after async task in change detection(no autoDetectChanges)',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(AsyncChangeComp)
|
|
|
|
.then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
componentFixture.whenStable().then((_) => {
|
|
|
|
// Run detectChanges again so that stabilized value is reflected in the
|
|
|
|
// DOM.
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('1');
|
|
|
|
|
|
|
|
let element = componentFixture.debugElement.children[0];
|
|
|
|
dispatchEvent(element.nativeElement, 'click');
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
|
|
|
|
componentFixture.whenStable().then((_) => {
|
|
|
|
// Run detectChanges again so that stabilized value is reflected in
|
|
|
|
// the DOM.
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('11');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe('No NgZone', () => {
|
|
|
|
beforeEachProviders(() => [provide(ComponentFixtureNoNgZone, {useValue: true})]);
|
|
|
|
|
|
|
|
it('calling autoDetectChanges raises an error', () => {
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder,
|
|
|
|
async) => {
|
|
|
|
tcb.createAsync(ChildComp).then((componentFixture) => {
|
|
|
|
expect(() => {
|
|
|
|
componentFixture.autoDetectChanges();
|
|
|
|
}).toThrow('Cannot call autoDetectChanges when ComponentFixtureNoNgZone is set!!');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should instantiate a component with valid DOM',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(ChildComp).then((componentFixture) => {
|
|
|
|
expect(componentFixture.ngZone).toBeNull();
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('Original Child');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should allow changing members of the component',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(tcb: TestComponentBuilder, async) => {
|
|
|
|
|
|
|
|
tcb.createAsync(MyIfComp).then((componentFixture) => {
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('MyIf()');
|
|
|
|
|
|
|
|
componentFixture.componentInstance.showMore = true;
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('MyIf(More)');
|
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
2016-04-30 13:52:04 -04:00
|
|
|
|
|
|
|
describe('createSync', () => {
|
|
|
|
it('should create components',
|
|
|
|
inject([ComponentResolver, TestComponentBuilder, AsyncTestCompleter],
|
|
|
|
(cr: ComponentResolver, tcb: TestComponentBuilder, async) => {
|
|
|
|
cr.resolveComponent(MyIfComp).then((cmpFactory) => {
|
|
|
|
let componentFixture = tcb.createSync(cmpFactory);
|
|
|
|
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('MyIf()');
|
|
|
|
|
|
|
|
componentFixture.componentInstance.showMore = true;
|
|
|
|
componentFixture.detectChanges();
|
|
|
|
expect(componentFixture.nativeElement).toHaveText('MyIf(More)');
|
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-04-26 19:38:54 -04:00
|
|
|
});
|
|
|
|
}
|
2015-05-15 19:42:52 -04:00
|
|
|
});
|
|
|
|
}
|