mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
51 lines
1.9 KiB
JavaScript
51 lines
1.9 KiB
JavaScript
// Load in the test harness
|
|
var scriptLoader = Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
|
|
.getService(Components.interfaces.mozIJSSubScriptLoader);
|
|
|
|
|
|
var rootDir = getRootDirectory(window.location.href);
|
|
scriptLoader.loadSubScript(rootDir + "harness.js", this);
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Test that an install that requires cookies to be sent succeeds when cookies
|
|
// are set
|
|
// This verifies bug 462739
|
|
function test() {
|
|
Harness.installEndedCallback = check_xpi_install;
|
|
Harness.installsCompletedCallback = finish_test;
|
|
Harness.setup();
|
|
|
|
var cm = Components.classes["@mozilla.org/cookiemanager;1"]
|
|
.getService(Components.interfaces.nsICookieManager2);
|
|
cm.add("example.com", "/browser/xpinstall/tests", "xpinstall", "true", false,
|
|
false, true, (Date.now() / 1000) + 60);
|
|
|
|
var pm = Services.perms;
|
|
pm.add(makeURI("http://example.com/"), "install", pm.ALLOW_ACTION);
|
|
|
|
var triggers = encodeURIComponent(JSON.stringify({
|
|
"Cookie check": TESTROOT + "cookieRedirect.sjs?" + TESTROOT + "unsigned.xpi"
|
|
}));
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
gBrowser.loadURI(TESTROOT + "installtrigger.html?" + triggers);
|
|
}
|
|
|
|
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");
|
|
|
|
var cm = Components.classes["@mozilla.org/cookiemanager;1"]
|
|
.getService(Components.interfaces.nsICookieManager2);
|
|
cm.remove("example.com", "xpinstall", "/browser/xpinstall/tests", false);
|
|
|
|
Services.perms.remove("example.com", "install");
|
|
|
|
gBrowser.removeCurrentTab();
|
|
Harness.finish();
|
|
}
|