Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

// ----------------------------------------------------------------------------
// Test whether an install succeeds using case-insensitive hashes
// This verifies bug 603021
add_task(async function test_install_hash_case_insensitive() {
// This test currently depends on InstallTrigger.install availability.
setInstallTriggerPrefs();
const xpiFilePath = getTestFilePath("./amosigned.xpi");
const xpiFileHash = await IOUtils.computeHexDigest(xpiFilePath, "sha256");
const deferredInstallCompleted = Promise.withResolvers();
Harness.installEndedCallback = (install, addon) => addon.uninstall();
Harness.installsCompletedCallback = deferredInstallCompleted.resolve;
Harness.setup();
PermissionTestUtils.add(
"install",
Services.perms.ALLOW_ACTION
);
var triggers = encodeURIComponent(
JSON.stringify({
"Unsigned XPI": {
URL: TESTROOT + "amosigned.xpi",
Hash: `sha256:${xpiFileHash.toUpperCase()}`,
toString() {
return this.URL;
},
},
})
);
gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser);
BrowserTestUtils.startLoadingURIString(
gBrowser,
TESTROOT + "installtrigger.html?" + triggers
);
info("Wait for the install to be completed");
const count = await deferredInstallCompleted.promise;
is(count, 1, "1 Add-on should have been successfully installed");
PermissionTestUtils.remove("http://example.com", "install");
gBrowser.removeCurrentTab();
Harness.finish();
});