Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 // ----------------------------------------------------------------------------
2 // Test whether an install fails when there is no install script present.
3 function test() {
4 Harness.downloadFailedCallback = download_failed;
5 Harness.installsCompletedCallback = finish_test;
6 Harness.setup();
8 var pm = Services.perms;
9 pm.add(makeURI("http://example.com/"), "install", pm.ALLOW_ACTION);
11 var triggers = encodeURIComponent(JSON.stringify({
12 "Empty XPI": TESTROOT + "empty.xpi"
13 }));
14 gBrowser.selectedTab = gBrowser.addTab();
15 gBrowser.loadURI(TESTROOT + "installtrigger.html?" + triggers);
16 }
18 function download_failed(install) {
19 is(install.error, AddonManager.ERROR_CORRUPT_FILE, "Install should fail");
20 }
22 function finish_test(count) {
23 is(count, 0, "No add-ons should have been installed");
24 Services.perms.remove("example.com", "install");
26 gBrowser.removeCurrentTab();
27 Harness.finish();
28 }