2016-12-31 15:21:34 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const {utils: Cu} = Components;
|
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/Preferences.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
|
|
|
|
Cu.import("chrome://marionette/content/error.js");
|
|
|
|
Cu.import("chrome://marionette/content/session.js");
|
|
|
|
|
|
|
|
add_test(function test_Timeouts_ctor() {
|
|
|
|
let ts = new session.Timeouts();
|
|
|
|
equal(ts.implicit, 0);
|
|
|
|
equal(ts.pageLoad, 300000);
|
|
|
|
equal(ts.script, 30000);
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Timeouts_toString() {
|
|
|
|
equal(new session.Timeouts().toString(), "[object session.Timeouts]");
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Timeouts_toJSON() {
|
|
|
|
let ts = new session.Timeouts();
|
2017-02-23 21:33:26 +03:00
|
|
|
deepEqual(ts.toJSON(), {"implicit": 0, "pageLoad": 300000, "script": 30000});
|
2016-12-31 15:21:34 +03:00
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Timeouts_fromJSON() {
|
|
|
|
let json = {
|
2017-02-23 21:33:26 +03:00
|
|
|
implicit: 10,
|
|
|
|
pageLoad: 20,
|
|
|
|
script: 30,
|
2016-12-31 15:21:34 +03:00
|
|
|
};
|
|
|
|
let ts = session.Timeouts.fromJSON(json);
|
2017-02-23 21:33:26 +03:00
|
|
|
equal(ts.implicit, json.implicit);
|
|
|
|
equal(ts.pageLoad, json.pageLoad);
|
|
|
|
equal(ts.script, json.script);
|
2016-12-31 15:21:34 +03:00
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
2017-04-11 16:57:01 +03:00
|
|
|
add_test(function test_Timeouts_fromJSON_unrecognised_field() {
|
|
|
|
let json = {
|
|
|
|
sessionId: "foobar",
|
|
|
|
script: 42,
|
|
|
|
};
|
|
|
|
try {
|
|
|
|
session.Timeouts.fromJSON(json);
|
|
|
|
} catch (e) {
|
|
|
|
equal(e.name, InvalidArgumentError.name);
|
|
|
|
equal(e.message, "Unrecognised timeout: sessionId");
|
|
|
|
}
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Timeouts_fromJSON_invalid_type() {
|
|
|
|
try {
|
|
|
|
session.Timeouts.fromJSON({script: "foobar"});
|
|
|
|
} catch (e) {
|
|
|
|
equal(e.name, InvalidArgumentError.name);
|
|
|
|
equal(e.message, "Expected [object String] \"foobar\" to be an integer");
|
|
|
|
}
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Timeouts_fromJSON_bounds() {
|
|
|
|
try {
|
|
|
|
session.Timeouts.fromJSON({script: -42});
|
|
|
|
} catch (e) {
|
|
|
|
equal(e.name, InvalidArgumentError.name);
|
|
|
|
equal(e.message, "Expected [object Number] -42 to be >= 0");
|
|
|
|
}
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
2016-12-31 15:21:34 +03:00
|
|
|
add_test(function test_PageLoadStrategy() {
|
|
|
|
equal(session.PageLoadStrategy.None, "none");
|
|
|
|
equal(session.PageLoadStrategy.Eager, "eager");
|
|
|
|
equal(session.PageLoadStrategy.Normal, "normal");
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Proxy_ctor() {
|
|
|
|
let p = new session.Proxy();
|
|
|
|
let props = [
|
|
|
|
"proxyType",
|
|
|
|
"httpProxy",
|
|
|
|
"sslProxy",
|
|
|
|
"ftpProxy",
|
|
|
|
"socksProxy",
|
|
|
|
"socksVersion",
|
|
|
|
"proxyAutoconfigUrl",
|
|
|
|
];
|
|
|
|
for (let prop of props) {
|
|
|
|
ok(prop in p, `${prop} in ${JSON.stringify(props)}`);
|
|
|
|
equal(p[prop], null);
|
|
|
|
}
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Proxy_init() {
|
|
|
|
let p = new session.Proxy();
|
|
|
|
|
|
|
|
// no changed made, and 5 (system) is default
|
|
|
|
equal(p.init(), false);
|
|
|
|
equal(Preferences.get("network.proxy.type"), 5);
|
|
|
|
|
|
|
|
// pac
|
|
|
|
p.proxyType = "pac";
|
|
|
|
p.proxyAutoconfigUrl = "http://localhost:1234";
|
|
|
|
ok(p.init());
|
|
|
|
|
|
|
|
equal(Preferences.get("network.proxy.type"), 2);
|
|
|
|
equal(Preferences.get("network.proxy.autoconfig_url"),
|
|
|
|
"http://localhost:1234");
|
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
// direct
|
|
|
|
p = new session.Proxy();
|
|
|
|
p.proxyType = "direct";
|
|
|
|
ok(p.init());
|
|
|
|
equal(Preferences.get("network.proxy.type"), 0);
|
|
|
|
|
2016-12-31 15:21:34 +03:00
|
|
|
// autodetect
|
|
|
|
p = new session.Proxy();
|
|
|
|
p.proxyType = "autodetect";
|
|
|
|
ok(p.init());
|
|
|
|
equal(Preferences.get("network.proxy.type"), 4);
|
|
|
|
|
|
|
|
// system
|
|
|
|
p = new session.Proxy();
|
|
|
|
p.proxyType = "system";
|
|
|
|
ok(p.init());
|
|
|
|
equal(Preferences.get("network.proxy.type"), 5);
|
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
// manual
|
|
|
|
for (let proxy of ["ftp", "http", "ssl", "socks"]) {
|
|
|
|
p = new session.Proxy();
|
|
|
|
p.proxyType = "manual";
|
2017-08-31 18:49:36 +03:00
|
|
|
p.noProxy = ["foo", "bar"];
|
2017-08-18 15:49:00 +03:00
|
|
|
p[`${proxy}Proxy`] = "foo";
|
|
|
|
p[`${proxy}ProxyPort`] = 42;
|
|
|
|
if (proxy === "socks") {
|
|
|
|
p[`${proxy}Version`] = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
ok(p.init());
|
|
|
|
equal(Preferences.get("network.proxy.type"), 1);
|
2017-08-31 18:49:36 +03:00
|
|
|
equal(Preferences.get("network.proxy.no_proxies_on"), "foo, bar");
|
2017-08-18 15:49:00 +03:00
|
|
|
equal(Preferences.get(`network.proxy.${proxy}`), "foo");
|
|
|
|
equal(Preferences.get(`network.proxy.${proxy}_port`), 42);
|
|
|
|
if (proxy === "socks") {
|
|
|
|
equal(Preferences.get(`network.proxy.${proxy}_version`), 4);
|
|
|
|
}
|
|
|
|
}
|
2016-12-31 15:21:34 +03:00
|
|
|
|
2017-09-07 11:21:36 +03:00
|
|
|
// empty no proxy should reset default exclustions
|
|
|
|
p = new session.Proxy();
|
|
|
|
p.proxyType = "manual";
|
|
|
|
p.noProxy = [];
|
|
|
|
ok(p.init());
|
|
|
|
equal(Preferences.get("network.proxy.no_proxies_on"), "");
|
|
|
|
|
2016-12-31 15:21:34 +03:00
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Proxy_toString() {
|
|
|
|
equal(new session.Proxy().toString(), "[object session.Proxy]");
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Proxy_toJSON() {
|
|
|
|
let p = new session.Proxy();
|
|
|
|
deepEqual(p.toJSON(), {});
|
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
// manual
|
2016-12-31 15:21:34 +03:00
|
|
|
p = new session.Proxy();
|
|
|
|
p.proxyType = "manual";
|
|
|
|
deepEqual(p.toJSON(), {proxyType: "manual"});
|
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
for (let proxy of ["ftpProxy", "httpProxy", "sslProxy", "socksProxy"]) {
|
|
|
|
let expected = {proxyType: "manual"}
|
|
|
|
|
|
|
|
let manual = new session.Proxy();
|
|
|
|
manual.proxyType = "manual";
|
|
|
|
|
2017-08-23 12:47:01 +03:00
|
|
|
if (proxy == "socksProxy") {
|
|
|
|
manual.socksVersion = 5;
|
|
|
|
expected.socksVersion = 5;
|
|
|
|
}
|
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
// without port
|
|
|
|
manual[proxy] = "foo";
|
|
|
|
expected[proxy] = "foo"
|
|
|
|
deepEqual(manual.toJSON(), expected);
|
|
|
|
|
|
|
|
// with port
|
|
|
|
manual[proxy] = "foo";
|
|
|
|
manual[`${proxy}Port`] = 0;
|
|
|
|
expected[proxy] = "foo:0";
|
|
|
|
deepEqual(manual.toJSON(), expected);
|
|
|
|
|
|
|
|
manual[`${proxy}Port`] = 42;
|
|
|
|
expected[proxy] = "foo:42"
|
|
|
|
deepEqual(manual.toJSON(), expected);
|
|
|
|
}
|
|
|
|
|
2016-12-31 15:21:34 +03:00
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Proxy_fromJSON() {
|
|
|
|
deepEqual({}, session.Proxy.fromJSON(undefined).toJSON());
|
|
|
|
deepEqual({}, session.Proxy.fromJSON(null).toJSON());
|
|
|
|
|
|
|
|
for (let typ of [true, 42, "foo", []]) {
|
|
|
|
Assert.throws(() => session.Proxy.fromJSON(typ), InvalidArgumentError);
|
|
|
|
}
|
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
// must contain a valid proxyType
|
2016-12-31 15:21:34 +03:00
|
|
|
Assert.throws(() => session.Proxy.fromJSON({}), InvalidArgumentError);
|
2017-08-18 15:49:00 +03:00
|
|
|
Assert.throws(() => session.Proxy.fromJSON({proxyType: "foo"}),
|
|
|
|
InvalidArgumentError);
|
2016-12-31 15:21:34 +03:00
|
|
|
|
|
|
|
// manual
|
|
|
|
session.Proxy.fromJSON({proxyType: "manual"});
|
|
|
|
|
|
|
|
for (let proxy of ["httpProxy", "sslProxy", "ftpProxy", "socksProxy"]) {
|
|
|
|
let manual = {proxyType: "manual"};
|
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
// invalid hosts
|
|
|
|
for (let host of [true, 42, [], {}, null, "http://foo",
|
|
|
|
"foo:-1", "foo:65536", "foo/test", "foo#42", "foo?foo=bar",
|
|
|
|
"2001:db8::1"]) {
|
|
|
|
manual[proxy] = host;
|
2016-12-31 15:21:34 +03:00
|
|
|
Assert.throws(() => session.Proxy.fromJSON(manual),
|
|
|
|
InvalidArgumentError);
|
|
|
|
}
|
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
let expected = {"proxyType": "manual"};
|
|
|
|
if (proxy == "socksProxy") {
|
2017-08-23 12:47:01 +03:00
|
|
|
manual.socksVersion = 5;
|
|
|
|
expected.socksVersion = 5;
|
2017-08-18 15:49:00 +03:00
|
|
|
}
|
2016-12-31 15:21:34 +03:00
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
// valid proxy hosts with port
|
|
|
|
for (let host of ["foo:1", "foo:80", "foo:443", "foo:65535",
|
|
|
|
"127.0.0.1:42", "[2001:db8::1]:42"]) {
|
|
|
|
manual[proxy] = host;
|
|
|
|
expected[proxy] = host;
|
|
|
|
|
|
|
|
deepEqual(expected, session.Proxy.fromJSON(manual).toJSON());
|
2016-12-31 15:21:34 +03:00
|
|
|
}
|
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
// Without a port the default port of the scheme is used
|
|
|
|
for (let host of ["foo", "foo:"]) {
|
|
|
|
manual[proxy] = host;
|
2016-12-31 15:21:34 +03:00
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
// For socks no default port is available
|
|
|
|
if (proxy === "socksProxy") {
|
|
|
|
expected[proxy] = `foo`;
|
|
|
|
} else {
|
|
|
|
let default_ports = {"ftpProxy": 21, "httpProxy": 80,
|
|
|
|
"sslProxy": 443};
|
2016-12-31 15:21:34 +03:00
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
expected[proxy] = `foo:${default_ports[proxy]}`;
|
|
|
|
}
|
|
|
|
deepEqual(expected, session.Proxy.fromJSON(manual).toJSON());
|
2016-12-31 15:21:34 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-18 15:49:00 +03:00
|
|
|
// missing required socks version
|
2016-12-31 15:21:34 +03:00
|
|
|
Assert.throws(() => session.Proxy.fromJSON(
|
2017-08-18 15:49:00 +03:00
|
|
|
{proxyType: "manual", socksProxy: "foo:1234"}),
|
2016-12-31 15:21:34 +03:00
|
|
|
InvalidArgumentError);
|
|
|
|
|
2017-08-31 18:49:36 +03:00
|
|
|
// invalid noProxy
|
|
|
|
for (let noProxy of [true, 42, {}, null, "foo",
|
|
|
|
[true], [42], [{}], [null]]) {
|
|
|
|
Assert.throws(() => session.Proxy.fromJSON(
|
|
|
|
{proxyType: "manual", noProxy: noProxy}),
|
|
|
|
InvalidArgumentError);
|
|
|
|
}
|
|
|
|
|
|
|
|
// valid noProxy
|
|
|
|
for (let noProxy of [[], ["foo"], ["foo", "bar"]]) {
|
|
|
|
let manual = {proxyType: "manual", "noProxy": noProxy}
|
|
|
|
deepEqual(manual, session.Proxy.fromJSON(manual).toJSON());
|
|
|
|
}
|
|
|
|
|
2016-12-31 15:21:34 +03:00
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Capabilities_ctor() {
|
|
|
|
let caps = new session.Capabilities();
|
|
|
|
ok(caps.has("browserName"));
|
|
|
|
ok(caps.has("browserVersion"));
|
|
|
|
ok(caps.has("platformName"));
|
|
|
|
ok(caps.has("platformVersion"));
|
|
|
|
equal(session.PageLoadStrategy.Normal, caps.get("pageLoadStrategy"));
|
|
|
|
equal(false, caps.get("acceptInsecureCerts"));
|
|
|
|
ok(caps.get("timeouts") instanceof session.Timeouts);
|
|
|
|
ok(caps.get("proxy") instanceof session.Proxy);
|
|
|
|
|
|
|
|
ok(caps.has("rotatable"));
|
|
|
|
|
2017-09-01 18:11:35 +03:00
|
|
|
equal(false, caps.get("moz:accessibilityChecks"));
|
2016-12-31 15:21:34 +03:00
|
|
|
ok(caps.has("moz:processID"));
|
|
|
|
ok(caps.has("moz:profile"));
|
2017-09-01 18:11:35 +03:00
|
|
|
equal(false, caps.get("moz:webdriverClick"));
|
2016-12-31 15:21:34 +03:00
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Capabilities_toString() {
|
|
|
|
equal("[object session.Capabilities]", new session.Capabilities().toString());
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Capabilities_toJSON() {
|
|
|
|
let caps = new session.Capabilities();
|
|
|
|
let json = caps.toJSON();
|
|
|
|
|
|
|
|
equal(caps.get("browserName"), json.browserName);
|
|
|
|
equal(caps.get("browserVersion"), json.browserVersion);
|
|
|
|
equal(caps.get("platformName"), json.platformName);
|
|
|
|
equal(caps.get("platformVersion"), json.platformVersion);
|
|
|
|
equal(caps.get("pageLoadStrategy"), json.pageLoadStrategy);
|
|
|
|
equal(caps.get("acceptInsecureCerts"), json.acceptInsecureCerts);
|
|
|
|
deepEqual(caps.get("timeouts").toJSON(), json.timeouts);
|
|
|
|
equal(undefined, json.proxy);
|
|
|
|
|
|
|
|
equal(caps.get("rotatable"), json.rotatable);
|
|
|
|
|
2017-09-01 18:11:35 +03:00
|
|
|
equal(caps.get("moz:accessibilityChecks"), json["moz:accessibilityChecks"]);
|
2016-12-31 15:21:34 +03:00
|
|
|
equal(caps.get("moz:processID"), json["moz:processID"]);
|
|
|
|
equal(caps.get("moz:profile"), json["moz:profile"]);
|
2017-09-01 18:11:35 +03:00
|
|
|
equal(caps.get("moz:webdriverClick"), json["moz:webdriverClick"]);
|
2016-12-31 15:21:34 +03:00
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
add_test(function test_Capabilities_fromJSON() {
|
|
|
|
const {fromJSON} = session.Capabilities;
|
|
|
|
|
|
|
|
// plain
|
|
|
|
for (let typ of [{}, null, undefined]) {
|
2017-08-04 22:04:12 +03:00
|
|
|
ok(fromJSON(typ).has("browserName"));
|
2016-12-31 15:21:34 +03:00
|
|
|
}
|
|
|
|
for (let typ of [true, 42, "foo", []]) {
|
2017-08-04 22:04:12 +03:00
|
|
|
Assert.throws(() => fromJSON(typ), InvalidArgumentError);
|
2016-12-31 15:21:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// matching
|
|
|
|
let caps = new session.Capabilities();
|
|
|
|
|
|
|
|
caps = fromJSON({acceptInsecureCerts: true});
|
|
|
|
equal(true, caps.get("acceptInsecureCerts"));
|
|
|
|
caps = fromJSON({acceptInsecureCerts: false});
|
|
|
|
equal(false, caps.get("acceptInsecureCerts"));
|
|
|
|
Assert.throws(() => fromJSON({acceptInsecureCerts: "foo"}));
|
|
|
|
|
|
|
|
for (let strategy of Object.values(session.PageLoadStrategy)) {
|
|
|
|
caps = fromJSON({pageLoadStrategy: strategy});
|
|
|
|
equal(strategy, caps.get("pageLoadStrategy"));
|
|
|
|
}
|
|
|
|
Assert.throws(() => fromJSON({pageLoadStrategy: "foo"}));
|
|
|
|
|
|
|
|
let proxyConfig = {proxyType: "manual"};
|
|
|
|
caps = fromJSON({proxy: proxyConfig});
|
|
|
|
equal("manual", caps.get("proxy").proxyType);
|
|
|
|
|
|
|
|
let timeoutsConfig = {implicit: 123};
|
|
|
|
caps = fromJSON({timeouts: timeoutsConfig});
|
|
|
|
equal(123, caps.get("timeouts").implicit);
|
|
|
|
|
2017-09-01 18:11:35 +03:00
|
|
|
equal(false, caps.get("moz:webdriverClick"));
|
|
|
|
caps = fromJSON({"moz:webdriverClick": true});
|
|
|
|
equal(true, caps.get("moz:webdriverClick"));
|
|
|
|
Assert.throws(() => fromJSON({"moz:webdriverClick": "foo"}));
|
|
|
|
Assert.throws(() => fromJSON({"moz:webdriverClick": 1}));
|
2016-12-31 15:21:34 +03:00
|
|
|
|
|
|
|
caps = fromJSON({"moz:accessibilityChecks": true});
|
|
|
|
equal(true, caps.get("moz:accessibilityChecks"));
|
|
|
|
caps = fromJSON({"moz:accessibilityChecks": false});
|
|
|
|
equal(false, caps.get("moz:accessibilityChecks"));
|
|
|
|
Assert.throws(() => fromJSON({"moz:accessibilityChecks": "foo"}));
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
|
|
|
|
// use session.Proxy.toJSON to test marshal
|
|
|
|
add_test(function test_marshal() {
|
|
|
|
let proxy = new session.Proxy();
|
|
|
|
|
|
|
|
// drop empty fields
|
|
|
|
deepEqual({}, proxy.toJSON());
|
|
|
|
proxy.proxyType = "manual";
|
|
|
|
deepEqual({proxyType: "manual"}, proxy.toJSON());
|
|
|
|
proxy.proxyType = null;
|
|
|
|
deepEqual({}, proxy.toJSON());
|
|
|
|
proxy.proxyType = undefined;
|
|
|
|
deepEqual({}, proxy.toJSON());
|
|
|
|
|
|
|
|
// iterate over object literals
|
|
|
|
proxy.proxyType = {foo: "bar"};
|
|
|
|
deepEqual({proxyType: {foo: "bar"}}, proxy.toJSON());
|
|
|
|
|
|
|
|
// iterate over complex object that implement toJSON
|
|
|
|
proxy.proxyType = new session.Proxy();
|
|
|
|
deepEqual({}, proxy.toJSON());
|
|
|
|
proxy.proxyType.proxyType = "manual";
|
|
|
|
deepEqual({proxyType: {proxyType: "manual"}}, proxy.toJSON());
|
|
|
|
|
|
|
|
// drop objects with no entries
|
|
|
|
proxy.proxyType = {foo: {}};
|
|
|
|
deepEqual({}, proxy.toJSON());
|
|
|
|
proxy.proxyType = {foo: new session.Proxy()};
|
|
|
|
deepEqual({}, proxy.toJSON());
|
|
|
|
|
|
|
|
run_next_test();
|
|
|
|
});
|