Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
"use strict";
ChromeUtils.defineESModuleGetters(this, {
});
async function test_app_update_auto(expectedEnabled, expectedLocked) {
const actualEnabled = await UpdateUtils.getAppUpdateAutoEnabled();
is(
actualEnabled,
expectedEnabled,
`Actual auto update enabled setting should match the expected value of ${expectedEnabled}`
);
const actualLocked = UpdateUtils.appUpdateAutoSettingIsLocked();
is(
actualLocked,
expectedLocked,
`Auto update enabled setting ${
expectedLocked ? "should" : "should not"
} be locked`
);
let setSuccess = true;
try {
await UpdateUtils.setAppUpdateAutoEnabled(actualEnabled);
} catch (error) {
setSuccess = false;
}
is(
setSuccess,
!expectedLocked,
`Setting auto update ${expectedLocked ? "should" : "should not"} fail`
);
const tabmail = document.getElementById("tabmail");
const prefsTabMode = tabmail.tabModes.preferencesTab;
const prefsDocument = await new Promise(resolve => {
Services.obs.addObserver(function documentLoaded(subject) {
if (subject.URL == "about:preferences") {
Services.obs.removeObserver(documentLoaded, "chrome-document-loaded");
resolve(subject);
}
}, "chrome-document-loaded");
window.openPreferencesTab("paneGeneral", "updateApp");
});
await new Promise(resolve => setTimeout(resolve));
is(
prefsDocument.getElementById("updateSettingsContainer").hidden,
expectedLocked,
`When auto update ${
expectedLocked ? "is" : "isn't"
} locked, the corresponding preferences entry ${
expectedLocked ? "should" : "shouldn't"
} be hidden`
);
tabmail.closeTab(prefsTabMode.tabs[0]);
}
add_task(async function test_app_auto_update_policy() {
const originalUpdateAutoValue = await UpdateUtils.getAppUpdateAutoEnabled();
registerCleanupFunction(async () => {
await UpdateUtils.setAppUpdateAutoEnabled(originalUpdateAutoValue);
});
await UpdateUtils.setAppUpdateAutoEnabled(true);
await test_app_update_auto(true, false);
await setupPolicyEngineWithJson({
policies: {
AppAutoUpdate: false,
},
});
await test_app_update_auto(false, true);
await setupPolicyEngineWithJson({});
await UpdateUtils.setAppUpdateAutoEnabled(false);
await test_app_update_auto(false, false);
await setupPolicyEngineWithJson({
policies: {
AppAutoUpdate: true,
},
});
await test_app_update_auto(true, true);
});