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

82 lines
2.5 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, NgModule, NgModuleFactory, NgModuleFactoryLoader} from '@angular/core';
2016-07-07 17:13:32 -04:00
import {Route, Router, RouterOutletMap, UrlSerializer} from '../index';
2016-07-07 17:13:32 -04:00
import {ROUTES} from '../src/router_config_loader';
import {ROUTER_PROVIDERS, RouterModule} from '../src/router_module';
import {flatten} from '../src/utils/collection';
2016-07-07 17:13:32 -04:00
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}`));
}
}
}
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(() => {
* configureModule({
* modules: [RouterTestingModule],
2016-07-07 17:13:32 -04:00
* providers: [provideRoutes(
* [{path: '', component: BlankCmp}, {path: 'simple', component: SimpleCmp}])]
* });
* });
* ```
*
* @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
]
}
2016-07-07 17:13:32 -04:00
]
})
export class RouterTestingModule {
2016-07-07 17:13:32 -04:00
}