199 lines
5.8 KiB
TypeScript
199 lines
5.8 KiB
TypeScript
// For more examples:
|
|
// https://github.com/angular/angular/blob/master/modules/@angular/router/test/integration.spec.ts
|
|
|
|
import { async, ComponentFixture, fakeAsync, TestBed, tick,
|
|
} from '@angular/core/testing';
|
|
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
import { SpyLocation } from '@angular/common/testing';
|
|
|
|
import { click } from '../testing';
|
|
|
|
// r - for relatively obscure router symbols
|
|
import * as r from '@angular/router';
|
|
import { Router, RouterLinkWithHref } from '@angular/router';
|
|
|
|
import { By } from '@angular/platform-browser';
|
|
import { DebugElement, Type } from '@angular/core';
|
|
import { Location } from '@angular/common';
|
|
|
|
import { AppModule } from './app.module';
|
|
import { AppComponent } from './app.component';
|
|
import { AboutComponent } from './about.component';
|
|
import { DashboardHeroComponent } from './dashboard/dashboard-hero.component';
|
|
import { TwainService } from './shared/twain.service';
|
|
|
|
let comp: AppComponent;
|
|
let fixture: ComponentFixture<AppComponent>;
|
|
let page: Page;
|
|
let router: Router;
|
|
let location: SpyLocation;
|
|
|
|
describe('AppComponent & RouterTestingModule', () => {
|
|
|
|
beforeEach( async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [ AppModule, RouterTestingModule ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
it('should navigate to "Dashboard" immediately', fakeAsync(() => {
|
|
createComponent();
|
|
expect(location.path()).toEqual('/dashboard', 'after initialNavigation()');
|
|
expectElementOf(DashboardHeroComponent);
|
|
}));
|
|
|
|
it('should navigate to "About" on click', fakeAsync(() => {
|
|
createComponent();
|
|
click(page.aboutLinkDe);
|
|
// page.aboutLinkDe.nativeElement.click(); // ok but fails in phantom
|
|
|
|
advance();
|
|
expectPathToBe('/about');
|
|
expectElementOf(AboutComponent);
|
|
|
|
page.expectEvents([
|
|
[r.NavigationStart, '/about'], [r.RoutesRecognized, '/about'],
|
|
[r.NavigationEnd, '/about']
|
|
]);
|
|
}));
|
|
|
|
it('should navigate to "About" w/ browser location URL change', fakeAsync(() => {
|
|
createComponent();
|
|
location.simulateHashChange('/about');
|
|
// location.go('/about'); // also works ... except in plunker
|
|
advance();
|
|
expectPathToBe('/about');
|
|
expectElementOf(AboutComponent);
|
|
}));
|
|
|
|
// Can't navigate to lazy loaded modules with this technique
|
|
xit('should navigate to "Heroes" on click', fakeAsync(() => {
|
|
createComponent();
|
|
page.heroesLinkDe.nativeElement.click();
|
|
advance();
|
|
expectPathToBe('/heroes');
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
///////////////
|
|
import { NgModuleFactoryLoader } from '@angular/core';
|
|
import { SpyNgModuleFactoryLoader } from '@angular/router/testing';
|
|
|
|
import { HeroModule } from './hero/hero.module'; // should be lazy loaded
|
|
import { HeroListComponent } from './hero/hero-list.component';
|
|
|
|
let loader: SpyNgModuleFactoryLoader;
|
|
|
|
///////// Can't get lazy loaded Heroes to work yet
|
|
xdescribe('AppComponent & Lazy Loading', () => {
|
|
|
|
beforeEach( async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [ AppModule, RouterTestingModule ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(fakeAsync(() => {
|
|
createComponent();
|
|
loader = TestBed.get(NgModuleFactoryLoader);
|
|
loader.stubbedModules = {expected: HeroModule};
|
|
router.resetConfig([{path: 'heroes', loadChildren: 'expected'}]);
|
|
}));
|
|
|
|
it('dummy', () => expect(true).toBe(true) );
|
|
|
|
|
|
it('should navigate to "Heroes" on click', async(() => {
|
|
page.heroesLinkDe.nativeElement.click();
|
|
advance();
|
|
expectPathToBe('/heroes');
|
|
expectElementOf(HeroListComponent);
|
|
}));
|
|
|
|
xit('can navigate to "Heroes" w/ browser location URL change', fakeAsync(() => {
|
|
location.go('/heroes');
|
|
advance();
|
|
expectPathToBe('/heroes');
|
|
expectElementOf(HeroListComponent);
|
|
|
|
page.expectEvents([
|
|
[r.NavigationStart, '/heroes'], [r.RoutesRecognized, '/heroes'],
|
|
[r.NavigationEnd, '/heroes']
|
|
]);
|
|
}));
|
|
});
|
|
|
|
////// Helpers /////////
|
|
|
|
/** Wait a tick, then detect changes */
|
|
function advance(): void {
|
|
tick();
|
|
fixture.detectChanges();
|
|
}
|
|
|
|
function createComponent() {
|
|
fixture = TestBed.createComponent(AppComponent);
|
|
comp = fixture.componentInstance;
|
|
|
|
const injector = fixture.debugElement.injector;
|
|
location = injector.get(Location);
|
|
router = injector.get(Router);
|
|
router.initialNavigation();
|
|
spyOn(injector.get(TwainService), 'getQuote')
|
|
.and.returnValue(Promise.resolve('Test Quote')); // fakes it
|
|
|
|
advance();
|
|
|
|
page = new Page();
|
|
}
|
|
|
|
class Page {
|
|
aboutLinkDe: DebugElement;
|
|
dashboardLinkDe: DebugElement;
|
|
heroesLinkDe: DebugElement;
|
|
recordedEvents: any[] = [];
|
|
|
|
// for debugging
|
|
comp: AppComponent;
|
|
location: SpyLocation;
|
|
router: Router;
|
|
fixture: ComponentFixture<AppComponent>;
|
|
|
|
expectEvents(pairs: any[]) {
|
|
const events = this.recordedEvents;
|
|
expect(events.length).toEqual(pairs.length, 'actual/expected events length mismatch');
|
|
for (let i = 0; i < events.length; ++i) {
|
|
expect((<any>events[i].constructor).name).toBe(pairs[i][0].name, 'unexpected event name');
|
|
expect((<any>events[i]).url).toBe(pairs[i][1], 'unexpected event url');
|
|
}
|
|
}
|
|
|
|
constructor() {
|
|
router.events.forEach(e => this.recordedEvents.push(e));
|
|
const links = fixture.debugElement.queryAll(By.directive(RouterLinkWithHref));
|
|
this.aboutLinkDe = links[2];
|
|
this.dashboardLinkDe = links[0];
|
|
this.heroesLinkDe = links[1];
|
|
|
|
// for debugging
|
|
this.comp = comp;
|
|
this.fixture = fixture;
|
|
this.router = router;
|
|
}
|
|
}
|
|
|
|
function expectPathToBe(path: string, expectationFailOutput?: any) {
|
|
expect(location.path()).toEqual(path, expectationFailOutput || 'location.path()');
|
|
}
|
|
|
|
function expectElementOf(type: Type<any>): any {
|
|
const el = fixture.debugElement.query(By.directive(type));
|
|
expect(el).toBeTruthy('expected an element for ' + type.name);
|
|
return el;
|
|
}
|