63 lines
1.6 KiB
JavaScript
63 lines
1.6 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const { AddonTestUtils } = ChromeUtils.importESModule(
|
|
"resource://testing-common/AddonTestUtils.sys.mjs"
|
|
);
|
|
|
|
AddonTestUtils.initMochitest(this);
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Tests installing an unsigned add-on by navigating directly to the url
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
SpecialPowers.pushPrefEnv(
|
|
{
|
|
set: [
|
|
// Relax the user input requirements while running this test.
|
|
["xpinstall.userActivation.required", false],
|
|
],
|
|
},
|
|
runTest
|
|
);
|
|
}
|
|
|
|
function runTest() {
|
|
Harness.installConfirmCallback = confirm_install;
|
|
Harness.installEndedCallback = install_ended;
|
|
Harness.installsCompletedCallback = finish_test;
|
|
Harness.setup();
|
|
|
|
gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser, "about:blank");
|
|
BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser).then(() => {
|
|
BrowserTestUtils.startLoadingURIString(
|
|
gBrowser,
|
|
TESTROOT + "amosigned.xpi"
|
|
);
|
|
});
|
|
}
|
|
|
|
function confirm_install(panel) {
|
|
is(panel.getAttribute("name"), "XPI Test", "Should have seen the name");
|
|
return true;
|
|
}
|
|
|
|
function install_ended(install, addon) {
|
|
AddonTestUtils.checkInstallInfo(install, {
|
|
method: "link",
|
|
source: "unknown",
|
|
sourceURL: undefined,
|
|
});
|
|
return addon.uninstall();
|
|
}
|
|
|
|
function finish_test(count) {
|
|
is(count, 1, "1 Add-on should have been successfully installed");
|
|
|
|
gBrowser.removeCurrentTab();
|
|
Harness.finish();
|
|
}
|
|
// ----------------------------------------------------------------------------
|