2016-06-23 12:47:54 -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
|
|
|
|
*/
|
|
|
|
|
2017-03-01 13:28:52 -05:00
|
|
|
import {EventEmitter} from '@angular/core';
|
2016-04-28 20:50:03 -04:00
|
|
|
import {Injectable} from '@angular/core/src/di';
|
2017-09-08 14:50:13 -04:00
|
|
|
import {Testability, TestabilityRegistry} from '@angular/core/src/testability/testability';
|
2016-04-28 20:50:03 -04:00
|
|
|
import {NgZone} from '@angular/core/src/zone/ng_zone';
|
2017-03-02 15:12:46 -05:00
|
|
|
import {AsyncTestCompleter, SpyObject, beforeEach, describe, expect, inject, it} from '@angular/core/testing/src/testing_internal';
|
2016-08-02 18:53:34 -04:00
|
|
|
|
2017-03-01 18:18:10 -05:00
|
|
|
import {scheduleMicroTask} from '../../src/util';
|
2016-08-02 18:53:34 -04:00
|
|
|
|
2015-03-23 19:46:18 -04:00
|
|
|
|
2017-03-01 13:28:52 -05:00
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
// Schedules a task to be run after Testability checks for oustanding tasks. Since Testability
|
|
|
|
// uses a 0 second timeout to check for outstanding tasks we add our 0 second timeout after a
|
|
|
|
// micro task (which ensures Testability's timeout is run first).
|
|
|
|
function afterTestabilityCheck(fn: Function): void {
|
|
|
|
scheduleMicroTask(() => setTimeout(fn));
|
2015-07-24 15:46:12 -04:00
|
|
|
}
|
|
|
|
|
2015-12-03 12:06:42 -05:00
|
|
|
@Injectable()
|
2015-10-08 16:33:22 -04:00
|
|
|
class MockNgZone extends NgZone {
|
2016-07-21 20:12:00 -04:00
|
|
|
/** @internal */
|
2017-07-01 13:29:56 -04:00
|
|
|
onUnstable: EventEmitter<any>;
|
2015-07-24 15:46:12 -04:00
|
|
|
|
2016-07-21 20:12:00 -04:00
|
|
|
/** @internal */
|
2017-07-01 13:29:56 -04:00
|
|
|
onStable: EventEmitter<any>;
|
2015-07-24 15:46:12 -04:00
|
|
|
|
2015-11-03 21:45:55 -05:00
|
|
|
constructor() {
|
|
|
|
super({enableLongStackTrace: false});
|
2017-07-01 13:29:56 -04:00
|
|
|
this.onUnstable = new EventEmitter(false);
|
|
|
|
this.onStable = new EventEmitter(false);
|
2015-07-24 15:46:12 -04:00
|
|
|
}
|
|
|
|
|
2017-07-01 13:29:56 -04:00
|
|
|
unstable(): void { this.onUnstable.emit(null); }
|
2015-11-03 21:45:55 -05:00
|
|
|
|
2017-07-01 13:29:56 -04:00
|
|
|
stable(): void { this.onStable.emit(null); }
|
2015-07-24 15:46:12 -04:00
|
|
|
}
|
2015-03-23 19:46:18 -04:00
|
|
|
|
2017-12-15 19:28:41 -05:00
|
|
|
{
|
2015-03-23 19:46:18 -04:00
|
|
|
describe('Testability', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
let testability: Testability;
|
|
|
|
let execute: any;
|
|
|
|
let execute2: any;
|
|
|
|
let ngZone: MockNgZone;
|
2015-03-23 19:46:18 -04:00
|
|
|
|
|
|
|
beforeEach(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
ngZone = new MockNgZone();
|
|
|
|
testability = new Testability(ngZone);
|
|
|
|
execute = new SpyObject().spy('execute');
|
2016-01-05 15:56:24 -05:00
|
|
|
execute2 = new SpyObject().spy('execute');
|
2015-03-23 19:46:18 -04:00
|
|
|
});
|
|
|
|
|
2015-07-24 15:46:12 -04:00
|
|
|
describe('Pending count logic', () => {
|
|
|
|
it('should start with a pending count of 0',
|
|
|
|
() => { expect(testability.getPendingRequestCount()).toEqual(0); });
|
2015-03-23 19:46:18 -04:00
|
|
|
|
2015-07-24 15:46:12 -04:00
|
|
|
it('should fire whenstable callbacks if pending count is 0',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2015-07-24 15:46:12 -04:00
|
|
|
testability.whenStable(execute);
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).toHaveBeenCalled();
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should not fire whenstable callbacks synchronously if pending count is 0', () => {
|
|
|
|
testability.whenStable(execute);
|
|
|
|
expect(execute).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not call whenstable callbacks when there are pending counts',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2015-07-24 15:46:12 -04:00
|
|
|
testability.increasePendingRequestCount();
|
|
|
|
testability.increasePendingRequestCount();
|
|
|
|
testability.whenStable(execute);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).not.toHaveBeenCalled();
|
|
|
|
testability.decreasePendingRequestCount();
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).not.toHaveBeenCalled();
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should fire whenstable callbacks when pending drops to 0',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2015-07-24 15:46:12 -04:00
|
|
|
testability.increasePendingRequestCount();
|
|
|
|
testability.whenStable(execute);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).not.toHaveBeenCalled();
|
|
|
|
testability.decreasePendingRequestCount();
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).toHaveBeenCalled();
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
2015-03-23 19:46:18 -04:00
|
|
|
|
2015-07-24 15:46:12 -04:00
|
|
|
it('should not fire whenstable callbacks synchronously when pending drops to 0', () => {
|
|
|
|
testability.increasePendingRequestCount();
|
|
|
|
testability.whenStable(execute);
|
|
|
|
testability.decreasePendingRequestCount();
|
2015-03-23 19:46:18 -04:00
|
|
|
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).not.toHaveBeenCalled();
|
|
|
|
});
|
2016-01-05 15:56:24 -05:00
|
|
|
|
|
|
|
it('should fire whenstable callbacks with didWork if pending count is 0',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-01-05 15:56:24 -05:00
|
|
|
testability.whenStable(execute);
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2016-01-05 15:56:24 -05:00
|
|
|
expect(execute).toHaveBeenCalledWith(false);
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should fire whenstable callbacks with didWork when pending drops to 0',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-01-05 15:56:24 -05:00
|
|
|
testability.increasePendingRequestCount();
|
|
|
|
testability.whenStable(execute);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2016-01-05 15:56:24 -05:00
|
|
|
testability.decreasePendingRequestCount();
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2016-01-05 15:56:24 -05:00
|
|
|
expect(execute).toHaveBeenCalledWith(true);
|
|
|
|
testability.whenStable(execute2);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2016-01-05 15:56:24 -05:00
|
|
|
expect(execute2).toHaveBeenCalledWith(false);
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
2015-03-23 19:46:18 -04:00
|
|
|
});
|
|
|
|
|
2015-07-24 15:46:12 -04:00
|
|
|
describe('NgZone callback logic', () => {
|
|
|
|
it('should fire whenstable callback if event is already finished',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.unstable();
|
|
|
|
ngZone.stable();
|
2015-07-24 15:46:12 -04:00
|
|
|
testability.whenStable(execute);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).toHaveBeenCalled();
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should not fire whenstable callbacks synchronously if event is already finished', () => {
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.unstable();
|
|
|
|
ngZone.stable();
|
2015-07-24 15:46:12 -04:00
|
|
|
testability.whenStable(execute);
|
|
|
|
|
|
|
|
expect(execute).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should fire whenstable callback when event finishes',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.unstable();
|
2015-07-24 15:46:12 -04:00
|
|
|
testability.whenStable(execute);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).not.toHaveBeenCalled();
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.stable();
|
2015-07-24 15:46:12 -04:00
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).toHaveBeenCalled();
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should not fire whenstable callbacks synchronously when event finishes', () => {
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.unstable();
|
2015-07-24 15:46:12 -04:00
|
|
|
testability.whenStable(execute);
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.stable();
|
2015-07-24 15:46:12 -04:00
|
|
|
|
|
|
|
expect(execute).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not fire whenstable callback when event did not finish',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.unstable();
|
2015-07-24 15:46:12 -04:00
|
|
|
testability.increasePendingRequestCount();
|
|
|
|
testability.whenStable(execute);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).not.toHaveBeenCalled();
|
|
|
|
testability.decreasePendingRequestCount();
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).not.toHaveBeenCalled();
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.stable();
|
2015-07-24 15:46:12 -04:00
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).toHaveBeenCalled();
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should not fire whenstable callback when there are pending counts',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.unstable();
|
2015-07-24 15:46:12 -04:00
|
|
|
testability.increasePendingRequestCount();
|
|
|
|
testability.increasePendingRequestCount();
|
|
|
|
testability.whenStable(execute);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).not.toHaveBeenCalled();
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.stable();
|
2015-07-24 15:46:12 -04:00
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).not.toHaveBeenCalled();
|
|
|
|
testability.decreasePendingRequestCount();
|
2015-03-23 19:46:18 -04:00
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).not.toHaveBeenCalled();
|
|
|
|
testability.decreasePendingRequestCount();
|
2015-03-23 19:46:18 -04:00
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2015-07-24 15:46:12 -04:00
|
|
|
expect(execute).toHaveBeenCalled();
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
2016-01-05 15:56:24 -05:00
|
|
|
|
|
|
|
it('should fire whenstable callback with didWork if event is already finished',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.unstable();
|
|
|
|
ngZone.stable();
|
2016-01-05 15:56:24 -05:00
|
|
|
testability.whenStable(execute);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2016-01-05 15:56:24 -05:00
|
|
|
expect(execute).toHaveBeenCalledWith(true);
|
|
|
|
testability.whenStable(execute2);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2016-01-05 15:56:24 -05:00
|
|
|
expect(execute2).toHaveBeenCalledWith(false);
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should fire whenstable callback with didwork when event finishes',
|
2016-06-09 14:04:15 -04:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.unstable();
|
2016-01-05 15:56:24 -05:00
|
|
|
testability.whenStable(execute);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2016-02-25 17:24:17 -05:00
|
|
|
ngZone.stable();
|
2016-01-05 15:56:24 -05:00
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2016-01-05 15:56:24 -05:00
|
|
|
expect(execute).toHaveBeenCalledWith(true);
|
|
|
|
testability.whenStable(execute2);
|
|
|
|
|
2017-12-10 11:08:12 -05:00
|
|
|
afterTestabilityCheck(() => {
|
2016-01-05 15:56:24 -05:00
|
|
|
expect(execute2).toHaveBeenCalledWith(false);
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
2015-03-23 19:46:18 -04:00
|
|
|
});
|
|
|
|
});
|
2017-09-08 14:50:13 -04:00
|
|
|
|
|
|
|
describe('TestabilityRegistry', () => {
|
|
|
|
let testability1: Testability;
|
|
|
|
let testability2: Testability;
|
|
|
|
let resgitry: TestabilityRegistry;
|
|
|
|
let ngZone: MockNgZone;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
ngZone = new MockNgZone();
|
|
|
|
testability1 = new Testability(ngZone);
|
|
|
|
testability2 = new Testability(ngZone);
|
|
|
|
resgitry = new TestabilityRegistry();
|
|
|
|
});
|
|
|
|
describe('unregister testability', () => {
|
|
|
|
it('should remove the testability when unregistering an existing testability', () => {
|
|
|
|
resgitry.registerApplication('testability1', testability1);
|
|
|
|
resgitry.registerApplication('testability2', testability2);
|
|
|
|
resgitry.unregisterApplication('testability2');
|
|
|
|
expect(resgitry.getAllTestabilities().length).toEqual(1);
|
|
|
|
expect(resgitry.getTestability('testability1')).toEqual(testability1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should remain the same when unregistering a non-existing testability', () => {
|
|
|
|
expect(resgitry.getAllTestabilities().length).toEqual(0);
|
|
|
|
resgitry.registerApplication('testability1', testability1);
|
|
|
|
resgitry.registerApplication('testability2', testability2);
|
|
|
|
resgitry.unregisterApplication('testability3');
|
|
|
|
expect(resgitry.getAllTestabilities().length).toEqual(2);
|
|
|
|
expect(resgitry.getTestability('testability1')).toEqual(testability1);
|
|
|
|
expect(resgitry.getTestability('testability2')).toEqual(testability2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should remove all the testability when unregistering all testabilities', () => {
|
|
|
|
resgitry.registerApplication('testability1', testability1);
|
|
|
|
resgitry.registerApplication('testability2', testability2);
|
|
|
|
resgitry.unregisterAllApplications();
|
|
|
|
expect(resgitry.getAllTestabilities().length).toEqual(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-03-23 19:46:18 -04:00
|
|
|
}
|