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

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:0dc9ede2e7f1
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();
7
8 var pm = Services.perms;
9 pm.add(makeURI("http://example.com/"), "install", pm.ALLOW_ACTION);
10
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 }
17
18 function download_failed(install) {
19 is(install.error, AddonManager.ERROR_CORRUPT_FILE, "Install should fail");
20 }
21
22 function finish_test(count) {
23 is(count, 0, "No add-ons should have been installed");
24 Services.perms.remove("example.com", "install");
25
26 gBrowser.removeCurrentTab();
27 Harness.finish();
28 }

mercurial