1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* 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();
});
|