2015-03-13 06:10:11 -04:00
|
|
|
import {
|
|
|
|
afterEach,
|
|
|
|
AsyncTestCompleter,
|
|
|
|
beforeEach,
|
|
|
|
ddescribe,
|
|
|
|
describe,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
it,
|
|
|
|
xit,
|
|
|
|
} from 'angular2/test_lib';
|
2015-02-20 16:32:54 -05:00
|
|
|
|
|
|
|
import { StringMap, ListWrapper } from 'angular2/src/facade/collection';
|
2015-02-25 20:43:33 -05:00
|
|
|
import { isPresent, StringWrapper } from 'angular2/src/facade/lang';
|
|
|
|
import { PromiseWrapper } from 'angular2/src/facade/async';
|
2015-02-20 16:32:54 -05:00
|
|
|
|
2015-03-02 12:23:09 -05:00
|
|
|
import { WebDriverExtension, bind, Injector, Options } from 'benchpress/common';
|
2015-02-20 16:32:54 -05:00
|
|
|
|
|
|
|
export function main() {
|
|
|
|
function createExtension(ids, caps) {
|
2015-04-10 20:05:31 -04:00
|
|
|
return Injector.resolveAndCreate([
|
2015-02-20 16:32:54 -05:00
|
|
|
ListWrapper.map(ids, (id) => bind(id).toValue(new MockExtension(id)) ),
|
|
|
|
bind(Options.CAPABILITIES).toValue(caps),
|
|
|
|
WebDriverExtension.bindTo(ids)
|
|
|
|
]).asyncGet(WebDriverExtension);
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('WebDriverExtension.bindTo', () => {
|
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
it('should bind the extension that matches the capabilities', inject([AsyncTestCompleter], (async) => {
|
2015-02-20 16:32:54 -05:00
|
|
|
createExtension(['m1', 'm2', 'm3'], {'browser': 'm2'}).then( (m) => {
|
|
|
|
expect(m.id).toEqual('m2');
|
2015-03-13 06:10:11 -04:00
|
|
|
async.done();
|
2015-02-20 16:32:54 -05:00
|
|
|
});
|
2015-03-13 06:10:11 -04:00
|
|
|
}));
|
2015-02-20 16:32:54 -05:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
it('should throw if there is no match', inject([AsyncTestCompleter], (async) => {
|
2015-02-25 20:43:33 -05:00
|
|
|
PromiseWrapper.catchError(
|
|
|
|
createExtension(['m1'], {'browser': 'm2'}),
|
|
|
|
(err) => {
|
2015-02-20 16:32:54 -05:00
|
|
|
expect(isPresent(err)).toBe(true);
|
2015-03-13 06:10:11 -04:00
|
|
|
async.done();
|
2015-02-25 20:43:33 -05:00
|
|
|
}
|
|
|
|
);
|
2015-03-13 06:10:11 -04:00
|
|
|
}));
|
2015-02-20 16:32:54 -05:00
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
class MockExtension extends WebDriverExtension {
|
|
|
|
id:string;
|
|
|
|
|
|
|
|
constructor(id) {
|
|
|
|
super();
|
|
|
|
this.id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
supports(capabilities:StringMap):boolean {
|
|
|
|
return StringWrapper.equals(capabilities['browser'], this.id);
|
|
|
|
}
|
|
|
|
}
|