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
|
"use strict";
const ID = "permissions@test.mozilla.org";
const WARNING_ICON = "chrome://global/skin/icons/warning.svg";
add_task(async function test_unsigned() {
await SpecialPowers.pushPrefEnv({
set: [
["extensions.webapi.testing", true],
["extensions.install.requireBuiltInCerts", false],
["extensions.InstallTrigger.enabled", true],
["extensions.InstallTriggerImpl.enabled", true],
// Relax the user input requirements while running this test.
["xpinstall.userActivation.required", false],
],
});
let testURI = makeURI("https://example.com/");
PermissionTestUtils.add(testURI, "install", Services.perms.ALLOW_ACTION);
registerCleanupFunction(() => PermissionTestUtils.remove(testURI, "install"));
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser);
BrowserTestUtils.loadURI(
gBrowser.selectedBrowser,
`${BASE}/file_install_extensions.html`
);
await BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser);
SpecialPowers.spawn(
gBrowser.selectedBrowser,
[`${BASE}/browser_webext_unsigned.xpi`],
async function(url) {
content.wrappedJSObject.installTrigger(url);
}
);
let panel = await promisePopupNotificationShown("addon-webext-permissions");
is(panel.getAttribute("icon"), WARNING_ICON);
let description = panel.querySelector(".popup-notification-description")
.textContent;
checkPermissionString(
description,
"webextPerms.headerUnsignedWithPerms",
undefined,
`Install notification includes unsigned warning`
);
// cancel the install
let promise = promiseInstallEvent({ id: ID }, "onInstallCancelled");
panel.secondaryButton.click();
await promise;
let addon = await AddonManager.getAddonByID(ID);
is(addon, null, "Extension is not installed");
BrowserTestUtils.removeTab(tab);
});
|