Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

"use strict";
const INSTALL_PAGE = `${BASE}/file_install_extensions.html`;
const INSTALL_XPI = `${BASE}/browser_webext_permissions.xpi`;
// - with the old dialog design (enabled when ExtensionsUI.SHOW_FULL_DOMAINS_LIST returns false),
// wildcard and non-wildcard host permissions are expected to be shown as two separate
// permissions entries
// - with the new dialog design (enabled when ExtensionsUI.SHOW_FULL_DOMAINS_LIST returns true)
// both wildcards and non-wildcards host permissions are expected to be shown as a single
// permission entry
const expectedPermsCount = !ExtensionsUI.SHOW_FULL_DOMAINS_LIST ? 5 : 4;
function assertPermissionsListCount({ grantedPermissionsCount }) {
let permsUL = document.getElementById("addon-webext-perm-list");
// When the private browsing checkbox is expected to be shown in the post install
// dialog we expect only one entry for each of the expected granted permissions,
// otherwise we expect one more perms list entry for the private browsing checkbox
// in addition to the entries for the granted permissions.
const count = ExtensionsUI.POSTINSTALL_PRIVATEBROWSING_CHECKBOX
? grantedPermissionsCount
: grantedPermissionsCount + 1;
is(
permsUL.childElementCount,
count,
`Permissions list should have ${count} entries`
);
}
add_setup(async function () {
await SpecialPowers.pushPrefEnv({
set: [
["extensions.webapi.testing", true],
["extensions.install.requireBuiltInCerts", false],
],
});
registerCleanupFunction(async () => {
await SpecialPowers.popPrefEnv();
});
});
add_task(async function test_tab_switch_dismiss() {
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, INSTALL_PAGE);
let installCanceled = new Promise(resolve => {
let listener = {
onInstallCancelled() {
AddonManager.removeInstallListener(listener);
resolve();
},
};
AddonManager.addInstallListener(listener);
});
SpecialPowers.spawn(gBrowser.selectedBrowser, [INSTALL_XPI], function (url) {
content.wrappedJSObject.installMozAM(url);
});
const panel = await promisePopupNotificationShown("addon-webext-permissions");
assertPermissionsListCount({ grantedPermissionsCount: expectedPermsCount });
let permsLearnMore = panel.querySelector(
".popup-notification-learnmore-link"
);
is(
permsLearnMore.href,
Services.urlFormatter.formatURLPref("app.support.baseURL") +
"extension-permissions",
"Learn more link has desired URL"
);
ok(
BrowserTestUtils.isVisible(permsLearnMore),
"Learn more link is shown on Permission popup"
);
// Switching tabs dismisses the notification and cancels the install.
let switchTo = await BrowserTestUtils.openNewForegroundTab(gBrowser);
BrowserTestUtils.removeTab(switchTo);
await installCanceled;
let addon = await AddonManager.getAddonByID("permissions@test.mozilla.org");
is(addon, null, "Extension is not installed");
BrowserTestUtils.removeTab(tab);
});
add_task(async function test_add_tab_by_user_and_switch() {
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, INSTALL_PAGE);
let listener = {
onInstallCancelled() {
this.canceledPromise = Promise.resolve();
},
};
AddonManager.addInstallListener(listener);
SpecialPowers.spawn(gBrowser.selectedBrowser, [INSTALL_XPI], function (url) {
content.wrappedJSObject.installMozAM(url);
});
// Show addon permission notification.
await promisePopupNotificationShown("addon-webext-permissions");
assertPermissionsListCount({ grantedPermissionsCount: expectedPermsCount });
info("Verify permissions list again after switching active tab");
// Open about:newtab page in a new tab.
let newTab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
"about:newtab",
false
);
// Switch to tab that is opening addon permission notification.
gBrowser.selectedTab = tab;
assertPermissionsListCount({ grantedPermissionsCount: expectedPermsCount });
ok(!listener.canceledPromise, "Extension installation is not canceled");
// Cancel installation.
document.querySelector(".popup-notification-secondary-button").click();
await listener.canceledPromise;
info("Extension installation is canceled");
let addon = await AddonManager.getAddonByID("permissions@test.mozilla.org");
is(addon, null, "Extension is not installed");
AddonManager.removeInstallListener(listener);
BrowserTestUtils.removeTab(tab);
BrowserTestUtils.removeTab(newTab);
});