2010-06-02 02:13:03 -07:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Tests the menuitem for the background update check
|
|
|
|
|
|
|
|
var gManagerWindow;
|
|
|
|
|
|
|
|
function test() {
|
|
|
|
waitForExplicitFinish();
|
|
|
|
|
|
|
|
open_manager(null, function(aWindow) {
|
|
|
|
gManagerWindow = aWindow;
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function end_test() {
|
|
|
|
close_manager(gManagerWindow, function() {
|
|
|
|
finish();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
add_test(function() {
|
|
|
|
var menuitem = gManagerWindow.document.getElementById("utils-backgroudUpdateCheck");
|
|
|
|
|
|
|
|
function is_backgroundcheck_insync(aExpected) {
|
|
|
|
var enabled = Services.prefs.getBoolPref("extensions.update.enabled");
|
|
|
|
var checked = menuitem.getAttribute("checked") == "true";
|
|
|
|
is(enabled, aExpected, "Background check should be " + (aExpected ? "enabled" : "disabled"));
|
|
|
|
is(checked, enabled, "Background check menuitem should be in sync with preference");
|
|
|
|
}
|
|
|
|
|
|
|
|
is_backgroundcheck_insync(true);
|
|
|
|
info("Setting background check pref to true");
|
|
|
|
Services.prefs.setBoolPref("extensions.update.enabled", false);
|
|
|
|
is_backgroundcheck_insync(false);
|
|
|
|
info("Setting background check pref to false");
|
|
|
|
Services.prefs.setBoolPref("extensions.update.enabled", true);
|
|
|
|
is_backgroundcheck_insync(true);
|
2010-08-01 21:28:36 -07:00
|
|
|
/* XXX This is failing on OSX - need to investigate why
|
|
|
|
|
2010-06-02 02:13:03 -07:00
|
|
|
info("Clicking on background check menuitem - setting to unchecked");
|
|
|
|
var utilsBtn = gManagerWindow.document.getElementById("header-utils-btn");
|
|
|
|
utilsBtn.addEventListener("popupshown", function() {
|
|
|
|
EventUtils.synthesizeMouse(menuitem, 2, 2, { }, gManagerWindow);
|
|
|
|
executeSoon(function() {
|
|
|
|
is_backgroundcheck_insync(false);
|
|
|
|
info("Manually invoking command to toggle background update check on");
|
|
|
|
gManagerWindow.gViewController.doCommand("cmd_toggleBackgroundUpdateCheck");
|
|
|
|
is_backgroundcheck_insync(true);
|
|
|
|
run_next_test();
|
|
|
|
});
|
|
|
|
}, false);
|
|
|
|
EventUtils.synthesizeMouse(utilsBtn, 2, 2, { }, gManagerWindow);
|
2010-08-01 21:28:36 -07:00
|
|
|
*/
|
2010-06-02 02:13:03 -07:00
|
|
|
});
|