| 
									
										
										
										
											2016-07-21 17:12:00 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | import 'rxjs/add/operator/map'; | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  | import {Location} from '@angular/common'; | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  | import {Component, NgModule, NgModuleFactoryLoader} from '@angular/core'; | 
					
						
							| 
									
										
										
										
											2016-07-28 04:54:49 -07:00
										 |  |  | import {ComponentFixture, TestBed, TestComponentBuilder, addProviders, fakeAsync, inject, tick} from '@angular/core/testing'; | 
					
						
							| 
									
										
										
										
											2016-06-23 16:42:25 -07:00
										 |  |  | import {expect} from '@angular/platform-browser/testing/matchers'; | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | import {Observable} from 'rxjs/Observable'; | 
					
						
							|  |  |  | import {of } from 'rxjs/observable/of'; | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-27 09:54:19 -07:00
										 |  |  | import {ActivatedRoute, ActivatedRouteSnapshot, CanActivate, CanDeactivate, Event, NavigationCancel, NavigationEnd, NavigationError, NavigationStart, Params, ROUTER_DIRECTIVES, Resolve, Router, RouterModule, RouterStateSnapshot, RoutesRecognized, provideRoutes} from '../index'; | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  | import {RouterTestingModule, SpyNgModuleFactoryLoader} from '../testing'; | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | describe('Integration', () => { | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |   beforeEach(() => { | 
					
						
							| 
									
										
										
										
											2016-07-28 04:54:49 -07:00
										 |  |  |     TestBed.configureTestingModule({ | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |       imports: [RouterTestingModule], | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |       providers: [provideRoutes( | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |           [{path: '', component: BlankCmp}, {path: 'simple', component: SimpleCmp}])], | 
					
						
							|  |  |  |       declarations: [ | 
					
						
							|  |  |  |         BlankCmp, SimpleCmp, TeamCmp, UserCmp, StringLinkCmp, DummyLinkCmp, AbsoluteLinkCmp, | 
					
						
							|  |  |  |         RelativeLinkCmp, DummyLinkWithParentCmp, LinkWithQueryParamsAndFragment, CollectParamsCmp, | 
					
						
							|  |  |  |         QueryParamsAndFragmentCmp, StringLinkButtonCmp, WrapperCmp, LinkInNgIf, | 
					
						
							| 
									
										
										
										
											2016-08-02 15:31:56 -07:00
										 |  |  |         ComponentRecordingRoutePathAndUrl, RouteCmp | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |       ] | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-06-02 18:34:04 -05:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 20:10:36 -07:00
										 |  |  |   it('should navigate with a provided config', | 
					
						
							|  |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-02 18:34:04 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 20:10:36 -07:00
										 |  |  |            router.navigateByUrl('/simple'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 20:10:36 -07:00
										 |  |  |            expect(location.path()).toEqual('/simple'); | 
					
						
							|  |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-30 18:24:43 -07:00
										 |  |  |   it('should work when an outlet is in an ngIf', | 
					
						
							|  |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.resetConfig([{ | 
					
						
							|  |  |  |              path: 'child', | 
					
						
							|  |  |  |              component: LinkInNgIf, | 
					
						
							|  |  |  |              children: [{path: 'simple', component: SimpleCmp}] | 
					
						
							|  |  |  |            }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/child/simple'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/child/simple'); | 
					
						
							|  |  |  |          }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-01 16:56:38 -07:00
										 |  |  |   it('should work when an outlet is in an ngIf (and is removed)', | 
					
						
							|  |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |            @Component({ | 
					
						
							|  |  |  |              selector: 'someRoot', | 
					
						
							|  |  |  |              template: `<div *ngIf="cond"><router-outlet></router-outlet></div>`, | 
					
						
							|  |  |  |              entryComponents: [BlankCmp, SimpleCmp] | 
					
						
							|  |  |  |            }) | 
					
						
							|  |  |  |            class RootCmpWithLink { | 
					
						
							|  |  |  |              cond: boolean = true; | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            const fixture = createRoot(tcb, router, RootCmpWithLink); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.resetConfig( | 
					
						
							|  |  |  |                [{path: 'simple', component: SimpleCmp}, {path: 'blank', component: BlankCmp}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/simple'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/simple'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            const instance = fixture.componentInstance; | 
					
						
							|  |  |  |            instance.cond = false; | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            let recordedError: any = null; | 
					
						
							|  |  |  |            router.navigateByUrl('/blank').catch(e => recordedError = e); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(recordedError.message).toEqual('Cannot find primary outlet to load \'BlankCmp\''); | 
					
						
							|  |  |  |          }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  |   it('should update location when navigating', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.resetConfig([{path: 'team/:id', component: TeamCmp}]); | 
					
						
							| 
									
										
										
										
											2016-06-02 18:34:04 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/team/22'); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/team/33'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expect(location.path()).toEqual('/team/33'); | 
					
						
							|  |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-04 13:46:09 -05:00
										 |  |  |   it('should skip location update when using NavigationExtras.skipLocationChange with navigateByUrl', | 
					
						
							|  |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |            const fixture = tcb.createFakeAsync(RootCmp); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.resetConfig([{path: 'team/:id', component: TeamCmp}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('team 22 [ , right:  ]'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/team/33', {skipLocationChange: true}); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('team 33 [ , right:  ]'); | 
					
						
							|  |  |  |          }))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should skip location update when using NavigationExtras.skipLocationChange with navigate', | 
					
						
							|  |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |            const fixture = tcb.createFakeAsync(RootCmp); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.resetConfig([{path: 'team/:id', component: TeamCmp}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigate(['/team/22']); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('team 22 [ , right:  ]'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigate(['/team/33'], {skipLocationChange: true}); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('team 33 [ , right:  ]'); | 
					
						
							|  |  |  |          }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-10 18:57:03 +03:00
										 |  |  |   it('should navigate back and forward', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.resetConfig([{ | 
					
						
							|  |  |  |              path: 'team/:id', | 
					
						
							|  |  |  |              component: TeamCmp, | 
					
						
							|  |  |  |              children: [ | 
					
						
							|  |  |  |                {path: 'simple', component: SimpleCmp}, {path: 'user/:name', component: UserCmp} | 
					
						
							|  |  |  |              ] | 
					
						
							|  |  |  |            }]); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/team/33/simple'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/team/33/simple'); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/team/22/user/victor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            location.back(); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/team/33/simple'); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            location.forward(); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/team/22/user/victor'); | 
					
						
							|  |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   it('should navigate when locations changes', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.resetConfig([{ | 
					
						
							|  |  |  |              path: 'team/:id', | 
					
						
							|  |  |  |              component: TeamCmp, | 
					
						
							|  |  |  |              children: [{path: 'user/:name', component: UserCmp}] | 
					
						
							|  |  |  |            }]); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-13 10:39:16 -07:00
										 |  |  |            const recordedEvents: any[] = []; | 
					
						
							| 
									
										
										
										
											2016-07-12 16:13:16 -07:00
										 |  |  |            router.events.forEach(e => recordedEvents.push(e)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/team/22/user/victor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            (<any>location).simulateHashChange('/team/22/user/fedor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-12 16:13:16 -07:00
										 |  |  |            (<any>location).simulateUrlPop('/team/22/user/fedor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-13 10:39:16 -07:00
										 |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('team 22 [ user fedor, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-07-12 16:13:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            expectEvents(recordedEvents, [ | 
					
						
							|  |  |  |              [NavigationStart, '/team/22/user/victor'], [RoutesRecognized, '/team/22/user/victor'], | 
					
						
							|  |  |  |              [NavigationEnd, '/team/22/user/victor'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              [NavigationStart, '/team/22/user/fedor'], [RoutesRecognized, '/team/22/user/fedor'], | 
					
						
							|  |  |  |              [NavigationEnd, '/team/22/user/fedor'] | 
					
						
							|  |  |  |            ]); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-14 16:22:36 -07:00
										 |  |  |   it('should update the location when the matched route does not change', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-14 16:22:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 12:23:42 -07:00
										 |  |  |            router.resetConfig([{path: '**', component: CollectParamsCmp}]); | 
					
						
							| 
									
										
										
										
											2016-06-14 16:22:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/one/two'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-24 12:23:42 -07:00
										 |  |  |            const cmp = fixture.debugElement.children[1].componentInstance; | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expect(location.path()).toEqual('/one/two'); | 
					
						
							| 
									
										
										
										
											2016-06-24 12:23:42 -07:00
										 |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('collect-params'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(cmp.recordedUrls()).toEqual(['one/two']); | 
					
						
							| 
									
										
										
										
											2016-06-14 16:22:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/three/four'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/three/four'); | 
					
						
							| 
									
										
										
										
											2016-06-24 12:23:42 -07:00
										 |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('collect-params'); | 
					
						
							|  |  |  |            expect(cmp.recordedUrls()).toEqual(['one/two', 'three/four']); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-06-14 16:22:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  |   it('should support secondary routes', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync( | 
					
						
							|  |  |  |          inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            router.resetConfig([{ | 
					
						
							|  |  |  |              path: 'team/:id', | 
					
						
							|  |  |  |              component: TeamCmp, | 
					
						
							|  |  |  |              children: [ | 
					
						
							|  |  |  |                {path: 'user/:name', component: UserCmp}, | 
					
						
							|  |  |  |                {path: 'simple', component: SimpleCmp, outlet: 'right'} | 
					
						
							|  |  |  |              ] | 
					
						
							|  |  |  |            }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/team/22/(user/victor//right:simple)'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement) | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |                .toHaveText('team 22 [ user victor, right: simple ]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   it('should deactivate outlets', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync( | 
					
						
							|  |  |  |          inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            router.resetConfig([{ | 
					
						
							|  |  |  |              path: 'team/:id', | 
					
						
							|  |  |  |              component: TeamCmp, | 
					
						
							|  |  |  |              children: [ | 
					
						
							|  |  |  |                {path: 'user/:name', component: UserCmp}, | 
					
						
							|  |  |  |                {path: 'simple', component: SimpleCmp, outlet: 'right'} | 
					
						
							|  |  |  |              ] | 
					
						
							|  |  |  |            }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/team/22/(user/victor//right:simple)'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/team/22/user/victor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement) | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |                .toHaveText('team 22 [ user victor, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   it('should deactivate nested outlets', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync( | 
					
						
							|  |  |  |          inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            router.resetConfig([ | 
					
						
							|  |  |  |              { | 
					
						
							|  |  |  |                path: 'team/:id', | 
					
						
							|  |  |  |                component: TeamCmp, | 
					
						
							|  |  |  |                children: [ | 
					
						
							|  |  |  |                  {path: 'user/:name', component: UserCmp}, | 
					
						
							|  |  |  |                  {path: 'simple', component: SimpleCmp, outlet: 'right'} | 
					
						
							|  |  |  |                ] | 
					
						
							|  |  |  |              }, | 
					
						
							|  |  |  |              {path: '', component: BlankCmp} | 
					
						
							|  |  |  |            ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/team/22/(user/victor//right:simple)'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement).toHaveText(''); | 
					
						
							|  |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-05-24 14:33:34 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  |   it('should set query params and fragment', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync( | 
					
						
							|  |  |  |          inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.resetConfig([{path: 'query', component: QueryParamsAndFragmentCmp}]); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/query?name=1#fragment1'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('query: 1 fragment: fragment1'); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/query?name=2#fragment2'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('query: 2 fragment: fragment2'); | 
					
						
							|  |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   it('should push params only when they change', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync( | 
					
						
							|  |  |  |          inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.resetConfig([{ | 
					
						
							|  |  |  |              path: 'team/:id', | 
					
						
							|  |  |  |              component: TeamCmp, | 
					
						
							|  |  |  |              children: [{path: 'user/:name', component: UserCmp}] | 
					
						
							|  |  |  |            }]); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/team/22/user/victor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            const team = fixture.debugElement.children[1].componentInstance; | 
					
						
							|  |  |  |            const user = fixture.debugElement.children[1].children[1].componentInstance; | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expect(team.recordedParams).toEqual([{id: '22'}]); | 
					
						
							|  |  |  |            expect(user.recordedParams).toEqual([{name: 'victor'}]); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/team/22/user/fedor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expect(team.recordedParams).toEqual([{id: '22'}]); | 
					
						
							|  |  |  |            expect(user.recordedParams).toEqual([{name: 'victor'}, {name: 'fedor'}]); | 
					
						
							|  |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-02 11:30:38 -07:00
										 |  |  |   it('should work when navigating to /', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync( | 
					
						
							|  |  |  |          inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-02 11:30:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.resetConfig([ | 
					
						
							| 
									
										
										
										
											2016-06-27 20:10:36 -07:00
										 |  |  |              {path: '', pathMatch: 'full', component: SimpleCmp}, | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |              {path: 'user/:name', component: UserCmp} | 
					
						
							|  |  |  |            ]); | 
					
						
							| 
									
										
										
										
											2016-06-02 11:30:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/user/victor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('user victor'); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:07:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:25:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('simple'); | 
					
						
							|  |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:07:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |   it('should cancel in-flight navigations', | 
					
						
							|  |  |  |      fakeAsync( | 
					
						
							|  |  |  |          inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:07:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.resetConfig([{path: 'user/:name', component: UserCmp}]); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:07:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-13 10:39:16 -07:00
										 |  |  |            const recordedEvents: any[] = []; | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.events.forEach(e => recordedEvents.push(e)); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:07:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/user/init'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:25:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            const user = fixture.debugElement.children[1].componentInstance; | 
					
						
							| 
									
										
										
										
											2016-06-03 14:25:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            let r1: any, r2: any; | 
					
						
							|  |  |  |            router.navigateByUrl('/user/victor').then(_ => r1 = _); | 
					
						
							|  |  |  |            router.navigateByUrl('/user/fedor').then(_ => r2 = _); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:25:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expect(r1).toEqual(false);  // returns false because it was canceled
 | 
					
						
							|  |  |  |            expect(r2).toEqual(true);   // returns true because it was successful
 | 
					
						
							| 
									
										
										
										
											2016-06-03 14:07:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('user fedor'); | 
					
						
							|  |  |  |            expect(user.recordedParams).toEqual([{name: 'init'}, {name: 'fedor'}]); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expectEvents(recordedEvents, [ | 
					
						
							|  |  |  |              [NavigationStart, '/user/init'], [RoutesRecognized, '/user/init'], | 
					
						
							|  |  |  |              [NavigationEnd, '/user/init'], | 
					
						
							| 
									
										
										
										
											2016-06-03 14:07:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |              [NavigationStart, '/user/victor'], [NavigationStart, '/user/fedor'], | 
					
						
							| 
									
										
										
										
											2016-06-03 14:25:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |              [NavigationCancel, '/user/victor'], [RoutesRecognized, '/user/fedor'], | 
					
						
							|  |  |  |              [NavigationEnd, '/user/fedor'] | 
					
						
							|  |  |  |            ]); | 
					
						
							|  |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:07:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |   it('should handle failed navigations gracefully', | 
					
						
							|  |  |  |      fakeAsync( | 
					
						
							|  |  |  |          inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:07:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.resetConfig([{path: 'user/:name', component: UserCmp}]); | 
					
						
							| 
									
										
										
										
											2016-06-09 14:31:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-13 10:39:16 -07:00
										 |  |  |            const recordedEvents: any[] = []; | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.events.forEach(e => recordedEvents.push(e)); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:25:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            let e: any; | 
					
						
							|  |  |  |            router.navigateByUrl('/invalid').catch(_ => e = _); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(e.message).toContain('Cannot match any routes'); | 
					
						
							| 
									
										
										
										
											2016-06-10 18:57:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            router.navigateByUrl('/user/fedor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-10 18:57:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('user fedor'); | 
					
						
							| 
									
										
										
										
											2016-06-10 18:57:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            expectEvents(recordedEvents, [ | 
					
						
							|  |  |  |              [NavigationStart, '/invalid'], [NavigationError, '/invalid'], | 
					
						
							| 
									
										
										
										
											2016-06-10 18:57:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |              [NavigationStart, '/user/fedor'], [RoutesRecognized, '/user/fedor'], | 
					
						
							|  |  |  |              [NavigationEnd, '/user/fedor'] | 
					
						
							|  |  |  |            ]); | 
					
						
							|  |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-06-10 18:57:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |   it('should replace state when path is equal to current path', | 
					
						
							|  |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            router.resetConfig([{ | 
					
						
							|  |  |  |              path: 'team/:id', | 
					
						
							|  |  |  |              component: TeamCmp, | 
					
						
							|  |  |  |              children: [ | 
					
						
							|  |  |  |                {path: 'simple', component: SimpleCmp}, {path: 'user/:name', component: UserCmp} | 
					
						
							|  |  |  |              ] | 
					
						
							|  |  |  |            }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/team/33/simple'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/team/22/user/victor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/team/22/user/victor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            location.back(); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/team/33/simple'); | 
					
						
							|  |  |  |          }))); | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   it('should handle componentless paths', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmpWithTwoOutlets); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            router.resetConfig([ | 
					
						
							|  |  |  |              { | 
					
						
							|  |  |  |                path: 'parent/:id', | 
					
						
							|  |  |  |                children: [ | 
					
						
							|  |  |  |                  {path: 'simple', component: SimpleCmp}, | 
					
						
							|  |  |  |                  {path: 'user/:name', component: UserCmp, outlet: 'right'} | 
					
						
							|  |  |  |                ] | 
					
						
							|  |  |  |              }, | 
					
						
							|  |  |  |              {path: 'user/:name', component: UserCmp} | 
					
						
							|  |  |  |            ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            // navigate to a componentless route
 | 
					
						
							|  |  |  |            router.navigateByUrl('/parent/11/(simple//right:user/victor)'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/parent/11/(simple//right:user/victor)'); | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement) | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |                .toHaveText('primary [simple] right [user victor]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            // navigate to the same route with different params (reuse)
 | 
					
						
							|  |  |  |            router.navigateByUrl('/parent/22/(simple//right:user/fedor)'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/parent/22/(simple//right:user/fedor)'); | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement) | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |                .toHaveText('primary [simple] right [user fedor]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            // navigate to a normal route (check deactivation)
 | 
					
						
							|  |  |  |            router.navigateByUrl('/user/victor'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/user/victor'); | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |            expect(fixture.debugElement.nativeElement).toHaveText('primary [user victor] right []'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            // navigate back to a componentless route
 | 
					
						
							|  |  |  |            router.navigateByUrl('/parent/11/(simple//right:user/victor)'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  |            expect(location.path()).toEqual('/parent/11/(simple//right:user/victor)'); | 
					
						
							|  |  |  |            expect(fixture.debugElement.nativeElement) | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |                .toHaveText('primary [simple] right [user victor]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |          }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-08 14:47:19 -07:00
										 |  |  |   it('should emit an event when an outlet gets activated', | 
					
						
							|  |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |            @Component({ | 
					
						
							|  |  |  |              selector: 'container', | 
					
						
							|  |  |  |              template: | 
					
						
							|  |  |  |                  `<router-outlet (activate)="recordActivate($event)" (deactivate)="recordDeactivate($event)"></router-outlet>` | 
					
						
							|  |  |  |            }) | 
					
						
							|  |  |  |            class Container { | 
					
						
							|  |  |  |              activations: any[] = []; | 
					
						
							|  |  |  |              deactivations: any[] = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              recordActivate(component: any): void { this.activations.push(component); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              recordDeactivate(component: any): void { this.deactivations.push(component); } | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            const fixture = createRoot(tcb, router, Container); | 
					
						
							|  |  |  |            const cmp = fixture.debugElement.componentInstance; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.resetConfig( | 
					
						
							|  |  |  |                [{path: 'blank', component: BlankCmp}, {path: 'simple', component: SimpleCmp}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            cmp.activations = []; | 
					
						
							|  |  |  |            cmp.deactivations = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/blank'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(cmp.activations.length).toEqual(1); | 
					
						
							|  |  |  |            expect(cmp.activations[0] instanceof BlankCmp).toBe(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/simple'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(cmp.activations.length).toEqual(2); | 
					
						
							|  |  |  |            expect(cmp.activations[1] instanceof SimpleCmp).toBe(true); | 
					
						
							|  |  |  |            expect(cmp.deactivations.length).toEqual(2); | 
					
						
							|  |  |  |            expect(cmp.deactivations[1] instanceof BlankCmp).toBe(true); | 
					
						
							|  |  |  |          }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-12 12:28:08 -07:00
										 |  |  |   it('should update url and router state before activating components', | 
					
						
							|  |  |  |      fakeAsync(inject( | 
					
						
							|  |  |  |          [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |          (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |            const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-07-12 12:28:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |            router.resetConfig([{path: 'cmp', component: ComponentRecordingRoutePathAndUrl}]); | 
					
						
							| 
									
										
										
										
											2016-07-12 12:28:08 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            router.navigateByUrl('/cmp'); | 
					
						
							|  |  |  |            advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            const cmp = fixture.debugElement.children[1].componentInstance; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(cmp.url).toBe('/cmp'); | 
					
						
							|  |  |  |            expect(cmp.path.length).toEqual(2); | 
					
						
							|  |  |  |          }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 14:00:07 -07:00
										 |  |  |   describe('data', () => { | 
					
						
							|  |  |  |     class ResolveSix implements Resolve<TeamCmp> { | 
					
						
							|  |  |  |       resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): number { return 6; } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       addProviders([ | 
					
						
							|  |  |  |         {provide: 'resolveTwo', useValue: (a: any, b: any) => 2}, | 
					
						
							|  |  |  |         {provide: 'resolveFour', useValue: (a: any, b: any) => 4}, | 
					
						
							|  |  |  |         {provide: 'resolveSix', useClass: ResolveSix} | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-06-27 14:00:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should provide resolved data', | 
					
						
							|  |  |  |        fakeAsync(inject( | 
					
						
							|  |  |  |            [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |            (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |              const fixture = createRoot(tcb, router, RootCmpWithTwoOutlets); | 
					
						
							| 
									
										
										
										
											2016-06-27 14:00:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{ | 
					
						
							|  |  |  |                path: 'parent/:id', | 
					
						
							|  |  |  |                data: {one: 1}, | 
					
						
							|  |  |  |                resolve: {two: 'resolveTwo'}, | 
					
						
							|  |  |  |                children: [ | 
					
						
							|  |  |  |                  {path: '', data: {three: 3}, resolve: {four: 'resolveFour'}, component: RouteCmp}, | 
					
						
							|  |  |  |                  { | 
					
						
							|  |  |  |                    path: '', | 
					
						
							|  |  |  |                    data: {five: 5}, | 
					
						
							|  |  |  |                    resolve: {six: 'resolveSix'}, | 
					
						
							|  |  |  |                    component: RouteCmp, | 
					
						
							|  |  |  |                    outlet: 'right' | 
					
						
							|  |  |  |                  } | 
					
						
							|  |  |  |                ] | 
					
						
							|  |  |  |              }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/parent/1'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              const primaryCmp = fixture.debugElement.children[1].componentInstance; | 
					
						
							|  |  |  |              const rightCmp = fixture.debugElement.children[3].componentInstance; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expect(primaryCmp.route.snapshot.data).toEqual({one: 1, two: 2, three: 3, four: 4}); | 
					
						
							|  |  |  |              expect(rightCmp.route.snapshot.data).toEqual({one: 1, two: 2, five: 5, six: 6}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              let primaryRecorded: any[] = []; | 
					
						
							|  |  |  |              primaryCmp.route.data.forEach((rec: any) => primaryRecorded.push(rec)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              let rightRecorded: any[] = []; | 
					
						
							|  |  |  |              rightCmp.route.data.forEach((rec: any) => rightRecorded.push(rec)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/parent/2'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expect(primaryRecorded).toEqual([ | 
					
						
							|  |  |  |                {one: 1, three: 3, two: 2, four: 4}, {one: 1, three: 3, two: 2, four: 4} | 
					
						
							|  |  |  |              ]); | 
					
						
							|  |  |  |              expect(rightRecorded).toEqual([ | 
					
						
							|  |  |  |                {one: 1, five: 5, two: 2, six: 6}, {one: 1, five: 5, two: 2, six: 6} | 
					
						
							|  |  |  |              ]); | 
					
						
							|  |  |  |            }))); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |   describe('router links', () => { | 
					
						
							|  |  |  |     it('should support string router links', | 
					
						
							|  |  |  |        fakeAsync( | 
					
						
							|  |  |  |            inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{ | 
					
						
							|  |  |  |                path: 'team/:id', | 
					
						
							|  |  |  |                component: TeamCmp, | 
					
						
							|  |  |  |                children: [ | 
					
						
							|  |  |  |                  {path: 'link', component: StringLinkCmp}, | 
					
						
							|  |  |  |                  {path: 'simple', component: SimpleCmp} | 
					
						
							|  |  |  |                ] | 
					
						
							|  |  |  |              }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/team/22/link'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('team 22 [ link, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              const native = fixture.debugElement.nativeElement.querySelector('a'); | 
					
						
							|  |  |  |              expect(native.getAttribute('href')).toEqual('/team/33/simple'); | 
					
						
							|  |  |  |              native.click(); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('team 33 [ simple, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-20 14:30:04 -07:00
										 |  |  |     it('should not preserve query params and fragment by default', | 
					
						
							| 
									
										
										
										
											2016-06-30 14:01:26 -07:00
										 |  |  |        fakeAsync( | 
					
						
							|  |  |  |            inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							|  |  |  |              @Component({ | 
					
						
							|  |  |  |                selector: 'someRoot', | 
					
						
							|  |  |  |                template: `<router-outlet></router-outlet><a routerLink="/home">Link</a>`, | 
					
						
							|  |  |  |                directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  |              }) | 
					
						
							|  |  |  |              class RootCmpWithLink { | 
					
						
							|  |  |  |              } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              const fixture = createRoot(tcb, router, RootCmpWithLink); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{path: 'home', component: SimpleCmp}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              const native = fixture.debugElement.nativeElement.querySelector('a'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-20 14:30:04 -07:00
										 |  |  |              router.navigateByUrl('/home?q=123#fragment'); | 
					
						
							| 
									
										
										
										
											2016-06-30 14:01:26 -07:00
										 |  |  |              advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-07-20 14:30:04 -07:00
										 |  |  |              expect(native.getAttribute('href')).toEqual('/home'); | 
					
						
							| 
									
										
										
										
											2016-06-30 14:01:26 -07:00
										 |  |  |            }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-20 14:30:04 -07:00
										 |  |  |     it('should update hrefs when query params or fragment change', | 
					
						
							|  |  |  |        fakeAsync(inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          @Component({ | 
					
						
							|  |  |  |            selector: 'someRoot', | 
					
						
							|  |  |  |            template: | 
					
						
							|  |  |  |                `<router-outlet></router-outlet><a routerLink="/home" preserveQueryParams preserveFragment>Link</a>`, | 
					
						
							|  |  |  |            directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  |          }) | 
					
						
							|  |  |  |          class RootCmpWithLink { | 
					
						
							|  |  |  |          } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          const fixture = createRoot(tcb, router, RootCmpWithLink); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          router.resetConfig([{path: 'home', component: SimpleCmp}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          const native = fixture.debugElement.nativeElement.querySelector('a'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          router.navigateByUrl('/home?q=123'); | 
					
						
							|  |  |  |          advance(fixture); | 
					
						
							|  |  |  |          expect(native.getAttribute('href')).toEqual('/home?q=123'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          router.navigateByUrl('/home?q=456'); | 
					
						
							|  |  |  |          advance(fixture); | 
					
						
							|  |  |  |          expect(native.getAttribute('href')).toEqual('/home?q=456'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          router.navigateByUrl('/home?q=456#1'); | 
					
						
							|  |  |  |          advance(fixture); | 
					
						
							|  |  |  |          expect(native.getAttribute('href')).toEqual('/home?q=456#1'); | 
					
						
							|  |  |  |        }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-28 16:47:13 -07:00
										 |  |  |     it('should support using links on non-a tags', | 
					
						
							|  |  |  |        fakeAsync( | 
					
						
							|  |  |  |            inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							|  |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{ | 
					
						
							|  |  |  |                path: 'team/:id', | 
					
						
							|  |  |  |                component: TeamCmp, | 
					
						
							|  |  |  |                children: [ | 
					
						
							|  |  |  |                  {path: 'link', component: StringLinkButtonCmp}, | 
					
						
							|  |  |  |                  {path: 'simple', component: SimpleCmp} | 
					
						
							|  |  |  |                ] | 
					
						
							|  |  |  |              }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/team/22/link'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('team 22 [ link, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-06-28 16:47:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              const native = fixture.debugElement.nativeElement.querySelector('button'); | 
					
						
							|  |  |  |              native.click(); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('team 33 [ simple, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-06-28 16:47:13 -07:00
										 |  |  |            }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |     it('should support absolute router links', | 
					
						
							|  |  |  |        fakeAsync( | 
					
						
							|  |  |  |            inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{ | 
					
						
							|  |  |  |                path: 'team/:id', | 
					
						
							|  |  |  |                component: TeamCmp, | 
					
						
							|  |  |  |                children: [ | 
					
						
							|  |  |  |                  {path: 'link', component: AbsoluteLinkCmp}, | 
					
						
							|  |  |  |                  {path: 'simple', component: SimpleCmp} | 
					
						
							|  |  |  |                ] | 
					
						
							|  |  |  |              }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/team/22/link'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('team 22 [ link, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              const native = fixture.debugElement.nativeElement.querySelector('a'); | 
					
						
							|  |  |  |              expect(native.getAttribute('href')).toEqual('/team/33/simple'); | 
					
						
							|  |  |  |              native.click(); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('team 33 [ simple, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            }))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should support relative router links', | 
					
						
							|  |  |  |        fakeAsync( | 
					
						
							|  |  |  |            inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{ | 
					
						
							|  |  |  |                path: 'team/:id', | 
					
						
							|  |  |  |                component: TeamCmp, | 
					
						
							|  |  |  |                children: [ | 
					
						
							|  |  |  |                  {path: 'link', component: RelativeLinkCmp}, | 
					
						
							|  |  |  |                  {path: 'simple', component: SimpleCmp} | 
					
						
							|  |  |  |                ] | 
					
						
							|  |  |  |              }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/team/22/link'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('team 22 [ link, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              const native = fixture.debugElement.nativeElement.querySelector('a'); | 
					
						
							|  |  |  |              expect(native.getAttribute('href')).toEqual('/team/22/simple'); | 
					
						
							|  |  |  |              native.click(); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('team 22 [ simple, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            }))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should support top-level link', | 
					
						
							|  |  |  |        fakeAsync( | 
					
						
							|  |  |  |            inject([Router, TestComponentBuilder], (router: Router, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |              const fixture = createRoot(tcb, router, RelativeLinkInIfCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-26 11:52:32 -07:00
										 |  |  |              router.resetConfig( | 
					
						
							|  |  |  |                  [{path: 'simple', component: SimpleCmp}, {path: '', component: BlankCmp}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  |              expect(fixture.debugElement.nativeElement).toHaveText(' '); | 
					
						
							|  |  |  |              const cmp = fixture.debugElement.componentInstance; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              cmp.show = true; | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('link '); | 
					
						
							|  |  |  |              const native = fixture.debugElement.nativeElement.querySelector('a'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expect(native.getAttribute('href')).toEqual('/simple'); | 
					
						
							|  |  |  |              native.click(); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('link simple'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            }))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should support query params and fragments', | 
					
						
							|  |  |  |        fakeAsync(inject( | 
					
						
							|  |  |  |            [Router, Location, TestComponentBuilder], | 
					
						
							|  |  |  |            (router: Router, location: Location, tcb: TestComponentBuilder) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{ | 
					
						
							|  |  |  |                path: 'team/:id', | 
					
						
							|  |  |  |                component: TeamCmp, | 
					
						
							|  |  |  |                children: [ | 
					
						
							|  |  |  |                  {path: 'link', component: LinkWithQueryParamsAndFragment}, | 
					
						
							|  |  |  |                  {path: 'simple', component: SimpleCmp} | 
					
						
							|  |  |  |                ] | 
					
						
							|  |  |  |              }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/team/22/link'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              const native = fixture.debugElement.nativeElement.querySelector('a'); | 
					
						
							|  |  |  |              expect(native.getAttribute('href')).toEqual('/team/22/simple?q=1#f'); | 
					
						
							|  |  |  |              native.click(); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('team 22 [ simple, right:  ]'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              expect(location.path()).toEqual('/team/22/simple?q=1#f'); | 
					
						
							|  |  |  |            }))); | 
					
						
							| 
									
										
										
										
											2016-05-24 14:33:34 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |   describe('redirects', () => { | 
					
						
							|  |  |  |     it('should work', fakeAsync(inject( | 
					
						
							|  |  |  |                           [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                           (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |                             const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                             router.resetConfig([ | 
					
						
							|  |  |  |                               {path: 'old/team/:id', redirectTo: 'team/:id'}, | 
					
						
							|  |  |  |                               {path: 'team/:id', component: TeamCmp} | 
					
						
							|  |  |  |                             ]); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:14:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                             router.navigateByUrl('old/team/22'); | 
					
						
							|  |  |  |                             advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:14:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                             expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  |                           }))); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:14:26 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |   describe('guards', () => { | 
					
						
							|  |  |  |     describe('CanActivate', () => { | 
					
						
							|  |  |  |       describe('should not activate a route when CanActivate returns false', () => { | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           addProviders([{provide: 'alwaysFalse', useValue: (a: any, b: any) => false}]); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('works', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            fakeAsync(inject( | 
					
						
							|  |  |  |                [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |                  const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                  router.resetConfig( | 
					
						
							|  |  |  |                      [{path: 'team/:id', component: TeamCmp, canActivate: ['alwaysFalse']}]); | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                  router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                  expect(location.path()).toEqual('/'); | 
					
						
							|  |  |  |                }))); | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |       describe( | 
					
						
							|  |  |  |           'should not activate a route when CanActivate returns false (componentless route)', | 
					
						
							|  |  |  |           () => { | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  |             beforeEach(() => { | 
					
						
							|  |  |  |               addProviders([{provide: 'alwaysFalse', useValue: (a: any, b: any) => false}]); | 
					
						
							|  |  |  |             }); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |             it('works', fakeAsync(inject( | 
					
						
							|  |  |  |                             [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                             (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |                               const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |                               router.resetConfig([{ | 
					
						
							|  |  |  |                                 path: 'parent', | 
					
						
							|  |  |  |                                 canActivate: ['alwaysFalse'], | 
					
						
							|  |  |  |                                 children: [{path: 'team/:id', component: TeamCmp}] | 
					
						
							|  |  |  |                               }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                               router.navigateByUrl('parent/team/22'); | 
					
						
							|  |  |  |                               advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                               expect(location.path()).toEqual('/'); | 
					
						
							|  |  |  |                             }))); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('should activate a route when CanActivate returns true', () => { | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           addProviders([{ | 
					
						
							|  |  |  |             provide: 'alwaysTrue', | 
					
						
							|  |  |  |             useValue: (a: ActivatedRouteSnapshot, s: RouterStateSnapshot) => true | 
					
						
							|  |  |  |           }]); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('works', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            fakeAsync(inject( | 
					
						
							|  |  |  |                [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |                  const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                  router.resetConfig( | 
					
						
							|  |  |  |                      [{path: 'team/:id', component: TeamCmp, canActivate: ['alwaysTrue']}]); | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                  router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                  expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  |                }))); | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |       describe('should work when given a class', () => { | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  |         class AlwaysTrue implements CanActivate { | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |           canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean { | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  |             return true; | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  |         beforeEach(() => { addProviders([AlwaysTrue]); }); | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |         it('works', fakeAsync(inject( | 
					
						
							|  |  |  |                         [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                         (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |                           const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                           router.resetConfig( | 
					
						
							|  |  |  |                               [{path: 'team/:id', component: TeamCmp, canActivate: [AlwaysTrue]}]); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                           router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |                           advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                           expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  |                         }))); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-06-06 10:55:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |       describe('should work when returns an observable', () => { | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           addProviders([{ | 
					
						
							|  |  |  |             provide: 'CanActivate', | 
					
						
							|  |  |  |             useValue: (a: ActivatedRouteSnapshot, b: RouterStateSnapshot) => { return of (false); } | 
					
						
							|  |  |  |           }]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-06 10:55:12 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('works', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            fakeAsync(inject( | 
					
						
							|  |  |  |                [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |                  const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |                  router.resetConfig( | 
					
						
							|  |  |  |                      [{path: 'team/:id', component: TeamCmp, canActivate: ['CanActivate']}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/'); | 
					
						
							|  |  |  |                }))); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-07-13 15:25:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       describe('should work when returns a promise', () => { | 
					
						
							|  |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           addProviders([{ | 
					
						
							|  |  |  |             provide: 'CanActivate', | 
					
						
							|  |  |  |             useValue: (a: ActivatedRouteSnapshot, b: RouterStateSnapshot) => { | 
					
						
							|  |  |  |               if (a.params['id'] == '22') { | 
					
						
							|  |  |  |                 return Promise.resolve(true); | 
					
						
							|  |  |  |               } else { | 
					
						
							|  |  |  |                 return Promise.resolve(false); | 
					
						
							|  |  |  |               } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |           }]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-13 18:12:59 -07:00
										 |  |  |         it('works', | 
					
						
							|  |  |  |            fakeAsync(inject( | 
					
						
							|  |  |  |                [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |                  const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.resetConfig( | 
					
						
							|  |  |  |                      [{path: 'team/:id', component: TeamCmp, canActivate: ['CanActivate']}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/33'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  |                }))); | 
					
						
							| 
									
										
										
										
											2016-07-13 15:25:48 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-06-02 14:44:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |     describe('CanDeactivate', () => { | 
					
						
							|  |  |  |       describe('should not deactivate a route when CanDeactivate returns false', () => { | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           addProviders([ | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |               provide: 'CanDeactivateParent', | 
					
						
							|  |  |  |               useValue: (c: any, a: ActivatedRouteSnapshot, b: RouterStateSnapshot) => { | 
					
						
							|  |  |  |                 return a.params['id'] === '22'; | 
					
						
							|  |  |  |               } | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |               provide: 'CanDeactivateTeam', | 
					
						
							|  |  |  |               useValue: (c: any, a: ActivatedRouteSnapshot, b: RouterStateSnapshot) => { | 
					
						
							|  |  |  |                 return c.route.snapshot.params['id'] === '22'; | 
					
						
							|  |  |  |               } | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |               provide: 'CanDeactivateUser', | 
					
						
							|  |  |  |               useValue: (c: any, a: ActivatedRouteSnapshot, b: RouterStateSnapshot) => { | 
					
						
							|  |  |  |                 return a.params['name'] === 'victor'; | 
					
						
							|  |  |  |               } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |           ]); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-02 14:44:57 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('works', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            fakeAsync(inject( | 
					
						
							|  |  |  |                [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |                  const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                  router.resetConfig([ | 
					
						
							|  |  |  |                    {path: 'team/:id', component: TeamCmp, canDeactivate: ['CanDeactivateTeam']} | 
					
						
							|  |  |  |                  ]); | 
					
						
							| 
									
										
										
										
											2016-06-02 14:44:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                  router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/22'); | 
					
						
							| 
									
										
										
										
											2016-06-02 14:44:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-26 11:52:32 -07:00
										 |  |  |                  let successStatus: boolean; | 
					
						
							| 
									
										
										
										
											2016-06-25 13:31:48 -07:00
										 |  |  |                  router.navigateByUrl('/team/33').then(res => successStatus = res); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/33'); | 
					
						
							| 
									
										
										
										
											2016-06-25 13:31:48 -07:00
										 |  |  |                  expect(successStatus).toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-06-02 14:44:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-26 11:52:32 -07:00
										 |  |  |                  let canceledStatus: boolean; | 
					
						
							| 
									
										
										
										
											2016-06-25 13:31:48 -07:00
										 |  |  |                  router.navigateByUrl('/team/44').then(res => canceledStatus = res); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/33'); | 
					
						
							| 
									
										
										
										
											2016-06-25 13:31:48 -07:00
										 |  |  |                  expect(canceledStatus).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                }))); | 
					
						
							| 
									
										
										
										
											2016-06-15 15:45:42 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  |         it('works (componentless route)', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            fakeAsync(inject( | 
					
						
							|  |  |  |                [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |                  const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |                  router.resetConfig([{ | 
					
						
							|  |  |  |                    path: 'parent/:id', | 
					
						
							|  |  |  |                    canDeactivate: ['CanDeactivateParent'], | 
					
						
							|  |  |  |                    children: [{path: 'simple', component: SimpleCmp}] | 
					
						
							|  |  |  |                  }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/parent/22/simple'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/parent/22/simple'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/parent/33/simple'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/parent/33/simple'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/parent/44/simple'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/parent/33/simple'); | 
					
						
							|  |  |  |                }))); | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-15 15:45:42 -07:00
										 |  |  |         it('works with a nested route', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            fakeAsync(inject( | 
					
						
							|  |  |  |                [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |                  const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |                  router.resetConfig([{ | 
					
						
							|  |  |  |                    path: 'team/:id', | 
					
						
							|  |  |  |                    component: TeamCmp, | 
					
						
							|  |  |  |                    children: [ | 
					
						
							| 
									
										
										
										
											2016-06-27 20:10:36 -07:00
										 |  |  |                      {path: '', pathMatch: 'full', component: SimpleCmp}, { | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |                        path: 'user/:name', | 
					
						
							|  |  |  |                        component: UserCmp, | 
					
						
							|  |  |  |                        canDeactivate: ['CanDeactivateUser'] | 
					
						
							|  |  |  |                      } | 
					
						
							|  |  |  |                    ] | 
					
						
							|  |  |  |                  }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/22/user/victor'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  // this works because we can deactivate victor
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/33'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/33'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/33/user/fedor'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  // this doesn't work cause we cannot deactivate fedor
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/44'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/33/user/fedor'); | 
					
						
							|  |  |  |                }))); | 
					
						
							| 
									
										
										
										
											2016-06-02 14:44:57 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |       describe('should work when given a class', () => { | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  |         class AlwaysTrue implements CanDeactivate<TeamCmp> { | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |           canDeactivate( | 
					
						
							|  |  |  |               component: TeamCmp, route: ActivatedRouteSnapshot, | 
					
						
							|  |  |  |               state: RouterStateSnapshot): boolean { | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  |             return true; | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  |         beforeEach(() => { addProviders([AlwaysTrue]); }); | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('works', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            fakeAsync(inject( | 
					
						
							|  |  |  |                [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |                  const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |                  router.resetConfig( | 
					
						
							|  |  |  |                      [{path: 'team/:id', component: TeamCmp, canDeactivate: [AlwaysTrue]}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/33'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/33'); | 
					
						
							|  |  |  |                }))); | 
					
						
							| 
									
										
										
										
											2016-06-02 15:29:15 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-07-26 14:39:02 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('should work when returns an observable', () => { | 
					
						
							|  |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           addProviders([{ | 
					
						
							|  |  |  |             provide: 'CanDeactivate', | 
					
						
							|  |  |  |             useValue: (c: TeamCmp, a: ActivatedRouteSnapshot, b: RouterStateSnapshot) => { | 
					
						
							|  |  |  |               return of (false); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |           }]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('works', | 
					
						
							|  |  |  |            fakeAsync(inject( | 
					
						
							|  |  |  |                [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |                  const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.resetConfig( | 
					
						
							|  |  |  |                      [{path: 'team/:id', component: TeamCmp, canDeactivate: ['CanDeactivate']}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/team/33'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  |                }))); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-06-02 14:44:57 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-06-06 10:55:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-13 15:15:20 -07:00
										 |  |  |     describe('CanActivateChild', () => { | 
					
						
							|  |  |  |       describe('should be invoked when activating a child', () => { | 
					
						
							|  |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           addProviders([{ | 
					
						
							|  |  |  |             provide: 'alwaysFalse', | 
					
						
							|  |  |  |             useValue: (a: any, b: any) => { return a.params.id === '22'; } | 
					
						
							|  |  |  |           }]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('works', fakeAsync(inject( | 
					
						
							|  |  |  |                         [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |                         (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |                           const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                           router.resetConfig([{ | 
					
						
							|  |  |  |                             path: '', | 
					
						
							|  |  |  |                             canActivateChild: ['alwaysFalse'], | 
					
						
							|  |  |  |                             children: [{path: 'team/:id', component: TeamCmp}] | 
					
						
							|  |  |  |                           }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                           router.navigateByUrl('/team/22'); | 
					
						
							|  |  |  |                           advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                           expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                           router.navigateByUrl('/team/33').catch(() => {}); | 
					
						
							|  |  |  |                           advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                           expect(location.path()).toEqual('/team/22'); | 
					
						
							|  |  |  |                         }))); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 14:39:02 -07:00
										 |  |  |     describe('CanLoad', () => { | 
					
						
							|  |  |  |       describe('should not load children when CanLoad returns false', () => { | 
					
						
							|  |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           addProviders([ | 
					
						
							|  |  |  |             {provide: 'alwaysFalse', useValue: (a: any) => false}, | 
					
						
							|  |  |  |             {provide: 'alwaysTrue', useValue: (a: any) => true} | 
					
						
							|  |  |  |           ]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('works', | 
					
						
							|  |  |  |            fakeAsync(inject( | 
					
						
							|  |  |  |                [Router, TestComponentBuilder, Location, NgModuleFactoryLoader], | 
					
						
							|  |  |  |                (router: Router, tcb: TestComponentBuilder, location: Location, | 
					
						
							|  |  |  |                 loader: SpyNgModuleFactoryLoader) => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  @Component({selector: 'lazy', template: 'lazy-loaded'}) | 
					
						
							|  |  |  |                  class LazyLoadedComponent { | 
					
						
							|  |  |  |                  } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  @NgModule({ | 
					
						
							|  |  |  |                    declarations: [LazyLoadedComponent], | 
					
						
							| 
									
										
										
										
											2016-07-27 09:54:19 -07:00
										 |  |  |                    imports: | 
					
						
							|  |  |  |                        [RouterModule.forChild([{path: 'loaded', component: LazyLoadedComponent}])], | 
					
						
							| 
									
										
										
										
											2016-07-26 14:39:02 -07:00
										 |  |  |                    entryComponents: [LazyLoadedComponent] | 
					
						
							|  |  |  |                  }) | 
					
						
							|  |  |  |                  class LoadedModule { | 
					
						
							|  |  |  |                  } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  loader.stubbedModules = {lazyFalse: LoadedModule, lazyTrue: LoadedModule}; | 
					
						
							|  |  |  |                  const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  router.resetConfig([ | 
					
						
							|  |  |  |                    {path: 'lazyFalse', canLoad: ['alwaysFalse'], loadChildren: 'lazyFalse'}, | 
					
						
							|  |  |  |                    {path: 'lazyTrue', canLoad: ['alwaysTrue'], loadChildren: 'lazyTrue'} | 
					
						
							|  |  |  |                  ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  const recordedEvents: any[] = []; | 
					
						
							|  |  |  |                  router.events.forEach(e => recordedEvents.push(e)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  // failed navigation
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/lazyFalse/loaded').catch(s => {}); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/'); | 
					
						
							| 
									
										
										
										
											2016-06-06 10:55:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 14:39:02 -07:00
										 |  |  |                  expectEvents(recordedEvents, [ | 
					
						
							|  |  |  |                    [NavigationStart, '/lazyFalse/loaded'], [NavigationError, '/lazyFalse/loaded'] | 
					
						
							|  |  |  |                  ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  recordedEvents.splice(0); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 14:39:02 -07:00
										 |  |  |                  // successful navigation
 | 
					
						
							|  |  |  |                  router.navigateByUrl('/lazyTrue/loaded'); | 
					
						
							|  |  |  |                  advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  expect(location.path()).toEqual('/lazyTrue/loaded'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 14:39:02 -07:00
										 |  |  |                  expectEvents(recordedEvents, [ | 
					
						
							|  |  |  |                    [NavigationStart, '/lazyTrue/loaded'], [RoutesRecognized, '/lazyTrue/loaded'], | 
					
						
							|  |  |  |                    [NavigationEnd, '/lazyTrue/loaded'] | 
					
						
							|  |  |  |                  ]); | 
					
						
							|  |  |  |                }))); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-06-06 10:55:12 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-06-15 09:01:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |   describe('routerActiveLink', () => { | 
					
						
							| 
									
										
										
										
											2016-07-07 15:29:54 -07:00
										 |  |  |     it('should set the class when the link is active (a tag)', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |        fakeAsync(inject( | 
					
						
							|  |  |  |            [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |            (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{ | 
					
						
							|  |  |  |                path: 'team/:id', | 
					
						
							|  |  |  |                component: TeamCmp, | 
					
						
							|  |  |  |                children: [{ | 
					
						
							|  |  |  |                  path: 'link', | 
					
						
							|  |  |  |                  component: DummyLinkCmp, | 
					
						
							|  |  |  |                  children: | 
					
						
							|  |  |  |                      [{path: 'simple', component: SimpleCmp}, {path: '', component: BlankCmp}] | 
					
						
							|  |  |  |                }] | 
					
						
							|  |  |  |              }]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 12:02:14 -07:00
										 |  |  |              router.navigateByUrl('/team/22/link;exact=true'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |              advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-24 12:02:14 -07:00
										 |  |  |              expect(location.path()).toEqual('/team/22/link;exact=true'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-07 15:29:54 -07:00
										 |  |  |              const nativeLink = fixture.debugElement.nativeElement.querySelector('a'); | 
					
						
							|  |  |  |              const nativeButton = fixture.debugElement.nativeElement.querySelector('button'); | 
					
						
							|  |  |  |              expect(nativeLink.className).toEqual('active'); | 
					
						
							|  |  |  |              expect(nativeButton.className).toEqual('active'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/team/22/link/simple'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  |              expect(location.path()).toEqual('/team/22/link/simple'); | 
					
						
							| 
									
										
										
										
											2016-07-07 15:29:54 -07:00
										 |  |  |              expect(nativeLink.className).toEqual(''); | 
					
						
							|  |  |  |              expect(nativeButton.className).toEqual(''); | 
					
						
							| 
									
										
										
										
											2016-07-20 17:51:21 -07:00
										 |  |  |            }))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should not set the class until the first navigation succeeds', | 
					
						
							|  |  |  |        fakeAsync(inject( | 
					
						
							|  |  |  |            [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |            (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |              @Component({ | 
					
						
							|  |  |  |                template: | 
					
						
							|  |  |  |                    '<router-outlet></router-outlet><a routerLink="/" routerLinkActive="active" [routerLinkActiveOptions]="{exact: true}" >' | 
					
						
							|  |  |  |              }) | 
					
						
							|  |  |  |              class RootCmpWithLink { | 
					
						
							|  |  |  |              } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              const f = tcb.createFakeAsync(RootCmpWithLink); | 
					
						
							|  |  |  |              advance(f); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              const link = f.debugElement.nativeElement.querySelector('a'); | 
					
						
							|  |  |  |              expect(link.className).toEqual(''); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.initialNavigation(); | 
					
						
							|  |  |  |              advance(f); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expect(link.className).toEqual('active'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |            }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-07 15:29:54 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 12:02:14 -07:00
										 |  |  |     it('should set the class on a parent element when the link is active', | 
					
						
							| 
									
										
										
										
											2016-07-22 16:56:10 -07:00
										 |  |  |        fakeAsync(inject( | 
					
						
							|  |  |  |            [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |            (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							|  |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{ | 
					
						
							|  |  |  |                path: 'team/:id', | 
					
						
							|  |  |  |                component: TeamCmp, | 
					
						
							|  |  |  |                children: [{ | 
					
						
							|  |  |  |                  path: 'link', | 
					
						
							|  |  |  |                  component: DummyLinkWithParentCmp, | 
					
						
							|  |  |  |                  children: | 
					
						
							|  |  |  |                      [{path: 'simple', component: SimpleCmp}, {path: '', component: BlankCmp}] | 
					
						
							|  |  |  |                }] | 
					
						
							|  |  |  |              }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/team/22/link;exact=true'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  |              expect(location.path()).toEqual('/team/22/link;exact=true'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              const native = fixture.debugElement.nativeElement.querySelector('link-parent'); | 
					
						
							|  |  |  |              expect(native.className).toEqual('active'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/team/22/link/simple'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  |              expect(location.path()).toEqual('/team/22/link/simple'); | 
					
						
							|  |  |  |              expect(native.className).toEqual(''); | 
					
						
							|  |  |  |            }))); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 12:02:14 -07:00
										 |  |  |     it('should set the class when the link is active', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |        fakeAsync(inject( | 
					
						
							|  |  |  |            [Router, TestComponentBuilder, Location], | 
					
						
							|  |  |  |            (router: Router, tcb: TestComponentBuilder, location: Location) => { | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{ | 
					
						
							|  |  |  |                path: 'team/:id', | 
					
						
							|  |  |  |                component: TeamCmp, | 
					
						
							|  |  |  |                children: [{ | 
					
						
							|  |  |  |                  path: 'link', | 
					
						
							|  |  |  |                  component: DummyLinkCmp, | 
					
						
							|  |  |  |                  children: | 
					
						
							|  |  |  |                      [{path: 'simple', component: SimpleCmp}, {path: '', component: BlankCmp}] | 
					
						
							|  |  |  |                }] | 
					
						
							|  |  |  |              }]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 12:02:14 -07:00
										 |  |  |              router.navigateByUrl('/team/22/link'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |              advance(fixture); | 
					
						
							| 
									
										
										
										
											2016-06-24 12:02:14 -07:00
										 |  |  |              expect(location.path()).toEqual('/team/22/link'); | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              const native = fixture.debugElement.nativeElement.querySelector('a'); | 
					
						
							|  |  |  |              expect(native.className).toEqual('active'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/team/22/link/simple'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  |              expect(location.path()).toEqual('/team/22/link/simple'); | 
					
						
							|  |  |  |              expect(native.className).toEqual('active'); | 
					
						
							|  |  |  |            }))); | 
					
						
							| 
									
										
										
										
											2016-06-15 09:01:05 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   describe('lazy loading', () => { | 
					
						
							|  |  |  |     it('works', fakeAsync(inject( | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |                     [Router, TestComponentBuilder, Location, NgModuleFactoryLoader], | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |                     (router: Router, tcb: TestComponentBuilder, location: Location, | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |                      loader: SpyNgModuleFactoryLoader) => { | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |                       @Component({ | 
					
						
							|  |  |  |                         selector: 'lazy', | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |                         template: 'lazy-loaded-parent [<router-outlet></router-outlet>]', | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |                         directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  |                       }) | 
					
						
							|  |  |  |                       class ParentLazyLoadedComponent { | 
					
						
							|  |  |  |                       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                       @Component({selector: 'lazy', template: 'lazy-loaded-child'}) | 
					
						
							|  |  |  |                       class ChildLazyLoadedComponent { | 
					
						
							|  |  |  |                       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |                       @NgModule({ | 
					
						
							|  |  |  |                         declarations: [ParentLazyLoadedComponent, ChildLazyLoadedComponent], | 
					
						
							| 
									
										
										
										
											2016-07-27 09:54:19 -07:00
										 |  |  |                         imports: [RouterModule.forChild([{ | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |                           path: 'loaded', | 
					
						
							|  |  |  |                           component: ParentLazyLoadedComponent, | 
					
						
							|  |  |  |                           children: [{path: 'child', component: ChildLazyLoadedComponent}] | 
					
						
							|  |  |  |                         }])], | 
					
						
							| 
									
										
										
										
											2016-07-25 00:36:30 -07:00
										 |  |  |                         entryComponents: [ParentLazyLoadedComponent, ChildLazyLoadedComponent] | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |                       }) | 
					
						
							|  |  |  |                       class LoadedModule { | 
					
						
							|  |  |  |                       } | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                       loader.stubbedModules = {expected: LoadedModule}; | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |                       const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-06 16:19:52 -07:00
										 |  |  |                       router.resetConfig([{path: 'lazy', loadChildren: 'expected'}]); | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |                       router.navigateByUrl('/lazy/loaded/child'); | 
					
						
							|  |  |  |                       advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                       expect(location.path()).toEqual('/lazy/loaded/child'); | 
					
						
							|  |  |  |                       expect(fixture.debugElement.nativeElement) | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |                           .toHaveText('lazy-loaded-parent [lazy-loaded-child]'); | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |                     }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-02 13:27:55 -07:00
										 |  |  |     it('should combine routes from multiple modules into a single configuration', | 
					
						
							|  |  |  |        fakeAsync(inject( | 
					
						
							|  |  |  |            [Router, TestComponentBuilder, Location, NgModuleFactoryLoader], | 
					
						
							|  |  |  |            (router: Router, tcb: TestComponentBuilder, location: Location, | 
					
						
							|  |  |  |             loader: SpyNgModuleFactoryLoader) => { | 
					
						
							|  |  |  |              @Component({selector: 'lazy', template: 'lazy-loaded-2'}) | 
					
						
							|  |  |  |              class LazyComponent2 { | 
					
						
							|  |  |  |              } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              @NgModule({ | 
					
						
							|  |  |  |                declarations: [LazyComponent2], | 
					
						
							|  |  |  |                imports: [RouterModule.forChild([{path: 'loaded', component: LazyComponent2}])], | 
					
						
							|  |  |  |                entryComponents: [LazyComponent2] | 
					
						
							|  |  |  |              }) | 
					
						
							|  |  |  |              class SiblingOfLoadedModule { | 
					
						
							|  |  |  |              } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              @Component( | 
					
						
							|  |  |  |                  {selector: 'lazy', template: 'lazy-loaded-1', directives: ROUTER_DIRECTIVES}) | 
					
						
							|  |  |  |              class LazyComponent1 { | 
					
						
							|  |  |  |              } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              @NgModule({ | 
					
						
							|  |  |  |                declarations: [LazyComponent1], | 
					
						
							|  |  |  |                imports: [ | 
					
						
							|  |  |  |                  RouterModule.forChild([{path: 'loaded', component: LazyComponent1}]), | 
					
						
							|  |  |  |                  SiblingOfLoadedModule | 
					
						
							|  |  |  |                ], | 
					
						
							|  |  |  |                entryComponents: [LazyComponent1] | 
					
						
							|  |  |  |              }) | 
					
						
							|  |  |  |              class LoadedModule { | 
					
						
							|  |  |  |              } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              loader.stubbedModules = {expected1: LoadedModule, expected2: SiblingOfLoadedModule}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([ | 
					
						
							|  |  |  |                {path: 'lazy1', loadChildren: 'expected1'}, | 
					
						
							|  |  |  |                {path: 'lazy2', loadChildren: 'expected2'} | 
					
						
							|  |  |  |              ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/lazy1/loaded'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  |              expect(location.path()).toEqual('/lazy1/loaded'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/lazy2/loaded'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  |              expect(location.path()).toEqual('/lazy2/loaded'); | 
					
						
							|  |  |  |            }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-13 18:12:59 -07:00
										 |  |  |     it('should use the injector of the lazily-loaded configuration', | 
					
						
							|  |  |  |        fakeAsync(inject( | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |            [Router, TestComponentBuilder, Location, NgModuleFactoryLoader], | 
					
						
							| 
									
										
										
										
											2016-07-13 18:12:59 -07:00
										 |  |  |            (router: Router, tcb: TestComponentBuilder, location: Location, | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |             loader: SpyNgModuleFactoryLoader) => { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:07:12 -07:00
										 |  |  |              class LazyLoadedService {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-13 18:12:59 -07:00
										 |  |  |              @Component({selector: 'lazy', template: 'lazy-loaded', directives: ROUTER_DIRECTIVES}) | 
					
						
							|  |  |  |              class LazyLoadedComponent { | 
					
						
							| 
									
										
										
										
											2016-07-18 16:07:12 -07:00
										 |  |  |                constructor(service: LazyLoadedService) {} | 
					
						
							| 
									
										
										
										
											2016-07-13 18:12:59 -07:00
										 |  |  |              } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |              @NgModule({ | 
					
						
							| 
									
										
										
										
											2016-07-25 00:36:30 -07:00
										 |  |  |                entryComponents: [LazyLoadedComponent], | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |                declarations: [LazyLoadedComponent], | 
					
						
							| 
									
										
										
										
											2016-07-27 09:54:19 -07:00
										 |  |  |                imports: [RouterModule.forChild([{ | 
					
						
							|  |  |  |                  path: '', | 
					
						
							|  |  |  |                  canActivate: ['alwaysTrue'], | 
					
						
							|  |  |  |                  children: [{path: 'loaded', component: LazyLoadedComponent}] | 
					
						
							|  |  |  |                }])], | 
					
						
							|  |  |  |                providers: [LazyLoadedService, {provide: 'alwaysTrue', useValue: () => true}] | 
					
						
							| 
									
										
										
										
											2016-07-13 18:12:59 -07:00
										 |  |  |              }) | 
					
						
							|  |  |  |              class LoadedModule { | 
					
						
							|  |  |  |              } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              loader.stubbedModules = {expected: LoadedModule}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.resetConfig([{path: 'lazy', loadChildren: 'expected'}]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              router.navigateByUrl('/lazy/loaded'); | 
					
						
							|  |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expect(location.path()).toEqual('/lazy/loaded'); | 
					
						
							|  |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('lazy-loaded'); | 
					
						
							|  |  |  |            }))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |     it('error emit an error when cannot load a config', | 
					
						
							|  |  |  |        fakeAsync(inject( | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |            [Router, TestComponentBuilder, Location, NgModuleFactoryLoader], | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |            (router: Router, tcb: TestComponentBuilder, location: Location, | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |             loader: SpyNgModuleFactoryLoader) => { | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |              loader.stubbedModules = {}; | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |              const fixture = createRoot(tcb, router, RootCmp); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-06 16:19:52 -07:00
										 |  |  |              router.resetConfig([{path: 'lazy', loadChildren: 'invalid'}]); | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-13 10:39:16 -07:00
										 |  |  |              const recordedEvents: any[] = []; | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |              router.events.forEach(e => recordedEvents.push(e)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-21 17:12:00 -07:00
										 |  |  |              router.navigateByUrl('/lazy/loaded').catch(s => {}); | 
					
						
							| 
									
										
										
										
											2016-07-06 11:02:16 -07:00
										 |  |  |              advance(fixture); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expect(location.path()).toEqual('/'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expectEvents( | 
					
						
							|  |  |  |                  recordedEvents, | 
					
						
							|  |  |  |                  [[NavigationStart, '/lazy/loaded'], [NavigationError, '/lazy/loaded']]); | 
					
						
							|  |  |  |            }))); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-05-20 13:22:57 -07:00
										 |  |  | }); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | function expectEvents(events: Event[], pairs: any[]) { | 
					
						
							| 
									
										
										
										
											2016-06-03 14:25:18 -07:00
										 |  |  |   for (let i = 0; i < events.length; ++i) { | 
					
						
							|  |  |  |     expect((<any>events[i].constructor).name).toBe(pairs[i][0].name); | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  |     expect((<any>events[i]).url).toBe(pairs[i][1]); | 
					
						
							| 
									
										
										
										
											2016-06-03 14:25:18 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 14:33:34 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'link-cmp', | 
					
						
							|  |  |  |   template: `<a routerLink="/team/33/simple">link</a>`, | 
					
						
							|  |  |  |   directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | class StringLinkCmp { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-28 16:47:13 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'link-cmp', | 
					
						
							|  |  |  |   template: `<button routerLink
 | 
					
						
							|  |  |  | ="/team/33/simple">link</button>`,
 | 
					
						
							|  |  |  |   directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | class StringLinkButtonCmp { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-26 16:51:56 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'link-cmp', | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  |   template: `<router-outlet></router-outlet><a [routerLink]="['/team/33/simple']">link</a>`, | 
					
						
							| 
									
										
										
										
											2016-05-26 16:51:56 -07:00
										 |  |  |   directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | class AbsoluteLinkCmp { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-05-26 16:51:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-15 09:01:05 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'link-cmp', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |   template: | 
					
						
							| 
									
										
										
										
											2016-07-07 15:29:54 -07:00
										 |  |  |       `<router-outlet></router-outlet><a routerLinkActive="active" [routerLinkActiveOptions]="{exact: exact}" [routerLink]="['./']">link</a>
 | 
					
						
							|  |  |  | <button routerLinkActive="active" [routerLinkActiveOptions]="{exact: exact}" [routerLink]="['./']">button</button> | 
					
						
							|  |  |  | `,
 | 
					
						
							| 
									
										
										
										
											2016-06-15 09:01:05 -07:00
										 |  |  |   directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | class DummyLinkCmp { | 
					
						
							|  |  |  |   private exact: boolean; | 
					
						
							| 
									
										
										
										
											2016-06-24 12:30:11 -07:00
										 |  |  |   constructor(route: ActivatedRoute) { this.exact = (<any>route.snapshot.params).exact === 'true'; } | 
					
						
							| 
									
										
										
										
											2016-06-15 09:01:05 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-26 16:51:56 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'link-cmp', | 
					
						
							|  |  |  |   template: `<a [routerLink]="['../simple']">link</a>`, | 
					
						
							|  |  |  |   directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | class RelativeLinkCmp { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-05-26 16:51:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-06 15:44:12 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'link-cmp', | 
					
						
							|  |  |  |   template: `<a [routerLink]="['../simple']" [queryParams]="{q: '1'}" fragment="f">link</a>`, | 
					
						
							|  |  |  |   directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | class LinkWithQueryParamsAndFragment { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-06-06 15:44:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | @Component({selector: 'simple-cmp', template: `simple`, directives: ROUTER_DIRECTIVES}) | 
					
						
							| 
									
										
										
										
											2016-05-24 14:33:34 -07:00
										 |  |  | class SimpleCmp { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 12:30:11 -07:00
										 |  |  | @Component( | 
					
						
							|  |  |  |     {selector: 'collect-params-cmp', template: `collect-params`, directives: ROUTER_DIRECTIVES}) | 
					
						
							| 
									
										
										
										
											2016-06-24 12:23:42 -07:00
										 |  |  | class CollectParamsCmp { | 
					
						
							|  |  |  |   private params: any = []; | 
					
						
							|  |  |  |   private urls: any = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   constructor(a: ActivatedRoute) { | 
					
						
							|  |  |  |     a.params.forEach(p => this.params.push(p)); | 
					
						
							|  |  |  |     a.url.forEach(u => this.urls.push(u)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-26 11:52:32 -07:00
										 |  |  |   recordedUrls(): string[] { | 
					
						
							|  |  |  |     return this.urls.map((a: any) => a.map((p: any) => p.path).join('/')); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-06-24 12:23:42 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | @Component({selector: 'blank-cmp', template: ``, directives: ROUTER_DIRECTIVES}) | 
					
						
							| 
									
										
										
										
											2016-06-14 14:55:59 -07:00
										 |  |  | class BlankCmp { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'team-cmp', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |   template: | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |       `team {{id | async}} [ <router-outlet></router-outlet>, right: <router-outlet name="right"></router-outlet> ]`, | 
					
						
							| 
									
										
										
										
											2016-05-24 14:33:34 -07:00
										 |  |  |   directives: ROUTER_DIRECTIVES | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | }) | 
					
						
							|  |  |  | class TeamCmp { | 
					
						
							|  |  |  |   id: Observable<string>; | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  |   recordedParams: Params[] = []; | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-02 14:44:57 -07:00
										 |  |  |   constructor(public route: ActivatedRoute) { | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  |     this.id = route.params.map(p => p['id']); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  |     route.params.forEach(_ => this.recordedParams.push(_)); | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | @Component( | 
					
						
							|  |  |  |     {selector: 'user-cmp', template: `user {{name | async}}`, directives: [ROUTER_DIRECTIVES]}) | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | class UserCmp { | 
					
						
							|  |  |  |   name: Observable<string>; | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  |   recordedParams: Params[] = []; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  |   constructor(route: ActivatedRoute) { | 
					
						
							|  |  |  |     this.name = route.params.map(p => p['name']); | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  |     route.params.forEach(_ => this.recordedParams.push(_)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-30 14:01:26 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'wrapper', | 
					
						
							|  |  |  |   template: `<router-outlet></router-outlet>`, | 
					
						
							|  |  |  |   directives: [ROUTER_DIRECTIVES] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | class WrapperCmp { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-01 14:32:15 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'query-cmp', | 
					
						
							|  |  |  |   template: `query: {{name | async}} fragment: {{fragment | async}}`, | 
					
						
							|  |  |  |   directives: [ROUTER_DIRECTIVES] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | class QueryParamsAndFragmentCmp { | 
					
						
							|  |  |  |   name: Observable<string>; | 
					
						
							|  |  |  |   fragment: Observable<string>; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   constructor(router: Router) { | 
					
						
							|  |  |  |     this.name = router.routerState.queryParams.map(p => p['name']); | 
					
						
							|  |  |  |     this.fragment = router.routerState.fragment; | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 14:00:07 -07:00
										 |  |  | @Component({selector: 'route-cmp', template: `route`, directives: ROUTER_DIRECTIVES}) | 
					
						
							|  |  |  | class RouteCmp { | 
					
						
							|  |  |  |   constructor(public route: ActivatedRoute) {} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'link-cmp', | 
					
						
							|  |  |  |   template: | 
					
						
							|  |  |  |       `<div *ngIf="show"><a [routerLink]="['./simple']">link</a></div> <router-outlet></router-outlet>`, | 
					
						
							|  |  |  |   directives: ROUTER_DIRECTIVES, | 
					
						
							| 
									
										
										
										
											2016-07-25 00:36:30 -07:00
										 |  |  |   entryComponents: [BlankCmp, SimpleCmp] | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  | }) | 
					
						
							|  |  |  | class RelativeLinkInIfCmp { | 
					
						
							|  |  |  |   show: boolean = false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-07 17:53:26 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'child', | 
					
						
							|  |  |  |   template: '<div *ngIf="alwaysTrue"><router-outlet></router-outlet></div>', | 
					
						
							|  |  |  |   directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | class LinkInNgIf { | 
					
						
							|  |  |  |   alwaysTrue = true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-22 16:42:05 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'link-cmp', | 
					
						
							|  |  |  |   template: `<router-outlet></router-outlet>
 | 
					
						
							|  |  |  |                     <link-parent routerLinkActive="active" [routerLinkActiveOptions]="{exact: exact}"> | 
					
						
							|  |  |  |                       <div ngClass="{one: 'true'}"><a [routerLink]="['./']">link</a></div> | 
					
						
							|  |  |  |                     </link-parent>`, | 
					
						
							|  |  |  |   directives: ROUTER_DIRECTIVES | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | class DummyLinkWithParentCmp { | 
					
						
							|  |  |  |   private exact: boolean; | 
					
						
							|  |  |  |   constructor(route: ActivatedRoute) { this.exact = (<any>route.snapshot.params).exact === 'true'; } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  | @Component({selector: 'cmp', template: ''}) | 
					
						
							|  |  |  | class ComponentRecordingRoutePathAndUrl { | 
					
						
							|  |  |  |   private path: any; | 
					
						
							|  |  |  |   private url: any; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   constructor(router: Router, route: ActivatedRoute) { | 
					
						
							|  |  |  |     this.path = router.routerState.pathFromRoot(route); | 
					
						
							|  |  |  |     this.url = router.url.toString(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'root-cmp', | 
					
						
							|  |  |  |   template: `<router-outlet></router-outlet>`, | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |   directives: [ROUTER_DIRECTIVES], | 
					
						
							| 
									
										
										
										
											2016-07-25 00:36:30 -07:00
										 |  |  |   entryComponents: [ | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |     BlankCmp, SimpleCmp, TeamCmp, UserCmp, StringLinkCmp, DummyLinkCmp, AbsoluteLinkCmp, | 
					
						
							|  |  |  |     RelativeLinkCmp, DummyLinkWithParentCmp, LinkWithQueryParamsAndFragment, CollectParamsCmp, | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |     QueryParamsAndFragmentCmp, StringLinkButtonCmp, WrapperCmp, LinkInNgIf, | 
					
						
							| 
									
										
										
										
											2016-08-02 15:31:56 -07:00
										 |  |  |     ComponentRecordingRoutePathAndUrl | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |   ] | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | }) | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | class RootCmp { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'root-cmp', | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  |   template: | 
					
						
							| 
									
										
										
										
											2016-06-30 14:59:23 -07:00
										 |  |  |       `primary [<router-outlet></router-outlet>] right [<router-outlet name="right"></router-outlet>]`, | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  |   directives: [ROUTER_DIRECTIVES], | 
					
						
							| 
									
										
										
										
											2016-07-25 00:36:30 -07:00
										 |  |  |   entryComponents: [BlankCmp, SimpleCmp, RouteCmp, UserCmp] | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  | }) | 
					
						
							| 
									
										
										
										
											2016-06-21 11:49:42 -07:00
										 |  |  | class RootCmpWithTwoOutlets { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-06-19 14:44:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 13:23:27 -07:00
										 |  |  | function advance(fixture: ComponentFixture<any>): void { | 
					
						
							|  |  |  |   tick(); | 
					
						
							|  |  |  |   fixture.detectChanges(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-06-27 16:45:21 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | function createRoot(tcb: TestComponentBuilder, router: Router, type: any): ComponentFixture<any> { | 
					
						
							|  |  |  |   const f = tcb.createFakeAsync(type); | 
					
						
							|  |  |  |   advance(f); | 
					
						
							|  |  |  |   router.initialNavigation(); | 
					
						
							|  |  |  |   advance(f); | 
					
						
							|  |  |  |   return f; | 
					
						
							| 
									
										
										
										
											2016-07-11 16:04:32 -07:00
										 |  |  | } |