205 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			205 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @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 {AsyncTestCompleter} from './async_test_completer';
 | |
| import {StringMapWrapper} from './facade/collection';
 | |
| import {global} from './facade/lang';
 | |
| import {isPromise} from './private_import_core';
 | |
| import {getTestBed, inject} from './test_bed';
 | |
| 
 | |
| export {AsyncTestCompleter} from './async_test_completer';
 | |
| export {MockAnimationPlayer} from './mock_animation_player';
 | |
| export {inject} from './test_bed';
 | |
| 
 | |
| export * from './logger';
 | |
| export * from './ng_zone_mock';
 | |
| 
 | |
| export var proxy: ClassDecorator = (t: any) => t;
 | |
| 
 | |
| var _global = <any>(typeof window === 'undefined' ? global : window);
 | |
| 
 | |
| export var afterEach: Function = _global.afterEach;
 | |
| export var expect: (actual: any) => jasmine.Matchers = _global.expect;
 | |
| 
 | |
| var jsmBeforeEach = _global.beforeEach;
 | |
| var jsmDescribe = _global.describe;
 | |
| var jsmDDescribe = _global.fdescribe;
 | |
| var jsmXDescribe = _global.xdescribe;
 | |
| var jsmIt = _global.it;
 | |
| var jsmIIt = _global.fit;
 | |
| var jsmXIt = _global.xit;
 | |
| 
 | |
| var runnerStack: BeforeEachRunner[] = [];
 | |
| jasmine.DEFAULT_TIMEOUT_INTERVAL = 3000;
 | |
| var globalTimeOut = jasmine.DEFAULT_TIMEOUT_INTERVAL;
 | |
| 
 | |
| var testBed = getTestBed();
 | |
| 
 | |
| /**
 | |
|  * Mechanism to run `beforeEach()` functions of Angular tests.
 | |
|  *
 | |
|  * Note: Jasmine own `beforeEach` is used by this library to handle DI providers.
 | |
|  */
 | |
| class BeforeEachRunner {
 | |
|   private _fns: Array<Function> = [];
 | |
| 
 | |
|   constructor(private _parent: BeforeEachRunner) {}
 | |
| 
 | |
|   beforeEach(fn: Function): void { this._fns.push(fn); }
 | |
| 
 | |
|   run(): void {
 | |
|     if (this._parent) this._parent.run();
 | |
|     this._fns.forEach((fn) => { fn(); });
 | |
|   }
 | |
| }
 | |
| 
 | |
| // Reset the test providers before each test
 | |
| jsmBeforeEach(() => { testBed.resetTestingModule(); });
 | |
| 
 | |
| function _describe(jsmFn: Function, ...args: any[]) {
 | |
|   var parentRunner = runnerStack.length === 0 ? null : runnerStack[runnerStack.length - 1];
 | |
|   var runner = new BeforeEachRunner(parentRunner);
 | |
|   runnerStack.push(runner);
 | |
|   var suite = jsmFn(...args);
 | |
|   runnerStack.pop();
 | |
|   return suite;
 | |
| }
 | |
| 
 | |
| export function describe(...args: any[]): void {
 | |
|   return _describe(jsmDescribe, ...args);
 | |
| }
 | |
| 
 | |
| export function ddescribe(...args: any[]): void {
 | |
|   return _describe(jsmDDescribe, ...args);
 | |
| }
 | |
| 
 | |
| export function xdescribe(...args: any[]): void {
 | |
|   return _describe(jsmXDescribe, ...args);
 | |
| }
 | |
| 
 | |
