mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-24 21:33:09 +09:00
76 lines
2.4 KiB
JavaScript
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");
|
|
|
|
/**
|
|
* Test that nsIUpdatePrompt doesn't display UI for showUpdateAvailable and
|
|
* showUpdateError when the app.update.silent preference is true.
|
|
*/
|
|
|
|
const WindowWatcher = {
|
|
openWindow: function(aParent, aUrl, aName, aFeatures, aArgs) {
|
|
gCheckFunc();
|
|
},
|
|
|
|
getNewPrompter: function(aParent) {
|
|
gCheckFunc();
|
|
},
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIWindowWatcher])
|
|
};
|
|
|
|
function run_test() {
|
|
setupTestCommon();
|
|
|
|
debugDump("testing nsIUpdatePrompt notifications should not be seen " +
|
|
"when the " + PREF_APP_UPDATE_SILENT + " preference is true");
|
|
|
|
Services.prefs.setBoolPref(PREF_APP_UPDATE_SILENT, true);
|
|
|
|
let windowWatcherCID =
|
|
MockRegistrar.register("@mozilla.org/embedcomp/window-watcher;1",
|
|
WindowWatcher);
|
|
do_register_cleanup(() => {
|
|
MockRegistrar.unregister(windowWatcherCID);
|
|
});
|
|
|
|
standardInit();
|
|
|
|
debugDump("testing showUpdateAvailable should not call openWindow");
|
|
writeUpdatesToXMLFile(getLocalUpdatesXMLString(""), false);
|
|
let patches = getLocalPatchString(null, null, null, null, null, null,
|
|
STATE_FAILED);
|
|
let updates = getLocalUpdateString(patches);
|
|
writeUpdatesToXMLFile(getLocalUpdatesXMLString(updates), true);
|
|
writeStatusFile(STATE_FAILED);
|
|
reloadUpdateManagerData();
|
|
|
|
gCheckFunc = check_showUpdateAvailable;
|
|
let update = gUpdateManager.activeUpdate;
|
|
gUP.showUpdateAvailable(update);
|
|
// Report a successful check after the call to showUpdateAvailable since it
|
|
// didn't throw and otherwise it would report no tests run.
|
|
Assert.ok(true,
|
|
"calling showUpdateAvailable should not attempt to open a window");
|
|
|
|
debugDump("testing showUpdateError should not call getNewPrompter");
|
|
gCheckFunc = check_showUpdateError;
|
|
update.errorCode = WRITE_ERROR;
|
|
gUP.showUpdateError(update);
|
|
// Report a successful check after the call to showUpdateError since it
|
|
// didn't throw and otherwise it would report no tests run.
|
|
Assert.ok(true,
|
|
"calling showUpdateError should not attempt to open a window");
|
|
|
|
doTestFinish();
|
|
}
|
|
|
|
function check_showUpdateAvailable() {
|
|
do_throw("showUpdateAvailable should not have called openWindow!");
|
|
}
|
|
|
|
function check_showUpdateError() {
|
|
do_throw("showUpdateError should not have seen getNewPrompter!");
|
|
}
|