mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
801 B
JavaScript
26 lines
801 B
JavaScript
|
// ----------------------------------------------------------------------------
|
||
|
// Tests that calling InstallTrigger.startSoftwareUpdate works
|
||
|
function test() {
|
||
|
Harness.installEndedCallback = install_ended;
|
||
|
Harness.installsCompletedCallback = finish_test;
|
||
|
Harness.setup();
|
||
|
|
||
|
var pm = Services.perms;
|
||
|
pm.add(makeURI("http://example.com/"), "install", pm.ALLOW_ACTION);
|
||
|
|
||
|
gBrowser.selectedTab = gBrowser.addTab();
|
||
|
gBrowser.loadURI(TESTROOT + "startsoftwareupdate.html? " + encodeURIComponent(TESTROOT + "unsigned.xpi"));
|
||
|
}
|
||
|
|
||
|
function install_ended(install, addon) {
|
||
|
install.cancel();
|
||
|
}
|
||
|
|
||
|
function finish_test(count) {
|
||
|
is(count, 1, "1 Add-on should have been successfully installed");
|
||
|
Services.perms.remove("example.com", "install");
|
||
|
|
||
|
gBrowser.removeCurrentTab();
|
||
|
Harness.finish();
|
||
|
}
|