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-10-20 13:44:44 -04:00
|
|
|
import {Compiler, Injectable, Injector, ModuleWithProviders, NgModule, NgModuleFactory, NgModuleFactoryLoader, Optional} from '@angular/core';
|
2017-11-28 19:57:10 -05:00
|
|
|
import {ChildrenOutletContexts, ExtraOptions, NoPreloading, PreloadingStrategy, ROUTER_CONFIGURATION, ROUTES, Route, Router, RouterModule, Routes, UrlHandlingStrategy, UrlSerializer, provideRoutes, ɵROUTER_PROVIDERS as ROUTER_PROVIDERS, ɵflatten as flatten} from '@angular/router';
|
2016-07-20 20:51:21 -04:00
|
|
|
|
2016-09-16 18:08:15 -04:00
|
|
|
|
2016-10-20 13:44:44 -04:00
|
|
|
|
2016-07-07 17:13:32 -04:00
|
|
|
/**
|
2018-04-05 06:38:57 -04:00
|
|
|
* @description
|
2016-09-10 19:53:27 -04:00
|
|
|
*
|
2018-04-05 06:51:21 -04:00
|
|
|
* Allows to simulate the loading of ng modules in tests.
|
|
|
|
*
|
2016-09-10 19:53:27 -04:00
|
|
|
* ```
|
|
|
|
* 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
|
|
|
*
|
2018-10-19 13:25:11 -04:00
|
|
|
* @publicApi
|
2016-07-07 17:13:32 -04:00
|
|
|
*/
|
|
|
|
@Injectable()
|
2016-07-18 06:50:31 -04:00
|
|
|
export class SpyNgModuleFactoryLoader implements NgModuleFactoryLoader {
|
2016-09-10 19:53:27 -04:00
|
|
|
/**
|
|
|
|
* @docsNotRequired
|
|
|
|
*/
|
2016-10-20 13:58:53 -04:00
|
|
|
private _stubbedModules: {[path: string]: Promise<NgModuleFactory<any>>} = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @docsNotRequired
|
|
|
|
*/
|
|
|
|
set stubbedModules(modules: {[path: string]: any}) {
|
|
|
|
const res: {[path: string]: any} = {};
|
2016-11-12 08:08:58 -05:00
|
|
|
for (const t of Object.keys(modules)) {
|
2016-10-20 13:58:53 -04:00
|
|
|
res[t] = this.compiler.compileModuleAsync(modules[t]);
|
|
|
|
}
|
|
|
|
this._stubbedModules = res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @docsNotRequired
|
|
|
|
*/
|
|
|
|
get stubbedModules(): {[path: string]: any} { return this._stubbedModules; }
|
2016-07-07 17:13:32 -04:00
|
|
|
|
|
|
|
constructor(private compiler: Compiler) {}
|
|
|
|
|
2016-07-18 06:50:31 -04:00
|
|
|
load(path: string): Promise<NgModuleFactory<any>> {
|
2016-10-20 13:58:53 -04:00
|
|
|
if (this._stubbedModules[path]) {
|
|
|
|
return this._stubbedModules[path];
|
2016-07-07 17:13:32 -04:00
|
|
|
} else {
|
|
|
|
return <any>Promise.reject(new Error(`Cannot find module ${path}`));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-28 19:57:10 -05:00
|
|
|
function isUrlHandlingStrategy(opts: ExtraOptions | UrlHandlingStrategy):
|
|
|
|
opts is UrlHandlingStrategy {
|
|
|
|
// This property check is needed because UrlHandlingStrategy is an interface and doesn't exist at
|
|
|
|
// runtime.
|
|
|
|
return 'shouldProcessUrl' in opts;
|
|
|
|
}
|
|
|
|
|
2016-08-22 20:37:48 -04:00
|
|
|
/**
|
|
|
|
* Router setup factory function used for testing.
|
|
|
|
*
|
2018-10-19 13:25:11 -04:00
|
|
|
* @publicApi
|
2016-08-22 20:37:48 -04:00
|
|
|
*/
|
|
|
|
export function setupTestingRouter(
|
2017-05-17 20:47:34 -04:00
|
|
|
urlSerializer: UrlSerializer, contexts: ChildrenOutletContexts, location: Location,
|
2016-10-20 13:44:44 -04:00
|
|
|
loader: NgModuleFactoryLoader, compiler: Compiler, injector: Injector, routes: Route[][],
|
2017-11-28 19:57:10 -05:00
|
|
|
opts?: ExtraOptions, urlHandlingStrategy?: UrlHandlingStrategy): Router;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Router setup factory function used for testing.
|
|
|
|
*
|
|
|
|
* @deprecated As of v5.2. The 2nd-to-last argument should be `ExtraOptions`, not
|
|
|
|
* `UrlHandlingStrategy`
|
2018-10-19 13:25:11 -04:00
|
|
|
* @publicApi
|
2017-11-28 19:57:10 -05:00
|
|
|
*/
|
|
|
|
export function setupTestingRouter(
|
|
|
|
urlSerializer: UrlSerializer, contexts: ChildrenOutletContexts, location: Location,
|
|
|
|
loader: NgModuleFactoryLoader, compiler: Compiler, injector: Injector, routes: Route[][],
|
|
|
|
urlHandlingStrategy?: UrlHandlingStrategy): Router;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Router setup factory function used for testing.
|
|
|
|
*
|
2018-10-19 13:25:11 -04:00
|
|
|
* @publicApi
|
2017-11-28 19:57:10 -05:00
|
|
|
*/
|
|
|
|
export function setupTestingRouter(
|
|
|
|
urlSerializer: UrlSerializer, contexts: ChildrenOutletContexts, location: Location,
|
|
|
|
loader: NgModuleFactoryLoader, compiler: Compiler, injector: Injector, routes: Route[][],
|
|
|
|
opts?: ExtraOptions | UrlHandlingStrategy, urlHandlingStrategy?: UrlHandlingStrategy) {
|
2016-10-20 13:44:44 -04:00
|
|
|
const router = new Router(
|
2017-05-17 20:47:34 -04:00
|
|
|
null !, urlSerializer, contexts, location, injector, loader, compiler, flatten(routes));
|
2017-11-28 19:57:10 -05:00
|
|
|
if (opts) {
|
2018-04-10 06:01:07 -04:00
|
|
|
// Handle deprecated argument ordering.
|
2017-11-28 19:57:10 -05:00
|
|
|
if (isUrlHandlingStrategy(opts)) {
|
|
|
|
router.urlHandlingStrategy = opts;
|
2018-04-10 06:01:07 -04:00
|
|
|
} else {
|
|
|
|
// Handle ExtraOptions
|
|
|
|
|
|
|
|
if (opts.malformedUriErrorHandler) {
|
|
|
|
router.malformedUriErrorHandler = opts.malformedUriErrorHandler;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts.paramsInheritanceStrategy) {
|
|
|
|
router.paramsInheritanceStrategy = opts.paramsInheritanceStrategy;
|
|
|
|
}
|
2017-11-28 19:57:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-20 13:44:44 -04:00
|
|
|
if (urlHandlingStrategy) {
|
|
|
|
router.urlHandlingStrategy = urlHandlingStrategy;
|
|
|
|
}
|
|
|
|
return router;
|
2016-07-25 19:10:10 -04:00
|
|
|
}
|
|
|
|
|
2016-07-07 17:13:32 -04:00
|
|
|
/**
|
2018-04-05 06:38:57 -04:00
|
|
|
* @description
|
|
|
|
*
|
2018-04-05 06:51:21 -04:00
|
|
|
* Sets up the router to be used for testing.
|
|
|
|
*
|
2018-04-05 06:38:57 -04:00
|
|
|
* The modules sets up the router to be used for testing.
|
2018-04-05 06:53:57 -04:00
|
|
|
* It provides spy implementations of `Location`, `LocationStrategy`, and {@link
|
2018-04-05 06:38:57 -04:00
|
|
|
* NgModuleFactoryLoader}.
|
|
|
|
*
|
2018-09-20 09:50:32 -04:00
|
|
|
* @usageNotes
|
2018-04-05 06:38:57 -04:00
|
|
|
* ### Example
|
2016-07-07 17:13:32 -04:00
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* beforeEach(() => {
|
2016-08-19 19:01:59 -04:00
|
|
|
* TestBed.configureTestModule({
|
2016-10-06 13:22:39 -04:00
|
|
|
* imports: [
|
2016-08-19 19:01:59 -04:00
|
|
|
* RouterTestingModule.withRoutes(
|
2018-01-03 16:45:17 -05:00
|
|
|
* [{path: '', component: BlankCmp}, {path: 'simple', component: SimpleCmp}]
|
2016-08-19 19:01:59 -04:00
|
|
|
* )
|
|
|
|
* ]
|
2016-07-07 17:13:32 -04:00
|
|
|
* });
|
|
|
|
* });
|
|
|
|
* ```
|
|
|
|
*
|
2018-10-19 13:25:11 -04:00
|
|
|
* @publicApi
|
2016-07-07 17:13:32 -04:00
|
|
|
*/
|
2016-07-18 06:50:31 -04:00
|
|
|
@NgModule({
|
|
|
|
exports: [RouterModule],
|
2016-07-07 17:13:32 -04:00
|
|
|
providers: [
|
2016-08-16 14:15:01 -04:00
|
|
|
ROUTER_PROVIDERS, {provide: Location, useClass: SpyLocation},
|
2016-07-07 17:13:32 -04:00
|
|
|
{provide: LocationStrategy, useClass: MockLocationStrategy},
|
2016-08-16 14:15:01 -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: [
|
2017-05-17 20:47:34 -04:00
|
|
|
UrlSerializer, ChildrenOutletContexts, Location, NgModuleFactoryLoader, Compiler, Injector,
|
2017-11-28 19:57:10 -05:00
|
|
|
ROUTES, ROUTER_CONFIGURATION, [UrlHandlingStrategy, new Optional()]
|
2016-07-07 17:13:32 -04:00
|
|
|
]
|
2016-08-19 19:01:59 -04:00
|
|
|
},
|
2016-09-16 18:08:15 -04:00
|
|
|
{provide: PreloadingStrategy, useExisting: NoPreloading}, provideRoutes([])
|
2016-07-07 17:13:32 -04:00
|
|
|
]
|
|
|
|
})
|
2016-07-20 14:39:31 -04:00
|
|
|
export class RouterTestingModule {
|
2018-07-09 14:36:30 -04:00
|
|
|
static withRoutes(routes: Routes, config?: ExtraOptions):
|
|
|
|
ModuleWithProviders<RouterTestingModule> {
|
2017-11-28 19:57:10 -05:00
|
|
|
return {
|
|
|
|
ngModule: RouterTestingModule,
|
|
|
|
providers: [
|
|
|
|
provideRoutes(routes),
|
|
|
|
{provide: ROUTER_CONFIGURATION, useValue: config ? config : {}},
|
|
|
|
]
|
|
|
|
};
|
2016-08-19 19:01:59 -04:00
|
|
|
}
|
2016-07-07 17:13:32 -04:00
|
|
|
}
|