-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathbrowser_permissions_installTrigger.js
35 lines (31 loc) · 1.22 KB
/
browser_permissions_installTrigger.js
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
"use strict";
const INSTALL_PAGE = `${BASE}/file_install_extensions.html`;
async function installTrigger(filename) {
await SpecialPowers.pushPrefEnv({
set: [
["extensions.InstallTrigger.enabled", true],
["extensions.InstallTriggerImpl.enabled", true],
// Relax the user input requirements while running this test.
["xpinstall.userActivation.required", false],
// This test asserts that the extension icon is in the install dialog
// and so it requires the signature checks to be enabled (otherwise the
// extension icon is expected to be replaced by a warning icon) and the
// two test extension used by this test (browser_webext_nopermissions.xpi
// and browser_webext_permissions.xpi) are signed using AMO stage signatures.
["xpinstall.signatures.dev-root", true],
],
});
BrowserTestUtils.startLoadingURIString(
gBrowser.selectedBrowser,
INSTALL_PAGE
);
await BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser);
SpecialPowers.spawn(
gBrowser.selectedBrowser,
[`${BASE}/${filename}`],
async function (url) {
content.wrappedJSObject.installTrigger(url);
}
);
}
add_task(() => testInstallMethod(installTrigger, "installAmo"));