mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
139 lines
4.2 KiB
JavaScript
139 lines
4.2 KiB
JavaScript
/* 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/. */
|
|
|
|
function run_test() {
|
|
runAsyncTests(tests);
|
|
}
|
|
|
|
let tests = [
|
|
|
|
function get_nonexistent() {
|
|
yield getOK(["a.com", "foo"], undefined);
|
|
yield getGlobalOK(["foo"], undefined);
|
|
},
|
|
|
|
function isomorphicDomains() {
|
|
yield set("a.com", "foo", 1);
|
|
yield dbOK([
|
|
["a.com", "foo", 1],
|
|
]);
|
|
yield getOK(["a.com", "foo"], 1);
|
|
yield getOK(["http://a.com/huh", "foo"], 1, "a.com");
|
|
|
|
yield set("http://a.com/huh", "foo", 2);
|
|
yield dbOK([
|
|
["a.com", "foo", 2],
|
|
]);
|
|
yield getOK(["a.com", "foo"], 2);
|
|
yield getOK(["http://a.com/yeah", "foo"], 2, "a.com");
|
|
},
|
|
|
|
function names() {
|
|
yield set("a.com", "foo", 1);
|
|
yield dbOK([
|
|
["a.com", "foo", 1],
|
|
]);
|
|
yield getOK(["a.com", "foo"], 1);
|
|
|
|
yield set("a.com", "bar", 2);
|
|
yield dbOK([
|
|
["a.com", "foo", 1],
|
|
["a.com", "bar", 2],
|
|
]);
|
|
yield getOK(["a.com", "foo"], 1);
|
|
yield getOK(["a.com", "bar"], 2);
|
|
|
|
yield setGlobal("foo", 3);
|
|
yield dbOK([
|
|
["a.com", "foo", 1],
|
|
["a.com", "bar", 2],
|
|
[null, "foo", 3],
|
|
]);
|
|
yield getOK(["a.com", "foo"], 1);
|
|
yield getOK(["a.com", "bar"], 2);
|
|
yield getGlobalOK(["foo"], 3);
|
|
|
|
yield setGlobal("bar", 4);
|
|
yield dbOK([
|
|
["a.com", "foo", 1],
|
|
["a.com", "bar", 2],
|
|
[null, "foo", 3],
|
|
[null, "bar", 4],
|
|
]);
|
|
yield getOK(["a.com", "foo"], 1);
|
|
yield getOK(["a.com", "bar"], 2);
|
|
yield getGlobalOK(["foo"], 3);
|
|
yield getGlobalOK(["bar"], 4);
|
|
},
|
|
|
|
function subdomains() {
|
|
yield set("a.com", "foo", 1);
|
|
yield set("b.a.com", "foo", 2);
|
|
yield dbOK([
|
|
["a.com", "foo", 1],
|
|
["b.a.com", "foo", 2],
|
|
]);
|
|
yield getOK(["a.com", "foo"], 1);
|
|
yield getOK(["b.a.com", "foo"], 2);
|
|
},
|
|
|
|
function privateBrowsing() {
|
|
yield set("a.com", "foo", 1);
|
|
yield set("a.com", "bar", 2);
|
|
yield setGlobal("foo", 3);
|
|
yield setGlobal("bar", 4);
|
|
yield set("b.com", "foo", 5);
|
|
|
|
let context = { usePrivateBrowsing: true };
|
|
yield set("a.com", "foo", 6, context);
|
|
yield setGlobal("foo", 7, context);
|
|
yield dbOK([
|
|
["a.com", "foo", 1],
|
|
["a.com", "bar", 2],
|
|
[null, "foo", 3],
|
|
[null, "bar", 4],
|
|
["b.com", "foo", 5],
|
|
]);
|
|
yield getOK(["a.com", "foo", context], 6, "a.com");
|
|
yield getOK(["a.com", "bar", context], 2);
|
|
yield getGlobalOK(["foo", context], 7);
|
|
yield getGlobalOK(["bar", context], 4);
|
|
yield getOK(["b.com", "foo", context], 5);
|
|
|
|
yield getOK(["a.com", "foo"], 1);
|
|
yield getOK(["a.com", "bar"], 2);
|
|
yield getGlobalOK(["foo"], 3);
|
|
yield getGlobalOK(["bar"], 4);
|
|
yield getOK(["b.com", "foo"], 5);
|
|
},
|
|
|
|
function set_erroneous() {
|
|
do_check_throws(function () cps.set(null, "foo", 1, null));
|
|
do_check_throws(function () cps.set("", "foo", 1, null));
|
|
do_check_throws(function () cps.set("a.com", "", 1, null));
|
|
do_check_throws(function () cps.set("a.com", null, 1, null));
|
|
do_check_throws(function () cps.set("a.com", "foo", undefined, null));
|
|
do_check_throws(function () cps.set("a.com", "foo", 1, null, "bogus"));
|
|
do_check_throws(function () cps.setGlobal("", 1, null));
|
|
do_check_throws(function () cps.setGlobal(null, 1, null));
|
|
do_check_throws(function () cps.setGlobal("foo", undefined, null));
|
|
do_check_throws(function () cps.setGlobal("foo", 1, null, "bogus"));
|
|
yield true;
|
|
},
|
|
|
|
function get_erroneous() {
|
|
do_check_throws(function () cps.getByDomainAndName(null, "foo", null, {}));
|
|
do_check_throws(function () cps.getByDomainAndName("", "foo", null, {}));
|
|
do_check_throws(function () cps.getByDomainAndName("a.com", "", null, {}));
|
|
do_check_throws(function ()
|
|
cps.getByDomainAndName("a.com", null, null, {}));
|
|
do_check_throws(function ()
|
|
cps.getByDomainAndName("a.com", "foo", null, null));
|
|
do_check_throws(function () cps.getGlobal("", null, {}));
|
|
do_check_throws(function () cps.getGlobal(null, null, {}));
|
|
do_check_throws(function () cps.getGlobal("foo", null, null));
|
|
yield true;
|
|
},
|
|
];
|