angular-cn/modules/@angular/router/testing/router_testing_module.ts

121 lines
3.4 KiB
TypeScript
Raw Normal View History

2016-07-07 17:13:32 -04: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';
import {MockLocationStrategy, SpyLocation} from '@angular/common/testing';
import {Compiler, Injectable, Injector, ModuleWithProviders, NgModule, NgModuleFactory, NgModuleFactoryLoader} from '@angular/core';
import {NoPreloading, PreloadAllModules, PreloadingStrategy, Route, Router, RouterModule, RouterOutletMap, Routes, UrlSerializer, provideRoutes} from '@angular/router';
2016-07-07 17:13:32 -04:00
import {ROUTER_PROVIDERS, ROUTES, flatten} from './private_import_router';
2016-07-07 17:13:32 -04: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 17:13:32 -04:00
*
* @stable
2016-07-07 17:13:32 -04:00
*/
@Injectable()
export class SpyNgModuleFactoryLoader implements NgModuleFactoryLoader {
/**
* @docsNotRequired
*/
2016-07-07 17:13:32 -04:00
public stubbedModules: {[path: string]: any} = {};
constructor(private compiler: Compiler) {}
load(path: string): Promise<NgModuleFactory<any>> {
2016-07-07 17:13:32 -04:00
if (this.stubbedModules[path]) {
return this.compiler.compileModuleAsync(this.stubbedModules[path]);
2016-07-07 17:13:32 -04:00
} else {
return <any>Promise.reject(new Error(`Cannot find module ${path}`));
}
}
}
/**
* Router setup factory function used for testing.
*
2016-08-30 18:57:24 -04:00
* @stable
*/
export function setupTestingRouter(
urlSerializer: UrlSerializer, outletMap: RouterOutletMap, location: Location,
loader: NgModuleFactoryLoader, compiler: Compiler, injector: Injector, routes: Route[][]) {
return new Router(
null, urlSerializer, outletMap, location, injector, loader, compiler, flatten(routes));
}
2016-07-07 17:13:32 -04:00
/**
* @whatItDoes Sets up the router to be used for testing.
2016-07-07 17:13:32 -04:00
*
* @howToUse
2016-07-07 17:13:32 -04:00
*
* ```
* beforeEach(() => {
* TestBed.configureTestModule({
* modules: [
* RouterTestingModule.withRoutes(
2016-07-07 17:13:32 -04:00
* [{path: '', component: BlankCmp}, {path: 'simple', component: SimpleCmp}])]
* )
* ]
2016-07-07 17:13:32 -04:00
* });
* });
* ```
*
* @description
*
* The modules sets up the router to be used for testing.
2016-09-12 12:47:44 -04:00
* It provides spy implementations of {@link Location}, {@link LocationStrategy}, and {@link
* NgModuleFactoryLoader}.
*
* @stable
2016-07-07 17:13:32 -04:00
*/
@NgModule({
exports: [RouterModule],
2016-07-07 17:13:32 -04:00
providers: [
ROUTER_PROVIDERS, {provide: Location, useClass: SpyLocation},
2016-07-07 17:13:32 -04:00
{provide: LocationStrategy, useClass: MockLocationStrategy},
{provide: NgModuleFactoryLoader, useClass: SpyNgModuleFactoryLoader}, {
2016-07-07 17:13:32 -04:00
provide: Router,
useFactory: setupTestingRouter,
2016-07-07 17:13:32 -04:00
deps: [
UrlSerializer, RouterOutletMap, Location, NgModuleFactoryLoader, Compiler, Injector, ROUTES
2016-07-07 17:13:32 -04:00
]
},
{provide: PreloadingStrategy, useExisting: NoPreloading}, provideRoutes([])
2016-07-07 17:13:32 -04:00
]
})
export class RouterTestingModule {
static withRoutes(routes: Routes): ModuleWithProviders {
return {ngModule: RouterTestingModule, providers: [provideRoutes(routes)]};
}
2016-07-07 17:13:32 -04:00
}