mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
|
// ----------------------------------------------------------------------------
|
||
|
// Tests installing an unsigned add-on through a navigation. Should be
|
||
|
// blocked since the referer is not whitelisted even though the target is.
|
||
|
function test() {
|
||
|
Harness.installBlockedCallback = allow_blocked;
|
||
|
Harness.installsCompletedCallback = finish_test;
|
||
|
Harness.setup();
|
||
|
|
||
|
var pm = Services.perms;
|
||
|
pm.add(makeURI("http://example.com/"), "install", pm.ALLOW_ACTION);
|
||
|
|
||
|
var triggers = encodeURIComponent(JSON.stringify({
|
||
|
"Unsigned XPI": TESTROOT2 + "unsigned.xpi"
|
||
|
}));
|
||
|
gBrowser.selectedTab = gBrowser.addTab();
|
||
|
gBrowser.loadURI(TESTROOT + "unsigned.xpi", makeURI(TESTROOT2 + "test.html"));
|
||
|
}
|
||
|
|
||
|
function allow_blocked(installInfo) {
|
||
|
is(installInfo.originatingWindow, gBrowser.contentWindow, "Install should have been triggered by the right window");
|
||
|
is(installInfo.originatingURI.spec, TESTROOT2 + "test.html", "Install should have been triggered by the right uri");
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
function finish_test(count) {
|
||
|
is(count, 0, "No add-ons should have been installed");
|
||
|
Services.perms.remove("example.com", "install");
|
||
|
|
||
|
gBrowser.removeCurrentTab();
|
||
|
Harness.finish();
|
||
|
}
|