2016-04-28 20:50:03 -04:00
|
|
|
import {bind, provide, Provider, Injector, OpaqueToken} from '@angular/core/src/di';
|
2015-05-27 17:57:54 -04:00
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
import {isBlank, isPresent} from '@angular/facade';
|
|
|
|
import {BaseException, WrappedException} from '@angular/facade';
|
2015-05-27 17:57:54 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2015-09-25 17:48:17 -04:00
|
|
|
export abstract class WebDriverExtension {
|
2015-10-11 01:11:13 -04:00
|
|
|
static bindTo(childTokens: any[]): Provider[] {
|
2015-06-26 18:59:18 -04:00
|
|
|
var res = [
|
2016-04-12 12:40:37 -04:00
|
|
|
bind(_CHILDREN)
|
|
|
|
.toFactory((injector: Injector) => childTokens.map(token => injector.get(token)),
|
|
|
|
[Injector]),
|
2015-05-27 17:57:54 -04:00
|
|
|
bind(WebDriverExtension)
|
2015-06-03 16:42:57 -04:00
|
|
|
.toFactory(
|
2015-10-07 12:09:43 -04:00
|
|
|
(children: WebDriverExtension[], capabilities) => {
|
2015-06-03 16:42:57 -04:00
|
|
|
var delegate;
|
2015-10-07 12:09:43 -04:00
|
|
|
children.forEach(extension => {
|
2015-06-03 16:42:57 -04:00
|
|
|
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)
|
|
|
|
**/
|
2015-08-28 14:29:19 -04:00
|
|
|
readPerfLog(): Promise<any[]> { throw new BaseException('NYI'); }
|
2015-05-27 17:57:54 -04:00
|
|
|
|
|
|
|
perfLogFeatures(): PerfLogFeatures { throw new BaseException('NYI'); }
|
|
|
|
|
2015-10-02 19:47:54 -04:00
|
|
|
supports(capabilities: {[key: string]: any}): boolean { return true; }
|
2015-05-27 17:57:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export class PerfLogFeatures {
|
|
|
|
render: boolean;
|
|
|
|
gc: boolean;
|
2015-06-09 18:19:26 -04:00
|
|
|
frameCapture: boolean;
|
2015-12-09 20:15:55 -05:00
|
|
|
userTiming: boolean;
|
2015-05-27 17:57:54 -04:00
|
|
|
|
2015-12-09 20:15:55 -05:00
|
|
|
constructor(
|
|
|
|
{render = false, gc = false, frameCapture = false, userTiming = false}:
|
|
|
|
{render?: boolean, gc?: boolean, frameCapture?: boolean, userTiming?: 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-12-09 20:15:55 -05:00
|
|
|
this.userTiming = userTiming;
|
2015-05-27 17:57:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var _CHILDREN = new OpaqueToken('WebDriverExtension.children');
|