2015-05-27 17:57:54 -04:00
|
|
|
import {bind, Binding, Injector, OpaqueToken} from 'angular2/di';
|
|
|
|
|
|
|
|
import {BaseException, ABSTRACT, isBlank, isPresent} from 'angular2/src/facade/lang';
|
|
|
|
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
|
|
|
|
import {List, ListWrapper, StringMap} from 'angular2/src/facade/collection';
|
|
|
|
|
|
|
|
import {Options} from './common_options';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A WebDriverExtension implements extended commands of the webdriver protocol
|
|
|
|
* for a given browser, independent of the WebDriverAdapter.
|
|
|
|
* Needs one implementation for every supported Browser.
|
|
|
|
*/
|
|
|
|
@ABSTRACT()
|
|
|
|
export class WebDriverExtension {
|
|
|
|
static bindTo(childTokens): List<Binding> {
|
2015-06-26 18:59:18 -04:00
|
|
|
var res = [
|
2015-05-27 17:57:54 -04:00
|
|
|
bind(_CHILDREN)
|
2015-06-26 18:59:18 -04:00
|
|
|
.toFactory(
|
|
|
|
(injector: Injector) => ListWrapper.map(childTokens, (token) => injector.get(token)),
|
|
|
|
[Injector]),
|
2015-05-27 17:57:54 -04:00
|
|
|
bind(WebDriverExtension)
|
2015-06-03 16:42:57 -04:00
|
|
|
.toFactory(
|
|
|
|
(children, capabilities) => {
|
|
|
|
var delegate;
|
|
|
|
ListWrapper.forEach(children, (extension) => {
|
|
|
|
if (extension.supports(capabilities)) {
|
|
|
|
delegate = extension;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (isBlank(delegate)) {
|
|
|
|
throw new BaseException('Could not find a delegate for given capabilities!');
|
|
|
|
}
|
|
|
|
return delegate;
|
|
|
|
},
|
|
|
|
[_CHILDREN, Options.CAPABILITIES])
|
2015-05-27 17:57:54 -04:00
|
|
|
];
|
2015-06-26 18:59:18 -04:00
|
|
|
return res;
|
2015-05-27 17:57:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gc(): Promise<any> { throw new BaseException('NYI'); }
|
|
|
|
|
|
|
|
timeBegin(name: string): Promise<any> { throw new BaseException('NYI'); }
|
|
|
|
|
|
|
|
timeEnd(name: string, restartName: string): Promise<any> { throw new BaseException('NYI'); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format:
|
|
|
|
* - cat: category of the event
|
|
|
|
* - name: event name: 'script', 'gc', 'render', ...
|
|
|
|
* - ph: phase: 'B' (begin), 'E' (end), 'b' (nestable start), 'e' (nestable end), 'X' (Complete
|
|
|
|
*event)
|
|
|
|
* - ts: timestamp in ms, e.g. 12345
|
|
|
|
* - pid: process id
|
|
|
|
* - args: arguments, e.g. {heapSize: 1234}
|
|
|
|
*
|
|
|
|
* Based on [Chrome Trace Event
|
|
|
|
*Format](https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/edit)
|
|
|
|
**/
|
|
|
|
readPerfLog(): Promise<List<any>> { throw new BaseException('NYI'); }
|
|
|
|
|
|
|
|
perfLogFeatures(): PerfLogFeatures { throw new BaseException('NYI'); }
|
|
|
|
|
|
|
|
supports(capabilities: StringMap<string, any>): boolean { return true; }
|
|
|
|
}
|
|
|
|
|
|
|
|
export class PerfLogFeatures {
|
|
|
|
render: boolean;
|
|
|
|
gc: boolean;
|
2015-06-09 18:19:26 -04:00
|
|
|
frameCapture: boolean;
|
2015-05-27 17:57:54 -04:00
|
|
|
|
2015-07-10 05:29:41 -04:00
|
|
|
constructor({render = false, gc = false, frameCapture = false}:
|
|
|
|
{render?: boolean, gc?: boolean, frameCapture?: boolean} = {}) {
|
2015-05-27 17:57:54 -04:00
|
|
|
this.render = render;
|
|
|
|
this.gc = gc;
|
2015-06-09 18:19:26 -04:00
|
|
|
this.frameCapture = frameCapture;
|
2015-05-27 17:57:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var _CHILDREN = new OpaqueToken('WebDriverExtension.children');
|