Files
UXP-Fixed/toolkit/mozapps/update/tests/unit_aus_update/uiAutoPref.js
T
2018-02-02 04:16:08 -05:00

76 lines
2.4 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
Components.utils.import("resource://testing-common/MockRegistrar.jsm");
const WindowWatcher = {
openWindow: function(aParent, aUrl, aName, aFeatures, aArgs) {
gCheckFunc();
},
QueryInterface: XPCOMUtils.generateQI([Ci.nsIWindowWatcher])
};
const WindowMediator = {
getMostRecentWindow: function(aWindowType) {
do_execute_soon(check_status);
return { getInterface: XPCOMUtils.generateQI([Ci.nsIDOMWindow]) };
},
QueryInterface: XPCOMUtils.generateQI([Ci.nsIWindowMediator])
};
function run_test() {
setupTestCommon();
// Calling do_get_profile prevents an error from being logged
do_get_profile();
debugDump("testing that an update download doesn't start when the " +
PREF_APP_UPDATE_AUTO + " preference is false");
Services.prefs.setBoolPref(PREF_APP_UPDATE_AUTO, false);
Services.prefs.setBoolPref(PREF_APP_UPDATE_SILENT, false);
start_httpserver();
setUpdateURL(gURLData + gHTTPHandlerPath);
standardInit();
let windowWatcherCID =
MockRegistrar.register("@mozilla.org/embedcomp/window-watcher;1",
WindowWatcher);
let windowMediatorCID =
MockRegistrar.register("@mozilla.org/appshell/window-mediator;1",
WindowMediator);
do_register_cleanup(() => {
MockRegistrar.unregister(windowWatcherCID);
MockRegistrar.unregister(windowMediatorCID);
});
gCheckFunc = check_showUpdateAvailable;
let patches = getRemotePatchString("complete");
let updates = getRemoteUpdateString(patches, "minor", null, null, "1.0");
gResponseBody = getRemoteUpdatesXMLString(updates);
gAUS.notify(null);
}
function check_status() {
let status = readStatusFile();
Assert.notEqual(status, STATE_DOWNLOADING,
"the update state" + MSG_SHOULD_EQUAL);
// Pause the download and reload the Update Manager with an empty update so
// the Application Update Service doesn't write the update xml files during
// xpcom-shutdown which will leave behind the test directory.
gAUS.pauseDownload();
writeUpdatesToXMLFile(getLocalUpdatesXMLString(""), true);
writeUpdatesToXMLFile(getLocalUpdatesXMLString(""), false);
reloadUpdateManagerData();
do_execute_soon(doTestFinish);
}
function check_showUpdateAvailable() {
do_throw("showUpdateAvailable should not have called openWindow!");
}