2016-04-22 15:05:38 -04:00
|
|
|
import {
|
|
|
|
ComponentFixture,
|
|
|
|
AsyncTestCompleter,
|
|
|
|
TestComponentBuilder,
|
|
|
|
beforeEach,
|
|
|
|
ddescribe,
|
|
|
|
xdescribe,
|
|
|
|
describe,
|
|
|
|
el,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
beforeEachProviders,
|
|
|
|
it,
|
2016-04-27 18:37:20 -04:00
|
|
|
xit,
|
|
|
|
fakeAsync,
|
|
|
|
tick
|
2016-04-22 15:05:38 -04:00
|
|
|
} from 'angular2/testing_internal';
|
|
|
|
import {provide, Component, ComponentResolver} from 'angular2/core';
|
|
|
|
|
2016-04-27 18:37:20 -04:00
|
|
|
|
2016-04-22 15:05:38 -04:00
|
|
|
import {
|
|
|
|
Router,
|
|
|
|
RouterOutletMap,
|
|
|
|
RouteSegment,
|
|
|
|
Route,
|
|
|
|
ROUTER_DIRECTIVES,
|
|
|
|
Routes,
|
2016-04-27 18:37:20 -04:00
|
|
|
RouterUrlSerializer,
|
|
|
|
DefaultRouterUrlSerializer,
|
2016-04-28 21:33:48 -04:00
|
|
|
OnActivate
|
2016-04-22 15:05:38 -04:00
|
|
|
} from 'angular2/alt_router';
|
2016-04-28 11:01:27 -04:00
|
|
|
import {SpyLocation} from 'angular2/src/mock/location_mock';
|
2016-04-28 21:33:48 -04:00
|
|
|
import {Location} from 'angular2/platform/common';
|
2016-04-27 18:37:20 -04:00
|
|
|
import {DOM} from 'angular2/src/platform/dom/dom_adapter';
|
2016-04-22 15:05:38 -04:00
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('navigation', () => {
|
|
|
|
beforeEachProviders(() => [
|
2016-04-27 18:37:20 -04:00
|
|
|
provide(RouterUrlSerializer, {useClass: DefaultRouterUrlSerializer}),
|
2016-04-22 15:05:38 -04:00
|
|
|
RouterOutletMap,
|
2016-04-28 11:01:27 -04:00
|
|
|
provide(Location, {useClass: SpyLocation}),
|
2016-04-22 15:05:38 -04:00
|
|
|
provide(Router,
|
|
|
|
{
|
2016-04-28 11:01:27 -04:00
|
|
|
useFactory: (resolver, urlParser, outletMap, location) =>
|
|
|
|
new Router(RootCmp, resolver, urlParser, outletMap, location),
|
|
|
|
deps: [ComponentResolver, RouterUrlSerializer, RouterOutletMap, Location]
|
2016-04-22 15:05:38 -04:00
|
|
|
})
|
|
|
|
]);
|
|
|
|
|
2016-04-28 11:01:27 -04:00
|
|
|
it('should update location when navigating',
|
|
|
|
fakeAsync(inject([Router, TestComponentBuilder, Location], (router, tcb, location) => {
|
|
|
|
let fixture = tcb.createFakeAsync(RootCmp);
|
|
|
|
|
|
|
|
router.navigateByUrl('/team/22/user/victor');
|
|
|
|
advance(fixture);
|
|
|
|
expect(location.path()).toEqual('/team/22/user/victor');
|
|
|
|
|
|
|
|
router.navigateByUrl('/team/33/simple');
|
|
|
|
advance(fixture);
|
2016-04-28 21:33:48 -04:00
|
|
|
|
2016-04-28 11:01:27 -04:00
|
|
|
expect(location.path()).toEqual('/team/33/simple');
|
|
|
|
})));
|
|
|
|
|
2016-04-22 15:05:38 -04:00
|
|
|
it('should support nested routes',
|
2016-04-27 18:37:20 -04:00
|
|
|
fakeAsync(inject([Router, TestComponentBuilder], (router, tcb) => {
|
|
|
|
let fixture = tcb.createFakeAsync(RootCmp);
|
|
|
|
|
|
|
|
router.navigateByUrl('/team/22/user/victor');
|
|
|
|
advance(fixture);
|
|
|
|
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('team 22 { hello victor, aux: }');
|
|
|
|
})));
|
2016-04-25 19:57:27 -04:00
|
|
|
|
|
|
|
it('should support aux routes',
|
2016-04-27 18:37:20 -04:00
|
|
|
fakeAsync(inject([Router, TestComponentBuilder], (router, tcb) => {
|
|
|
|
let fixture = tcb.createFakeAsync(RootCmp);
|
|
|
|
|
|
|
|
router.navigateByUrl('/team/22/user/victor(/simple)');
|
|
|
|
advance(fixture);
|
|
|
|
|
|
|
|
expect(fixture.debugElement.nativeElement)
|
|
|
|
.toHaveText('team 22 { hello victor, aux: simple }');
|
|
|
|
})));
|
|
|
|
|
|
|
|
it('should unload outlets', fakeAsync(inject([Router, TestComponentBuilder], (router, tcb) => {
|
|
|
|
let fixture = tcb.createFakeAsync(RootCmp);
|
|
|
|
|
|
|
|
router.navigateByUrl('/team/22/user/victor(/simple)');
|
|
|
|
advance(fixture);
|
|
|
|
|
|
|
|
router.navigateByUrl('/team/22/user/victor');
|
|
|
|
advance(fixture);
|
|
|
|
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('team 22 { hello victor, aux: }');
|
|
|
|
})));
|
2016-04-25 19:57:27 -04:00
|
|
|
|
|
|
|
it('should unload nested outlets',
|
2016-04-27 18:37:20 -04:00
|
|
|
fakeAsync(inject([Router, TestComponentBuilder], (router, tcb) => {
|
|
|
|
let fixture = tcb.createFakeAsync(RootCmp);
|
|
|
|
|
|
|
|
router.navigateByUrl('/team/22/user/victor(/simple)');
|
|
|
|
advance(fixture);
|
|
|
|
|
|
|
|
router.navigateByUrl('/');
|
|
|
|
advance(fixture);
|
|
|
|
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('');
|
|
|
|
})));
|
2016-04-22 15:05:38 -04:00
|
|
|
|
|
|
|
it('should update nested routes when url changes',
|
2016-04-27 18:37:20 -04:00
|
|
|
fakeAsync(inject([Router, TestComponentBuilder], (router, tcb) => {
|
|
|
|
let fixture = tcb.createFakeAsync(RootCmp);
|
|
|
|
|
|
|
|
router.navigateByUrl('/team/22/user/victor');
|
|
|
|
advance(fixture);
|
|
|
|
let team1 = fixture.debugElement.children[1].componentInstance;
|
|
|
|
|
|
|
|
router.navigateByUrl('/team/22/user/fedor');
|
|
|
|
advance(fixture);
|
|
|
|
let team2 = fixture.debugElement.children[1].componentInstance;
|
|
|
|
|
|
|
|
expect(team1).toBe(team2);
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('team 22 { hello fedor, aux: }');
|
|
|
|
})));
|
|
|
|
|
2016-04-28 21:33:48 -04:00
|
|
|
if (DOM.supportsDOMEvents()) { // this is required to use fakeAsync
|
2016-04-27 18:37:20 -04:00
|
|
|
|
2016-04-28 21:33:48 -04:00
|
|
|
it("should support router links",
|
|
|
|
fakeAsync(inject([Router, TestComponentBuilder], (router, tcb) => {
|
|
|
|
let fixture = tcb.createFakeAsync(RootCmp);
|
|
|
|
advance(fixture);
|
2016-04-27 18:37:20 -04:00
|
|
|
|
2016-04-28 21:33:48 -04:00
|
|
|
router.navigateByUrl('/team/22/link');
|
|
|
|
advance(fixture);
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('team 22 { link, aux: }');
|
2016-04-27 18:37:20 -04:00
|
|
|
|
2016-04-28 21:33:48 -04:00
|
|
|
let native = DOM.querySelector(fixture.debugElement.nativeElement, "a");
|
|
|
|
expect(DOM.getAttribute(native, "href")).toEqual("/team/33/simple");
|
|
|
|
DOM.dispatchEvent(native, DOM.createMouseEvent('click'));
|
|
|
|
advance(fixture);
|
2016-04-27 18:37:20 -04:00
|
|
|
|
2016-04-28 21:33:48 -04:00
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('team 33 { simple, aux: }');
|
|
|
|
})));
|
2016-04-27 18:37:20 -04:00
|
|
|
|
2016-04-28 21:33:48 -04:00
|
|
|
it("should update router links when router changes",
|
|
|
|
fakeAsync(inject([Router, TestComponentBuilder], (router, tcb) => {
|
|
|
|
let fixture = tcb.createFakeAsync(RootCmp);
|
|
|
|
advance(fixture);
|
2016-04-27 18:37:20 -04:00
|
|
|
|
2016-04-28 21:33:48 -04:00
|
|
|
router.navigateByUrl('/team/22/link(simple)');
|
|
|
|
advance(fixture);
|
|
|
|
expect(fixture.debugElement.nativeElement).toHaveText('team 22 { link, aux: simple }');
|
2016-04-27 18:37:20 -04:00
|
|
|
|
2016-04-28 21:33:48 -04:00
|
|
|
let native = DOM.querySelector(fixture.debugElement.nativeElement, "a");
|
|
|
|
expect(DOM.getAttribute(native, "href")).toEqual("/team/33/simple(aux:simple)");
|
2016-04-27 18:37:20 -04:00
|
|
|
|
2016-04-28 21:33:48 -04:00
|
|
|
router.navigateByUrl('/team/22/link(simple2)');
|
|
|
|
advance(fixture);
|
|
|
|
|
|
|
|
expect(DOM.getAttribute(native, "href")).toEqual("/team/33/simple(aux:simple2)");
|
|
|
|
})));
|
|
|
|
}
|
2016-04-22 15:05:38 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-04-27 18:37:20 -04:00
|
|
|
function advance(fixture: ComponentFixture): void {
|
|
|
|
tick();
|
|
|
|
fixture.detectChanges();
|
|
|
|
}
|
|
|
|
|
2016-04-22 15:05:38 -04:00
|
|
|
function compileRoot(tcb: TestComponentBuilder): Promise<ComponentFixture> {
|
|
|
|
return tcb.createAsync(RootCmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({selector: 'user-cmp', template: `hello {{user}}`})
|
|
|
|
class UserCmp implements OnActivate {
|
|
|
|
user: string;
|
|
|
|
routerOnActivate(s: RouteSegment, a?, b?, c?) { this.user = s.getParam('name'); }
|
|
|
|
}
|
|
|
|
|
2016-04-25 19:57:27 -04:00
|
|
|
@Component({selector: 'simple-cmp', template: `simple`})
|
|
|
|
class SimpleCmp {
|
|
|
|
}
|
|
|
|
|
2016-04-27 18:37:20 -04:00
|
|
|
@Component({selector: 'simple2-cmp', template: `simple2`})
|
|
|
|
class Simple2Cmp {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'link-cmp',
|
|
|
|
template: `<a [routerLink]="['team', '33', 'simple']">link</a>`,
|
|
|
|
directives: ROUTER_DIRECTIVES
|
|
|
|
})
|
|
|
|
class LinkCmp {
|
|
|
|
}
|
|
|
|
|
2016-04-22 15:05:38 -04:00
|
|
|
@Component({
|
|
|
|
selector: 'team-cmp',
|
2016-04-25 19:57:27 -04:00
|
|
|
template: `team {{id}} { <router-outlet></router-outlet>, aux: <router-outlet name="aux"></router-outlet> }`,
|
2016-04-22 15:05:38 -04:00
|
|
|
directives: [ROUTER_DIRECTIVES]
|
|
|
|
})
|
2016-04-25 19:57:27 -04:00
|
|
|
@Routes([
|
|
|
|
new Route({path: 'user/:name', component: UserCmp}),
|
2016-04-27 18:37:20 -04:00
|
|
|
new Route({path: 'simple', component: SimpleCmp}),
|
|
|
|
new Route({path: 'simple2', component: Simple2Cmp}),
|
|
|
|
new Route({path: 'link', component: LinkCmp})
|
2016-04-25 19:57:27 -04:00
|
|
|
])
|
2016-04-22 15:05:38 -04:00
|
|
|
class TeamCmp implements OnActivate {
|
|
|
|
id: string;
|
|
|
|
routerOnActivate(s: RouteSegment, a?, b?, c?) { this.id = s.getParam('id'); }
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'root-cmp',
|
|
|
|
template: `<router-outlet></router-outlet>`,
|
|
|
|
directives: [ROUTER_DIRECTIVES]
|
|
|
|
})
|
|
|
|
@Routes([new Route({path: 'team/:id', component: TeamCmp})])
|
|
|
|
class RootCmp {
|
|
|
|
}
|