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';
|
2016-07-20 20:51:21 -04:00
|
|
|
import {MockLocationStrategy, SpyLocation} from '@angular/common/testing';
|
2016-07-18 06:50:31 -04:00
|
|
|
import {Compiler, ComponentResolver, Injectable, Injector, NgModule, NgModuleFactory, NgModuleFactoryLoader} from '@angular/core';
|
2016-07-07 17:13:32 -04:00
|
|
|
|
2016-08-02 16:27:55 -04:00
|
|
|
import {Route, Router, RouterOutletMap, UrlSerializer} from '../index';
|
2016-07-07 17:13:32 -04:00
|
|
|
import {ROUTES} from '../src/router_config_loader';
|
2016-07-27 12:54:19 -04:00
|
|
|
import {ROUTER_PROVIDERS, RouterModule} from '../src/router_module';
|
2016-08-02 16:27:55 -04:00
|
|
|
import {flatten} from '../src/utils/collection';
|
2016-07-07 17:13:32 -04:00
|
|
|
|
|
|
|
|
2016-07-20 20:51:21 -04:00
|
|
|
|
2016-07-07 17:13:32 -04:00
|
|
|
/**
|
2016-07-18 06:50:31 -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.
|
|
|
|
*
|
|
|
|
* @experimental
|
|
|
|
*/
|
|
|
|
@Injectable()
|
2016-07-18 06:50:31 -04:00
|
|
|
export class SpyNgModuleFactoryLoader implements NgModuleFactoryLoader {
|
2016-07-07 17:13:32 -04:00
|
|
|
public stubbedModules: {[path: string]: any} = {};
|
|
|
|
|
|
|
|
constructor(private compiler: Compiler) {}
|
|
|
|
|
2016-07-18 06:50:31 -04:00
|
|
|
load(path: string): Promise<NgModuleFactory<any>> {
|
2016-07-07 17:13:32 -04:00
|
|
|
if (this.stubbedModules[path]) {
|
2016-07-18 06:50:31 -04:00
|
|
|
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}`));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-25 19:10:10 -04:00
|
|
|
function setupTestingRouter(
|
|
|
|
resolver: ComponentResolver, urlSerializer: UrlSerializer, outletMap: RouterOutletMap,
|
2016-08-02 16:27:55 -04:00
|
|
|
location: Location, loader: NgModuleFactoryLoader, injector: Injector, routes: Route[][]) {
|
|
|
|
return new Router(
|
|
|
|
null, resolver, urlSerializer, outletMap, location, injector, loader, flatten(routes));
|
2016-07-25 19:10:10 -04:00
|
|
|
}
|
|
|
|
|
2016-07-07 17:13:32 -04:00
|
|
|
/**
|
|
|
|
* A module setting up the router that should be used for testing.
|
2016-07-18 06:50:31 -04:00
|
|
|
* It provides spy implementations of Location, LocationStrategy, and NgModuleFactoryLoader.
|
2016-07-07 17:13:32 -04:00
|
|
|
*
|
|
|
|
* # Example:
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* beforeEach(() => {
|
|
|
|
* configureModule({
|
2016-07-18 06:50:31 -04:00
|
|
|
* modules: [RouterTestingModule],
|
2016-07-07 17:13:32 -04:00
|
|
|
* providers: [provideRoutes(
|
|
|
|
* [{path: '', component: BlankCmp}, {path: 'simple', component: SimpleCmp}])]
|
|
|
|
* });
|
|
|
|
* });
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @experimental
|
|
|
|
*/
|
2016-07-18 06:50:31 -04:00
|
|
|
@NgModule({
|
|
|
|
exports: [RouterModule],
|
2016-07-07 17:13:32 -04:00
|
|
|
providers: [
|
2016-07-27 12:54:19 -04:00
|
|
|
ROUTER_PROVIDERS,
|
2016-07-07 17:13:32 -04:00
|
|
|
{provide: Location, useClass: SpyLocation},
|
|
|
|
{provide: LocationStrategy, useClass: MockLocationStrategy},
|
2016-07-18 06:50:31 -04:00
|
|
|
{provide: NgModuleFactoryLoader, useClass: SpyNgModuleFactoryLoader},
|
2016-07-07 17:13:32 -04:00
|
|
|
{
|
|
|
|
provide: Router,
|
2016-07-25 19:10:10 -04:00
|
|
|
useFactory: setupTestingRouter,
|
2016-07-07 17:13:32 -04:00
|
|
|
deps: [
|
2016-07-18 06:50:31 -04:00
|
|
|
ComponentResolver, UrlSerializer, RouterOutletMap, Location, NgModuleFactoryLoader,
|
2016-07-07 17:13:32 -04:00
|
|
|
Injector, ROUTES
|
|
|
|
]
|
|
|
|
},
|
|
|
|
]
|
|
|
|
})
|
2016-07-20 14:39:31 -04:00
|
|
|
export class RouterTestingModule {
|
2016-07-07 17:13:32 -04:00
|
|
|
}
|