From 4fb11cd5966461bccc3ed1599b808237be6b0de9 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Sat, 10 Feb 2018 02:49:12 -0500 Subject: Move WebExtensions enabled Add-ons Manager --- .../test/xpinstall/browser_whitelist.js | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 toolkit/mozapps/webextensions/test/xpinstall/browser_whitelist.js (limited to 'toolkit/mozapps/webextensions/test/xpinstall/browser_whitelist.js') diff --git a/toolkit/mozapps/webextensions/test/xpinstall/browser_whitelist.js b/toolkit/mozapps/webextensions/test/xpinstall/browser_whitelist.js new file mode 100644 index 000000000..ad3d645f5 --- /dev/null +++ b/toolkit/mozapps/webextensions/test/xpinstall/browser_whitelist.js @@ -0,0 +1,53 @@ +// ---------------------------------------------------------------------------- +// Tests installing an unsigned add-on through an InstallTrigger call in web +// content. This should be blocked by the whitelist check. +// This verifies bug 252830 +function test() { + Harness.installConfirmCallback = confirm_install; + Harness.installBlockedCallback = allow_blocked; + Harness.installEndedCallback = install_ended; + Harness.installsCompletedCallback = finish_test; + Harness.setup(); + + var triggers = encodeURIComponent(JSON.stringify({ + "Unsigned XPI": TESTROOT + "amosigned.xpi" + })); + gBrowser.selectedTab = gBrowser.addTab(); + gBrowser.loadURI(TESTROOT + "installtrigger.html?" + triggers); +} + +function allow_blocked(installInfo) { + is(installInfo.browser, gBrowser.selectedBrowser, "Install should have been triggered by the right browser"); + is(installInfo.originatingURI.spec, gBrowser.currentURI.spec, "Install should have been triggered by the right uri"); + return true; +} + +function confirm_install(window) { + var items = window.document.getElementById("itemList").childNodes; + is(items.length, 1, "Should only be 1 item listed in the confirmation dialog"); + is(items[0].name, "XPI Test", "Should have seen the name from the trigger list"); + is(items[0].url, TESTROOT + "amosigned.xpi", "Should have listed the correct url for the item"); + is(items[0].signed, "false", "Should have listed the item as unsigned"); + return true; +} + +function install_ended(install, addon) { + install.cancel(); +} + +const finish_test = Task.async(function*(count) { + is(count, 1, "1 Add-on should have been successfully installed"); + + const results = yield ContentTask.spawn(gBrowser.selectedBrowser, null, () => { + return { + return: content.document.getElementById("return").textContent, + status: content.document.getElementById("status").textContent, + } + }) + + is(results.return, "false", "installTrigger should seen a failure"); + + gBrowser.removeCurrentTab(); + Harness.finish(); +}); +// ---------------------------------------------------------------------------- -- cgit v1.2.3