2016-08-03 18:00:07 -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
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {AsyncTestCompleter, afterEach, beforeEach, ddescribe, describe, expect, iit, inject, it, xit} from '@angular/core/testing/testing_internal';
|
|
|
|
import {StringWrapper, isPresent} from '@angular/facade/src/lang';
|
|
|
|
import {Options, ReflectiveInjector, WebDriverExtension} from 'benchpress/common';
|
2015-05-27 17:57:54 -04:00
|
|
|
|
|
|
|
export function main() {
|
2015-10-06 22:05:09 -04:00
|
|
|
function createExtension(ids: any[], caps) {
|
2016-08-02 18:53:34 -04:00
|
|
|
return new Promise<any>((res, rej) => {
|
|
|
|
try {
|
|
|
|
res(ReflectiveInjector
|
|
|
|
.resolveAndCreate([
|
|
|
|
ids.map((id) => { return {provide: id, useValue: new MockExtension(id)}; }),
|
|
|
|
{provide: Options.CAPABILITIES, useValue: caps}, WebDriverExtension.bindTo(ids)
|
|
|
|
])
|
|
|
|
.get(WebDriverExtension));
|
|
|
|
} catch (e) {
|
|
|
|
rej(e);
|
|
|
|
}
|
2015-06-26 18:59:18 -04:00
|
|
|
});
|
2015-05-27 17:57:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
describe('WebDriverExtension.bindTo', () => {
|
|
|
|
|
|
|
|
it('should bind the extension that matches the capabilities',
|
|
|
|
inject([AsyncTestCompleter], (async) => {
|
2016-08-03 18:00:07 -04:00
|
|
|
createExtension(['m1', 'm2', 'm3'], {'browser': 'm2'}).then((m) => {
|
|
|
|
expect(m.id).toEqual('m2');
|
|
|
|
async.done();
|
|
|
|
});
|
2015-05-27 17:57:54 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
it('should throw if there is no match', inject([AsyncTestCompleter], (async) => {
|
2016-08-02 18:53:34 -04:00
|
|
|
createExtension(['m1'], {'browser': 'm2'}).catch((err) => {
|
2015-05-27 17:57:54 -04:00
|
|
|
expect(isPresent(err)).toBe(true);
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
class MockExtension extends WebDriverExtension {
|
|
|
|
id: string;
|
|
|
|
|
|
|
|
constructor(id) {
|
|
|
|
super();
|
|
|
|
this.id = id;
|
|
|
|
}
|
|
|
|
|
2015-10-02 19:47:54 -04:00
|
|
|
supports(capabilities: {[key: string]: any}): boolean {
|
2015-05-27 17:57:54 -04:00
|
|
|
return StringWrapper.equals(capabilities['browser'], this.id);
|
|
|
|
}
|
|
|
|
}
|