| 
									
										
										
										
											2016-07-07 14:13:32 -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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {Location, LocationStrategy} from '@angular/common'; | 
					
						
							| 
									
										
										
										
											2016-07-20 17:51:21 -07:00
										 |  |  | import {MockLocationStrategy, SpyLocation} from '@angular/common/testing'; | 
					
						
							| 
									
										
										
										
											2016-08-19 16:01:59 -07:00
										 |  |  | import {Compiler, Injectable, Injector, ModuleWithProviders, NgModule, NgModuleFactory, NgModuleFactoryLoader} from '@angular/core'; | 
					
						
							| 
									
										
										
										
											2016-08-30 18:07:40 -07:00
										 |  |  | import {Route, Router, RouterModule, RouterOutletMap, Routes, UrlSerializer, provideRoutes} from '@angular/router'; | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-30 18:07:40 -07:00
										 |  |  | import {ROUTER_PROVIDERS, ROUTES, flatten} from './private_import_router'; | 
					
						
							| 
									
										
										
										
											2016-07-20 17:51:21 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2016-09-10 16:53:27 -07:00
										 |  |  |  * @whatItDoes Allows to simulate the loading of ng modules in tests. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @howToUse | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ```
 | 
					
						
							|  |  |  |  * const loader = TestBed.get(NgModuleFactoryLoader); | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @Component({template: 'lazy-loaded'}) | 
					
						
							|  |  |  |  * class LazyLoadedComponent {} | 
					
						
							|  |  |  |  * @NgModule({ | 
					
						
							|  |  |  |  *   declarations: [LazyLoadedComponent], | 
					
						
							|  |  |  |  *   imports: [RouterModule.forChild([{path: 'loaded', component: LazyLoadedComponent}])] | 
					
						
							|  |  |  |  * }) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * class LoadedModule {} | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * // sets up stubbedModules
 | 
					
						
							|  |  |  |  * loader.stubbedModules = {lazyModule: LoadedModule}; | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * router.resetConfig([ | 
					
						
							|  |  |  |  *   {path: 'lazy', loadChildren: 'lazyModule'}, | 
					
						
							|  |  |  |  * ]); | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * router.navigateByUrl('/lazy/loaded'); | 
					
						
							|  |  |  |  * ```
 | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-08-17 15:35:30 -07:00
										 |  |  |  * @stable | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | @Injectable() | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  | export class SpyNgModuleFactoryLoader implements NgModuleFactoryLoader { | 
					
						
							| 
									
										
										
										
											2016-09-10 16:53:27 -07:00
										 |  |  |   /** | 
					
						
							|  |  |  |    * @docsNotRequired | 
					
						
							|  |  |  |    */ | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |   public stubbedModules: {[path: string]: any} = {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   constructor(private compiler: Compiler) {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |   load(path: string): Promise<NgModuleFactory<any>> { | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |     if (this.stubbedModules[path]) { | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |       return this.compiler.compileModuleAsync(this.stubbedModules[path]); | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |     } else { | 
					
						
							|  |  |  |       return <any>Promise.reject(new Error(`Cannot find module ${path}`)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-22 17:37:48 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Router setup factory function used for testing. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-08-30 15:57:24 -07:00
										 |  |  |  * @stable | 
					
						
							| 
									
										
										
										
											2016-08-22 17:37:48 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | export function setupTestingRouter( | 
					
						
							| 
									
										
										
										
											2016-08-16 13:40:28 -07:00
										 |  |  |     urlSerializer: UrlSerializer, outletMap: RouterOutletMap, location: Location, | 
					
						
							|  |  |  |     loader: NgModuleFactoryLoader, compiler: Compiler, injector: Injector, routes: Route[][]) { | 
					
						
							| 
									
										
										
										
											2016-08-02 13:27:55 -07:00
										 |  |  |   return new Router( | 
					
						
							| 
									
										
										
										
											2016-08-16 13:40:28 -07:00
										 |  |  |       null, urlSerializer, outletMap, location, injector, loader, compiler, flatten(routes)); | 
					
						
							| 
									
										
										
										
											2016-07-25 16:10:10 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2016-09-10 16:53:27 -07:00
										 |  |  |  * @whatItDoes Sets up the router to be used for testing. | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-09-10 16:53:27 -07:00
										 |  |  |  * @howToUse | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * ```
 | 
					
						
							|  |  |  |  * beforeEach(() => { | 
					
						
							| 
									
										
										
										
											2016-08-19 16:01:59 -07:00
										 |  |  |  *   TestBed.configureTestModule({ | 
					
						
							|  |  |  |  *     modules: [ | 
					
						
							|  |  |  |  *       RouterTestingModule.withRoutes( | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |  *         [{path: '', component: BlankCmp}, {path: 'simple', component: SimpleCmp}])] | 
					
						
							| 
									
										
										
										
											2016-08-19 16:01:59 -07:00
										 |  |  |  *       ) | 
					
						
							|  |  |  |  *     ] | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |  *   }); | 
					
						
							|  |  |  |  * }); | 
					
						
							|  |  |  |  * ```
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-09-10 16:53:27 -07:00
										 |  |  |  * @description | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The modules sets up the router to be used for testing. | 
					
						
							| 
									
										
										
										
											2016-09-12 09:47:44 -07:00
										 |  |  |  * It provides spy implementations of {@link Location}, {@link LocationStrategy}, and {@link | 
					
						
							|  |  |  |  * NgModuleFactoryLoader}. | 
					
						
							| 
									
										
										
										
											2016-09-10 16:53:27 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-08-17 15:35:30 -07:00
										 |  |  |  * @stable | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  | @NgModule({ | 
					
						
							|  |  |  |   exports: [RouterModule], | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |   providers: [ | 
					
						
							| 
									
										
										
										
											2016-08-16 11:15:01 -07:00
										 |  |  |     ROUTER_PROVIDERS, {provide: Location, useClass: SpyLocation}, | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |     {provide: LocationStrategy, useClass: MockLocationStrategy}, | 
					
						
							| 
									
										
										
										
											2016-08-16 11:15:01 -07:00
										 |  |  |     {provide: NgModuleFactoryLoader, useClass: SpyNgModuleFactoryLoader}, { | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |       provide: Router, | 
					
						
							| 
									
										
										
										
											2016-07-25 16:10:10 -07:00
										 |  |  |       useFactory: setupTestingRouter, | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |       deps: [ | 
					
						
							| 
									
										
										
										
											2016-08-16 13:40:28 -07:00
										 |  |  |         UrlSerializer, RouterOutletMap, Location, NgModuleFactoryLoader, Compiler, Injector, ROUTES | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |       ] | 
					
						
							| 
									
										
										
										
											2016-08-19 16:01:59 -07:00
										 |  |  |     }, | 
					
						
							|  |  |  |     provideRoutes([]) | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  |   ] | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2016-07-20 11:39:31 -07:00
										 |  |  | export class RouterTestingModule { | 
					
						
							| 
									
										
										
										
											2016-08-19 16:01:59 -07:00
										 |  |  |   static withRoutes(routes: Routes): ModuleWithProviders { | 
					
						
							|  |  |  |     return {ngModule: RouterTestingModule, providers: [provideRoutes(routes)]}; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-07-07 14:13:32 -07:00
										 |  |  | } |