forked from mirrors/gecko-dev
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
115 lines
3.6 KiB
JavaScript
115 lines
3.6 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 setGlobal("foo", 1);
|
|
await new Promise(resolve => cps.removeAllDomainsSince(0, null, makeCallback(resolve)));
|
|
await getGlobalOK(["foo"], 1);
|
|
await reset();
|
|
});
|
|
|
|
add_task(async function domainsAll() {
|
|
await set("a.com", "foo", 1);
|
|
await set("a.com", "bar", 2);
|
|
await setGlobal("foo", 3);
|
|
await setGlobal("bar", 4);
|
|
await set("b.com", "foo", 5);
|
|
await set("b.com", "bar", 6);
|
|
|
|
await new Promise(resolve => cps.removeAllDomainsSince(0, null, makeCallback(resolve)));
|
|
await dbOK([
|
|
[null, "foo", 3],
|
|
[null, "bar", 4],
|
|
]);
|
|
await getOK(["a.com", "foo"], undefined);
|
|
await getOK(["a.com", "bar"], undefined);
|
|
await getGlobalOK(["foo"], 3);
|
|
await getGlobalOK(["bar"], 4);
|
|
await getOK(["b.com", "foo"], undefined);
|
|
await getOK(["b.com", "bar"], undefined);
|
|
await reset();
|
|
});
|
|
|
|
add_task(async function domainsWithDate() {
|
|
await setWithDate("a.com", "foobar", 0, 0);
|
|
await setWithDate("a.com", "foo", 1, 1000);
|
|
await setWithDate("a.com", "bar", 2, 4000);
|
|
await setGlobal("foo", 3);
|
|
await setGlobal("bar", 4);
|
|
await setWithDate("b.com", "foo", 5, 2000);
|
|
await setWithDate("b.com", "bar", 6, 3000);
|
|
await setWithDate("b.com", "foobar", 7, 1000);
|
|
|
|
await new Promise(resolve => cps.removeAllDomainsSince(2000, null, makeCallback(resolve)));
|
|
await dbOK([
|
|
["a.com", "foobar", 0],
|
|
["a.com", "foo", 1],
|
|
[null, "foo", 3],
|
|
[null, "bar", 4],
|
|
["b.com", "foobar", 7],
|
|
]);
|
|
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 set("b.com", "foo", 5);
|
|
|
|
let context = privateLoadContext;
|
|
await set("a.com", "foo", 6, context);
|
|
await setGlobal("foo", 7, context);
|
|
await new Promise(resolve => cps.removeAllDomainsSince(0, context, makeCallback(resolve)));
|
|
await dbOK([
|
|
[null, "foo", 3],
|
|
[null, "bar", 4],
|
|
]);
|
|
await getOK(["a.com", "foo", context], undefined);
|
|
await getOK(["a.com", "bar", context], undefined);
|
|
await getGlobalOK(["foo", context], 7);
|
|
await getGlobalOK(["bar", context], 4);
|
|
await getOK(["b.com", "foo", context], undefined);
|
|
|
|
await getOK(["a.com", "foo"], undefined);
|
|
await getOK(["a.com", "bar"], undefined);
|
|
await getGlobalOK(["foo"], 3);
|
|
await getGlobalOK(["bar"], 4);
|
|
await getOK(["b.com", "foo"], undefined);
|
|
await reset();
|
|
});
|
|
|
|
add_task(async function erroneous() {
|
|
do_check_throws(() => cps.removeAllDomainsSince(null, "bogus"));
|
|
await reset();
|
|
});
|
|
|
|
add_task(async function invalidateCache() {
|
|
await setWithDate("a.com", "foobar", 0, 0);
|
|
await setWithDate("a.com", "foo", 1, 1000);
|
|
await setWithDate("a.com", "bar", 2, 4000);
|
|
await setGlobal("foo", 3);
|
|
await setGlobal("bar", 4);
|
|
await setWithDate("b.com", "foo", 5, 2000);
|
|
await setWithDate("b.com", "bar", 6, 3000);
|
|
await setWithDate("b.com", "foobar", 7, 1000);
|
|
let clearPromise = new Promise(resolve => {
|
|
cps.removeAllDomainsSince(0, null, makeCallback(resolve));
|
|
});
|
|
getCachedOK(["a.com", "foobar"], false);
|
|
getCachedOK(["a.com", "foo"], false);
|
|
getCachedOK(["a.com", "bar"], false);
|
|
getCachedGlobalOK(["foo"], true, 3);
|
|
getCachedGlobalOK(["bar"], true, 4);
|
|
getCachedOK(["b.com", "foo"], false);
|
|
getCachedOK(["b.com", "bar"], false);
|
|
getCachedOK(["b.com", "foobar"], false);
|
|
await clearPromise;
|
|
await reset();
|
|
});
|