Files
appium/test/utils-specs.js
Dan Graham 050db9880a Fall back to MJSONWP if W3C is invalid (#10034)
* If processCapabilities throws error, then log a warning that it was invalid and log the message and fall back to using jsonwpCaps
2018-01-18 18:07:56 -08:00

138 lines
5.9 KiB
JavaScript

import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
import { parseCapsForInnerDriver, insertAppiumPrefixes } from '../lib/utils';
import { BASE_CAPS, W3C_CAPS } from './helpers';
const should = chai.should();
chai.use(chaiAsPromised);
describe('utils', function () {
describe('parseCapsForInnerDriver()', function () {
it('should return JSONWP caps unchanged if only JSONWP caps provided', function () {
let {desiredCaps, processedJsonwpCapabilities, processedW3CCapabilities} = parseCapsForInnerDriver(BASE_CAPS);
desiredCaps.should.deep.equal(BASE_CAPS);
processedJsonwpCapabilities.should.deep.equal(BASE_CAPS);
should.not.exist(processedW3CCapabilities);
});
it('should return W3C caps unchanged if only W3C caps were provided', function () {
let {desiredCaps, processedJsonwpCapabilities, processedW3CCapabilities} = parseCapsForInnerDriver(undefined, W3C_CAPS);
desiredCaps.should.deep.equal(BASE_CAPS);
should.not.exist(processedJsonwpCapabilities);
processedW3CCapabilities.should.deep.equal(W3C_CAPS);
});
it('should return JSONWP and W3C caps if both were provided', function () {
let {desiredCaps, processedJsonwpCapabilities, processedW3CCapabilities} = parseCapsForInnerDriver(BASE_CAPS, W3C_CAPS);
desiredCaps.should.deep.equal(BASE_CAPS);
processedJsonwpCapabilities.should.deep.equal(BASE_CAPS);
processedW3CCapabilities.should.deep.equal(W3C_CAPS);
});
it('should include default capabilities in results', function () {
let {desiredCaps, processedJsonwpCapabilities, processedW3CCapabilities} = parseCapsForInnerDriver(BASE_CAPS, W3C_CAPS, {}, {foo: 'bar'});
desiredCaps.should.deep.equal({foo: 'bar', ...BASE_CAPS});
processedJsonwpCapabilities.should.deep.equal({foo: 'bar', ...BASE_CAPS});
processedW3CCapabilities.alwaysMatch.should.deep.equal({'appium:foo': 'bar', ...insertAppiumPrefixes(BASE_CAPS)});
});
it('should reject if W3C caps are not passing constraints', function () {
(() => parseCapsForInnerDriver(undefined, W3C_CAPS, {hello: {presence: true}})).should.throw(/'hello' can't be blank/);
});
it('should only accept W3C caps that have passing constraints', function () {
let w3cCaps = {
...W3C_CAPS,
firstMatch: [
{foo: 'bar'},
{hello: 'world'},
],
};
let {desiredCaps, processedJsonwpCapabilities, processedW3CCapabilities} = parseCapsForInnerDriver(BASE_CAPS, w3cCaps, {hello: {presence: true}});
const expectedResult = {hello: 'world', ...BASE_CAPS};
desiredCaps.should.deep.equal(expectedResult);
processedJsonwpCapabilities.should.deep.equal({...BASE_CAPS});
processedW3CCapabilities.alwaysMatch.should.deep.equal(insertAppiumPrefixes(expectedResult));
});
it('should add appium prefixes to W3C caps that are not standard in W3C', function () {
parseCapsForInnerDriver(undefined, {
alwaysMatch: {platformName: 'Fake', propertyName: 'PROP_NAME'},
}).processedW3CCapabilities.should.deep.equal({
alwaysMatch: {
platformName: 'Fake',
'appium:propertyName': 'PROP_NAME',
},
firstMatch: [{}],
});
});
it('should fall back to MJSONWP caps if MJSONWP contains extraneous caps that aren not in W3C', function () {
let jsonwpCaps = {
...BASE_CAPS,
automationName: 'Fake',
};
const {desiredCaps, processedJsonwpCapabilities, processedW3CCapabilities} = parseCapsForInnerDriver(jsonwpCaps, {
alwaysMatch: {platformName: 'Fake', propertyName: 'PROP_NAME'},
});
should.not.exist(processedW3CCapabilities);
desiredCaps.should.eql(jsonwpCaps);
processedJsonwpCapabilities.should.eql(jsonwpCaps);
});
it('should fall back to MJSONWP caps if W3C capabilities are invalid', function () {
let w3cCapabilities = {
alwaysMatch: {platformName: 'Fake', propertyName: 'PROP_NAME'},
};
let constraints = {
deviceName: {
presence: true,
}
};
const {desiredCaps, processedJsonwpCapabilities, processedW3CCapabilities} = parseCapsForInnerDriver({...BASE_CAPS}, w3cCapabilities, constraints);
should.not.exist(processedW3CCapabilities);
desiredCaps.should.eql(BASE_CAPS);
processedJsonwpCapabilities.should.eql(BASE_CAPS);
});
});
describe('insertAppiumPrefixes()', function () {
it('should apply prefixes to non-standard capabilities', function () {
insertAppiumPrefixes({
someCap: 'someCap',
}).should.deep.equal({
'appium:someCap': 'someCap',
});
});
it('should not apply prefixes to standard capabilities', function () {
insertAppiumPrefixes({
browserName: 'BrowserName',
platformName: 'PlatformName',
}).should.deep.equal({
browserName: 'BrowserName',
platformName: 'PlatformName',
});
});
it('should not apply prefixes to capabilities that already have a prefix', function () {
insertAppiumPrefixes({
'appium:someCap': 'someCap',
'moz:someOtherCap': 'someOtherCap',
}).should.deep.equal({
'appium:someCap': 'someCap',
'moz:someOtherCap': 'someOtherCap',
});
});
it('should apply prefixes to non-prefixed, non-standard capabilities; should not apply prefixes to any other capabilities', function () {
insertAppiumPrefixes({
'appium:someCap': 'someCap',
'moz:someOtherCap': 'someOtherCap',
browserName: 'BrowserName',
platformName: 'PlatformName',
someOtherCap: 'someOtherCap',
yetAnotherCap: 'yetAnotherCap',
}).should.deep.equal({
'appium:someCap': 'someCap',
'moz:someOtherCap': 'someOtherCap',
browserName: 'BrowserName',
platformName: 'PlatformName',
'appium:someOtherCap': 'someOtherCap',
'appium:yetAnotherCap': 'yetAnotherCap',
});
});
});
});