2009-02-12 05:35:03 -08:00
|
|
|
// Load in the test harness
|
|
|
|
var scriptLoader = Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
|
|
|
|
.getService(Components.interfaces.mozIJSSubScriptLoader);
|
2010-09-30 17:10:19 -07:00
|
|
|
|
|
|
|
var rootDir = getRootDirectory(window.location.href);
|
|
|
|
scriptLoader.loadSubScript(rootDir + "harness.js", this);
|
2009-02-12 05:35:03 -08:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Tests that navigating away from the initiating page during the install
|
|
|
|
// doesn't break the install.
|
|
|
|
// This verifies bug 473060
|
|
|
|
function test() {
|
|
|
|
Harness.downloadProgressCallback = download_progress;
|
|
|
|
Harness.installEndedCallback = check_xpi_install;
|
|
|
|
Harness.installsCompletedCallback = finish_test;
|
|
|
|
Harness.setup();
|
|
|
|
|
2010-04-03 00:36:55 -07:00
|
|
|
var pm = Services.perms;
|
2009-02-12 05:35:03 -08:00
|
|
|
pm.add(makeURI("http://example.com/"), "install", pm.ALLOW_ACTION);
|
|
|
|
|
|
|
|
var triggers = encodeURIComponent(JSON.stringify({
|
|
|
|
"Unsigned XPI": TESTROOT + "unsigned.xpi"
|
|
|
|
}));
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
|
|
gBrowser.loadURI(TESTROOT + "installtrigger.html?" + triggers);
|
|
|
|
}
|
|
|
|
|
|
|
|
function download_progress(addon, value, maxValue) {
|
|
|
|
gBrowser.loadURI("about:blank");
|
|
|
|
}
|
|
|
|
|
|
|
|
function check_xpi_install(addon, status) {
|
|
|
|
is(status, 0, "Install should succeed");
|
|
|
|
}
|
|
|
|
|
|
|
|
function finish_test() {
|
|
|
|
var em = Components.classes["@mozilla.org/extensions/manager;1"]
|
|
|
|
.getService(Components.interfaces.nsIExtensionManager);
|
|
|
|
em.cancelInstallItem("unsigned-xpi@tests.mozilla.org");
|
|
|
|
|
2010-04-03 00:36:55 -07:00
|
|
|
Services.perms.remove("example.com", "install");
|
2009-02-12 05:35:03 -08:00
|
|
|
|
|
|
|
gBrowser.removeCurrentTab();
|
|
|
|
Harness.finish();
|
|
|
|
}
|