toolkit/mozapps/extensions/test/xpinstall/browser_signed_tampered.js

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     1 // ----------------------------------------------------------------------------
     2 // Tests installing a signed add-on that has been tampered with after signing.
     3 function test() {
     4   Harness.installConfirmCallback = confirm_install;
     5   Harness.downloadFailedCallback = download_failed;
     6   Harness.installsCompletedCallback = finish_test;
     7   Harness.setup();
     9   var pm = Services.perms;
    10   pm.add(makeURI("http://example.com/"), "install", pm.ALLOW_ACTION);
    12   var triggers = encodeURIComponent(JSON.stringify({
    13     "Tampered Signed XPI": TESTROOT + "signed-tampered.xpi"
    14   }));
    15   gBrowser.selectedTab = gBrowser.addTab();
    16   gBrowser.loadURI(TESTROOT + "installtrigger.html?" + triggers);
    17 }
    19 function confirm_install(window) {
    20   ok(false, "Should not offer to install");
    21 }
    23 function download_failed(install) {
    24   is(install.error, AddonManager.ERROR_CORRUPT_FILE, "Install should fail");
    25 }
    27 function finish_test(count) {
    28   is(count, 0, "No add-ons should have been installed");
    29   Services.perms.remove("example.com", "install");
    31   gBrowser.removeCurrentTab();
    32   Harness.finish();
    33 }

mercurial