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

89 lines
2.7 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 {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
/**
* A spy for {@link NgModuleFactoryLoader} that allows tests to simulate the loading of ng module
2016-07-07 17:13:32 -04:00
* factories.
*
* @stable
2016-07-07 17:13:32 -04:00
*/
@Injectable()
export class SpyNgModuleFactoryLoader implements NgModuleFactoryLoader {
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
/**
* A module setting up the router that should be used for testing.
* It provides spy implementations of Location, LocationStrategy, and NgModuleFactoryLoader.
2016-07-07 17:13:32 -04:00
*
* # Example:
*
* ```
* 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
* });
* });
* ```
*
* @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
]
},
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
}