tenfourfox/toolkit/mozapps/extensions/test/xpinstall/browser_offline.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

63 lines
1.9 KiB
JavaScript

var proxyPrefValue;
// ----------------------------------------------------------------------------
// Tests that going offline cancels an in progress download.
function test() {
Harness.downloadProgressCallback = download_progress;
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": TESTROOT + "unsigned.xpi"
}));
gBrowser.selectedTab = gBrowser.addTab();
gBrowser.loadURI(TESTROOT + "installtrigger.html?" + triggers);
}
function download_progress(addon, value, maxValue) {
try {
// Tests always connect to localhost, and per bug 87717, localhost is now
// reachable in offline mode. To avoid this, disable any proxy.
proxyPrefValue = Services.prefs.getIntPref("network.proxy.type");
Services.prefs.setIntPref("network.proxy.type", 0);
Services.io.manageOfflineStatus = false;
Services.io.offline = true;
} catch (ex) {
}
}
function finish_test(count) {
function wait_for_online() {
info("Checking if the browser is still offline...");
let tab = gBrowser.selectedTab;
ContentTask.spawn(tab.linkedBrowser, null, () => {
return ContentTaskUtils.waitForEvent(this, "DOMContentLoaded", true);
}).then(() => {
let url = tab.linkedBrowser.contentDocument.documentURI;
info("loaded: " + url);
if (/^about:neterror\?e=netOffline/.test(url)) {
wait_for_online();
} else {
gBrowser.removeCurrentTab();
Harness.finish();
}
});
tab.linkedBrowser.loadURI("http://example.com/");
}
is(count, 0, "No add-ons should have been installed");
try {
Services.prefs.setIntPref("network.proxy.type", proxyPrefValue);
Services.io.offline = false;
} catch (ex) {
}
Services.perms.remove(makeURI("http://example.com"), "install");
wait_for_online();
}