fune/toolkit/components/contentprefs/tests/unit_cps2/test_remove.js
Doug Thayer 7a80b52702 Bug 887889 - Asyncify cps2 tests r=mak
I converted the cps2 tests to use async/await, since it was easier
for me to debug the breakages introduced by my changes that way.
There are a few differences hidden in there, though - most notable
is that I also modified the direct db access in the tests to use
the Sqlite.jsm wrapper. This was to avoid reaching into the
connections internals in order to get the underlying connection.

MozReview-Commit-ID: DwJ5hfyvAOf

--HG--
extra : rebase_source : 6b9ba2b29bcd0a440af6ee327b6288c1d3d61b6c
2018-03-12 14:46:24 -07:00

233 lines
7.9 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/. */
add_task(async function resetBeforeTests() {
await reset();
});
add_task(async function nonexistent() {
await set("a.com", "foo", 1);
await setGlobal("foo", 2);
await new Promise(resolve => cps.removeByDomainAndName("a.com", "bogus", null, makeCallback(resolve)));
await dbOK([
["a.com", "foo", 1],
[null, "foo", 2],
]);
await getOK(["a.com", "foo"], 1);
await getGlobalOK(["foo"], 2);
await new Promise(resolve => cps.removeBySubdomainAndName("a.com", "bogus", null, makeCallback(resolve)));
await dbOK([
["a.com", "foo", 1],
[null, "foo", 2],
]);
await getOK(["a.com", "foo"], 1);
await getGlobalOK(["foo"], 2);
await new Promise(resolve => cps.removeGlobal("bogus", null, makeCallback(resolve)));
await dbOK([
["a.com", "foo", 1],
[null, "foo", 2],
]);
await getOK(["a.com", "foo"], 1);
await getGlobalOK(["foo"], 2);
await new Promise(resolve => cps.removeByDomainAndName("bogus", "bogus", null, makeCallback(resolve)));
await dbOK([
["a.com", "foo", 1],
[null, "foo", 2],
]);
await getOK(["a.com", "foo"], 1);
await getGlobalOK(["foo"], 2);
await reset();
});
add_task(async function isomorphicDomains() {
await set("a.com", "foo", 1);
await new Promise(resolve => cps.removeByDomainAndName("a.com", "foo", null, makeCallback(resolve)));
await dbOK([]);
await getOK(["a.com", "foo"], undefined);
await set("a.com", "foo", 2);
await new Promise(resolve => cps.removeByDomainAndName("http://a.com/huh", "foo", null,
makeCallback(resolve)));
await dbOK([]);
await getOK(["a.com", "foo"], undefined);
await reset();
});
add_task(async function names() {
await set("a.com", "foo", 1);
await set("a.com", "bar", 2);
await setGlobal("foo", 3);
await setGlobal("bar", 4);
await new Promise(resolve => cps.removeByDomainAndName("a.com", "foo", null, makeCallback(resolve)));
await dbOK([
["a.com", "bar", 2],
[null, "foo", 3],
[null, "bar", 4],
]);
await getOK(["a.com", "foo"], undefined);
await getOK(["a.com", "bar"], 2);
await getGlobalOK(["foo"], 3);
await getGlobalOK(["bar"], 4);
await new Promise(resolve => cps.removeGlobal("foo", null, makeCallback(resolve)));
await dbOK([
["a.com", "bar", 2],
[null, "bar", 4],
]);
await getOK(["a.com", "foo"], undefined);
await getOK(["a.com", "bar"], 2);
await getGlobalOK(["foo"], undefined);
await getGlobalOK(["bar"], 4);
await new Promise(resolve => cps.removeByDomainAndName("a.com", "bar", null, makeCallback(resolve)));
await dbOK([
[null, "bar", 4],
]);
await getOK(["a.com", "foo"], undefined);
await getOK(["a.com", "bar"], undefined);
await getGlobalOK(["foo"], undefined);
await getGlobalOK(["bar"], 4);
await new Promise(resolve => cps.removeGlobal("bar", null, makeCallback(resolve)));
await dbOK([
]);
await getOK(["a.com", "foo"], undefined);
await getOK(["a.com", "bar"], undefined);
await getGlobalOK(["foo"], undefined);
await getGlobalOK(["bar"], undefined);
await reset();
});
add_task(async function subdomains() {
await set("a.com", "foo", 1);
await set("b.a.com", "foo", 2);
await new Promise(resolve => cps.removeByDomainAndName("a.com", "foo", null, makeCallback(resolve)));
await dbOK([
["b.a.com", "foo", 2],
]);
await getSubdomainsOK(["a.com", "foo"], [["b.a.com", 2]]);
await getSubdomainsOK(["b.a.com", "foo"], [["b.a.com", 2]]);
await set("a.com", "foo", 3);
await new Promise(resolve => cps.removeBySubdomainAndName("a.com", "foo", null, makeCallback(resolve)));
await dbOK([
]);
await getSubdomainsOK(["a.com", "foo"], []);
await getSubdomainsOK(["b.a.com", "foo"], []);
await set("a.com", "foo", 4);
await set("b.a.com", "foo", 5);
await new Promise(resolve => cps.removeByDomainAndName("b.a.com", "foo", null, makeCallback(resolve)));
await dbOK([
["a.com", "foo", 4],
]);
await getSubdomainsOK(["a.com", "foo"], [["a.com", 4]]);
await getSubdomainsOK(["b.a.com", "foo"], []);
await set("b.a.com", "foo", 6);
await new Promise(resolve => cps.removeBySubdomainAndName("b.a.com", "foo", null, makeCallback(resolve)));
await dbOK([
["a.com", "foo", 4],
]);
await getSubdomainsOK(["a.com", "foo"], [["a.com", 4]]);
await getSubdomainsOK(["b.a.com", "foo"], []);
await reset();
});
add_task(async function privateBrowsing() {
await set("a.com", "foo", 1);
await set("a.com", "bar", 2);
await setGlobal("foo", 3);
await setGlobal("bar", 4);
await setGlobal("qux", 5);
await set("b.com", "foo", 6);
await set("b.com", "bar", 7);
let context = privateLoadContext;
await set("a.com", "foo", 8, context);
await setGlobal("foo", 9, context);
await new Promise(resolve => cps.removeByDomainAndName("a.com", "foo", context, makeCallback(resolve)));
await new Promise(resolve => cps.removeGlobal("foo", context, makeCallback(resolve)));
await new Promise(resolve => cps.removeGlobal("qux", context, makeCallback(resolve)));
await new Promise(resolve => cps.removeByDomainAndName("b.com", "foo", context, makeCallback(resolve)));
await dbOK([
["a.com", "bar", 2],
[null, "bar", 4],
["b.com", "bar", 7],
]);
await getOK(["a.com", "foo", context], undefined);
await getOK(["a.com", "bar", context], 2);
await getGlobalOK(["foo", context], undefined);
await getGlobalOK(["bar", context], 4);
await getGlobalOK(["qux", context], undefined);
await getOK(["b.com", "foo", context], undefined);
await getOK(["b.com", "bar", context], 7);
await getOK(["a.com", "foo"], undefined);
await getOK(["a.com", "bar"], 2);
await getGlobalOK(["foo"], undefined);
await getGlobalOK(["bar"], 4);
await getGlobalOK(["qux"], undefined);
await getOK(["b.com", "foo"], undefined);
await getOK(["b.com", "bar"], 7);
await reset();
});
add_task(async function erroneous() {
do_check_throws(() => cps.removeByDomainAndName(null, "foo", null));
do_check_throws(() => cps.removeByDomainAndName("", "foo", null));
do_check_throws(() => cps.removeByDomainAndName("a.com", "foo", null,
"bogus"));
do_check_throws(() => cps.removeBySubdomainAndName(null, "foo",
null));
do_check_throws(() => cps.removeBySubdomainAndName("", "foo", null));
do_check_throws(() => cps.removeBySubdomainAndName("a.com", "foo",
null, "bogus"));
do_check_throws(() => cps.removeGlobal("", null));
do_check_throws(() => cps.removeGlobal(null, null));
do_check_throws(() => cps.removeGlobal("foo", null, "bogus"));
await reset();
});
add_task(async function removeByDomainAndName_invalidateCache() {
await set("a.com", "foo", 1);
getCachedOK(["a.com", "foo"], true, 1);
let promiseRemoved = new Promise(resolve => {
cps.removeByDomainAndName("a.com", "foo", null, makeCallback(resolve));
});
getCachedOK(["a.com", "foo"], false);
await promiseRemoved;
await reset();
});
add_task(async function removeBySubdomainAndName_invalidateCache() {
await set("a.com", "foo", 1);
await set("b.a.com", "foo", 2);
getCachedSubdomainsOK(["a.com", "foo"], [
["a.com", 1],
["b.a.com", 2],
]);
let promiseRemoved = new Promise(resolve => {
cps.removeBySubdomainAndName("a.com", "foo", null, makeCallback(resolve));
});
getCachedSubdomainsOK(["a.com", "foo"], []);
await promiseRemoved;
await reset();
});
add_task(async function removeGlobal_invalidateCache() {
await setGlobal("foo", 1);
getCachedGlobalOK(["foo"], true, 1);
let promiseRemoved = new Promise(resolve => {
cps.removeGlobal("foo", null, makeCallback(resolve));
});
getCachedGlobalOK(["foo"], false);
await promiseRemoved;
await reset();
});