2015-05-20 09:48:15 -07:00
|
|
|
import {Injectable} from 'angular2/di';
|
2015-03-23 16:46:18 -07:00
|
|
|
import {DOM} from 'angular2/src/dom/dom_adapter';
|
|
|
|
import {Map, MapWrapper, List, ListWrapper} from 'angular2/src/facade/collection';
|
|
|
|
import {StringWrapper, isBlank, BaseException} from 'angular2/src/facade/lang';
|
2015-05-20 09:48:15 -07:00
|
|
|
import * as getTestabilityModule from './get_testability';
|
2015-03-23 16:46:18 -07:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Testability service provides testing hooks that can be accessed from
|
|
|
|
* the browser and by services such as Protractor. Each bootstrapped Angular
|
|
|
|
* application on the page will have an instance of Testability.
|
|
|
|
*/
|
2015-03-31 12:36:43 -07:00
|
|
|
@Injectable()
|
2015-03-23 16:46:18 -07:00
|
|
|
export class Testability {
|
|
|
|
_pendingCount: number;
|
2015-05-20 09:48:15 -07:00
|
|
|
_callbacks: List<Function>;
|
2015-03-23 16:46:18 -07:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this._pendingCount = 0;
|
2015-06-17 11:17:21 -07:00
|
|
|
this._callbacks = [];
|
2015-03-23 16:46:18 -07:00
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
increaseCount(delta: number = 1): number {
|
2015-03-23 16:46:18 -07:00
|
|
|
this._pendingCount += delta;
|
|
|
|
if (this._pendingCount < 0) {
|
|
|
|
throw new BaseException('pending async requests below zero');
|
|
|
|
} else if (this._pendingCount == 0) {
|
|
|
|
this._runCallbacks();
|
|
|
|
}
|
|
|
|
return this._pendingCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
_runCallbacks() {
|
|
|
|
while (this._callbacks.length !== 0) {
|
|
|
|
ListWrapper.removeLast(this._callbacks)();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
whenStable(callback: Function) {
|
2015-06-17 11:17:21 -07:00
|
|
|
this._callbacks.push(callback);
|
2015-03-23 16:46:18 -07:00
|
|
|
|
|
|
|
if (this._pendingCount === 0) {
|
|
|
|
this._runCallbacks();
|
|
|
|
}
|
|
|
|
// TODO(juliemr) - hook into the zone api.
|
|
|
|
}
|
|
|
|
|
2015-05-20 09:48:15 -07:00
|
|
|
getPendingCount(): number { return this._pendingCount; }
|
2015-03-23 16:46:18 -07:00
|
|
|
|
2015-07-07 20:03:00 -07:00
|
|
|
findBindings(using: any, binding: string, exactMatch: boolean): List<any> {
|
2015-03-23 16:46:18 -07:00
|
|
|
// TODO(juliemr): implement.
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-31 12:36:43 -07:00
|
|
|
@Injectable()
|
2015-03-23 16:46:18 -07:00
|
|
|
export class TestabilityRegistry {
|
2015-05-20 09:48:15 -07:00
|
|
|
_applications: Map<any, Testability>;
|
2015-03-23 16:46:18 -07:00
|
|
|
|
|
|
|
constructor() {
|
2015-06-17 16:21:40 -07:00
|
|
|
this._applications = new Map();
|
2015-03-23 16:46:18 -07:00
|
|
|
|
|
|
|
getTestabilityModule.GetTestability.addToWindow(this);
|
|
|
|
}
|
|
|
|
|
2015-07-07 20:03:00 -07:00
|
|
|
registerApplication(token: any, testability: Testability) {
|
2015-06-17 16:21:40 -07:00
|
|
|
this._applications.set(token, testability);
|
2015-03-23 16:46:18 -07:00
|
|
|
}
|
|
|
|
|
2015-07-07 20:03:00 -07:00
|
|
|
findTestabilityInTree(elem: Node): Testability {
|
2015-03-23 16:46:18 -07:00
|
|
|
if (elem == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2015-06-17 21:42:56 -07:00
|
|
|
if (this._applications.has(elem)) {
|
2015-06-17 16:21:40 -07:00
|
|
|
return this._applications.get(elem);
|
2015-03-23 16:46:18 -07:00
|
|
|
}
|
|
|
|
if (DOM.isShadowRoot(elem)) {
|
|
|
|
return this.findTestabilityInTree(DOM.getHost(elem));
|
|
|
|
}
|
|
|
|
return this.findTestabilityInTree(DOM.parentElement(elem));
|
|
|
|
}
|
|
|
|
}
|