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;
|
|
|
|
this._callbacks = ListWrapper.create();
|
|
|
|
}
|
|
|
|
|
|
|
|
increaseCount(delta: number = 1) {
|
|
|
|
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) {
|
|
|
|
ListWrapper.push(this._callbacks, callback);
|
|
|
|
|
|
|
|
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-05-20 09:48:15 -07:00
|
|
|
findBindings(using, 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() {
|
|
|
|
this._applications = MapWrapper.create();
|
|
|
|
|
|
|
|
getTestabilityModule.GetTestability.addToWindow(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
registerApplication(token, testability: Testability) {
|
|
|
|
MapWrapper.set(this._applications, token, testability);
|
|
|
|
}
|
|
|
|
|
2015-05-20 09:48:15 -07:00
|
|
|
findTestabilityInTree(elem): Testability {
|
2015-03-23 16:46:18 -07:00
|
|
|
if (elem == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (MapWrapper.contains(this._applications, elem)) {
|
|
|
|
return MapWrapper.get(this._applications, elem);
|
|
|
|
}
|
|
|
|
if (DOM.isShadowRoot(elem)) {
|
|
|
|
return this.findTestabilityInTree(DOM.getHost(elem));
|
|
|
|
}
|
|
|
|
return this.findTestabilityInTree(DOM.parentElement(elem));
|
|
|
|
}
|
|
|
|
}
|