blob: 8083f5c920216ff5a696e6f6b91eeebae5acdbba (
plain)
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
|
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";
const { Management } = ChromeUtils.importESModule(
"resource://gre/modules/Extension.sys.mjs"
);
function getNextContext() {
return new Promise(resolve => {
Management.on("proxy-context-load", function listener(type, context) {
Management.off("proxy-context-load", listener);
resolve(context);
});
});
}
add_task(async function test_storage_api_without_permissions() {
let extension = ExtensionTestUtils.loadExtension({
background() {
// Force API initialization.
try {
browser.storage.onChanged.addListener(() => {});
} catch (e) {
// Ignore.
}
},
manifest: {
permissions: [],
},
});
let contextPromise = getNextContext();
await extension.startup();
let context = await contextPromise;
// Force API initialization.
void context.apiObj;
ok(
!("storage" in context.apiObj),
"The storage API should not be initialized"
);
await extension.unload();
});
add_task(async function test_storage_api_with_permissions() {
let extension = ExtensionTestUtils.loadExtension({
background() {
browser.storage.onChanged.addListener(() => {});
},
manifest: {
permissions: ["storage"],
},
});
let contextPromise = getNextContext();
await extension.startup();
let context = await contextPromise;
// Force API initialization.
void context.apiObj;
equal(
typeof context.apiObj.storage,
"object",
"The storage API should be initialized"
);
await extension.unload();
});
|