| export function beforeEach(fn: Function): void {
 | |
|   if (runnerStack.length > 0) {
 | |
|     // Inside a describe block, beforeEach() uses a BeforeEachRunner
 | |
|     runnerStack[runnerStack.length - 1].beforeEach(fn);
 | |
|   } else {
 | |
|     // Top level beforeEach() are delegated to jasmine
 | |
|     jsmBeforeEach(fn);
 | |
|   }
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * Allows overriding default providers defined in test_injector.js.
 | |
|  *
 | |
|  * The given function must return a list of DI providers.
 | |
|  *
 | |
|  * Example:
 | |
|  *
 | |
|  *   beforeEachProviders(() => [
 | |
|  *     {provide: Compiler, useClass: MockCompiler},
 | |
|  *     {provide: SomeToken, useValue: myValue},
 | |
|  *   ]);
 | |
|  */
 | |
| export function beforeEachProviders(fn: Function): void {
 | |
|   jsmBeforeEach(() => {
 | |
|     var providers = fn();
 | |
|     if (!providers) return;
 | |
|     testBed.configureTestingModule({providers: providers});
 | |
|   });
 | |
| }
 | |
| 
 | |
| 
 | |
| function _it(jsmFn: Function, name: string, testFn: Function, testTimeOut: number): void {
 | |
|   if (runnerStack.length == 0) {
 | |
|     // This left here intentionally, as we should never get here, and it aids debugging.
 | |
|     debugger;
 | |
|     throw new Error('Empty Stack!');
 | |
|   }
 | |
|   var runner = runnerStack[runnerStack.length - 1];
 | |
|   var timeOut = Math.max(globalTimeOut, testTimeOut);
 | |
| 
 | |
|   jsmFn(name, (done: any) => {
 | |
|     var completerProvider = {
 | |
|       provide: AsyncTestCompleter,
 | |
|       useFactory: () => {
 | |
|         // Mark the test as async when an AsyncTestCompleter is injected in an it()
 | |
|         return new AsyncTestCompleter();
 | |
|       }
 | |
|     };
 | |
|     testBed.configureTestingModule({providers: [completerProvider]});
 | |
|     runner.run();
 | |
| 
 | |
|     if (testFn.length == 0) {
 | |
|       let retVal = testFn();
 | |
|       if (isPromise(retVal)) {
 | |
|         // Asynchronous test function that returns a Promise - wait for completion.
 | |
|         (<Promise<any>>retVal).then(done, done.fail);
 | |
|       } else {
 | |
|         // Synchronous test function - complete immediately.
 | |
|         done();
 | |
|       }
 | |
|     } else {
 | |
|       // Asynchronous test function that takes in 'done' parameter.
 | |
|       testFn(done);
 | |
|     }
 | |
|   }, timeOut);
 | |
| }
 | |
| 
 | |
| export function it(name: any, fn: any, timeOut: any = null): void {
 | |
|   return _it(jsmIt, name, fn, timeOut);
 | |
| }
 | |
| 
 | |
| export function xit(name: any, fn: any, timeOut: any = null): void {
 | |
|   return _it(jsmXIt, name, fn, timeOut);
 | |
| }
 | |
| 
 | |
| export function iit(name: any, fn: any, timeOut: any = null): void {
 | |
|   return _it(jsmIIt, name, fn, timeOut);
 | |
| }
 | |
| 
 | |
| export class SpyObject {
 | |
|   constructor(type?: any) {
 | |
|     if (type) {
 | |
|       for (let prop in type.prototype) {
 | |
|         let m: any = null;
 | |
|         try {
 | |
|           m = type.prototype[prop];
 | |
|         } catch (e) {
 | |
|           // As we are creating spys for abstract classes,
 | |
|           // these classes might have getters that throw when they are accessed.
 | |
|           // As we are only auto creating spys for methods, this
 | |
|           // should not matter.
 | |
|         }
 | |
|         if (typeof m === 'function') {
 | |
|           this.spy(prop);
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   spy(name: string) {
 | |
|     if (!(this as any)[name]) {
 | |
|       (this as any)[name] = jasmine.createSpy(name);
 | |
|     }
 | |
|     return (this as any)[name];
 | |
|   }
 | |
| 
 | |
|   prop(name: string, value: any) { (this as any)[name] = value; }
 | |
| 
 | |
|   static stub(object: any = null, config: any = null, overrides: any = null) {
 | |
|     if (!(object instanceof SpyObject)) {
 | |
|       overrides = config;
 | |
|       config = object;
 | |
|       object = new SpyObject();
 | |
|     }
 | |
| 
 | |
|     var m = StringMapWrapper.merge(config, overrides);
 | |
|     Object.keys(m).forEach(key => { object.spy(key).and.returnValue(m[key]); });
 | |
|     return object;
 | |
|   }
 | |
| }
 |