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
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
add_task(async function testSteps() {
const groupLimitKB = 10 * 1024;
const globalLimitKB = groupLimitKB * 5;
const originLimit = 10 * 1024;
const urls = [
"http://example.com",
"http://test1.example.com",
"https://test2.example.com",
"http://test3.example.com:8080",
];
const data = {};
data.sizeKB = 5 * 1024;
data.key = "A";
data.value = repeatChar(data.sizeKB * 1024 - data.key.length, ".");
data.urlCount = groupLimitKB / data.sizeKB;
info("Setting pref");
Services.prefs.setBoolPref(
"dom.storage.enable_unsupported_legacy_implementation",
false
);
Services.prefs.setBoolPref("dom.storage.snapshot_reusing", false);
info("Setting limits");
setGlobalLimit(globalLimitKB);
let request = clear();
await requestFinished(request);
setOriginLimit(originLimit);
info("Getting storages");
let storages = [];
for (let i = 0; i < urls.length; i++) {
let storage = getLocalStorage(getPrincipal(urls[i]));
storages.push(storage);
}
info("Filling up the whole group");
for (let i = 0; i < data.urlCount; i++) {
storages[i].setItem(data.key, data.value);
await returnToEventLoop();
}
info("Verifying no more data can be written");
for (let i = 0; i < urls.length; i++) {
try {
storages[i].setItem("B", "");
ok(false, "Should have thrown");
} catch (ex) {
ok(true, "Did throw");
ok(DOMException.isInstance(ex), "Threw DOMException");
is(ex.name, "QuotaExceededError", "Threw right DOMException");
is(ex.code, NS_ERROR_DOM_QUOTA_EXCEEDED_ERR, "Threw with right code");
}
}
info("Clearing first origin");
storages[0].clear();
// Let the internal snapshot finish (usage is not descreased until all
// snapshots finish)..
await returnToEventLoop();
info("Verifying more data can be written");
for (let i = 0; i < urls.length; i++) {
storages[i].setItem("B", "");
}
});
|