summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/in-content/tests/browser_defaultbrowser_alwayscheck.js
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /browser/components/preferences/in-content/tests/browser_defaultbrowser_alwayscheck.js
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'browser/components/preferences/in-content/tests/browser_defaultbrowser_alwayscheck.js')
-rw-r--r--browser/components/preferences/in-content/tests/browser_defaultbrowser_alwayscheck.js103
1 files changed, 103 insertions, 0 deletions
diff --git a/browser/components/preferences/in-content/tests/browser_defaultbrowser_alwayscheck.js b/browser/components/preferences/in-content/tests/browser_defaultbrowser_alwayscheck.js
new file mode 100644
index 000000000..b30b6d9e2
--- /dev/null
+++ b/browser/components/preferences/in-content/tests/browser_defaultbrowser_alwayscheck.js
@@ -0,0 +1,103 @@
+"use strict";
+
+const CHECK_DEFAULT_INITIAL = Services.prefs.getBoolPref("browser.shell.checkDefaultBrowser");
+
+add_task(function* clicking_make_default_checks_alwaysCheck_checkbox() {
+ yield BrowserTestUtils.openNewForegroundTab(gBrowser, "about:preferences");
+
+ yield test_with_mock_shellservice({isDefault: false}, function*() {
+ let setDefaultPane = content.document.getElementById("setDefaultPane");
+ Assert.equal(setDefaultPane.selectedIndex, "0",
+ "The 'make default' pane should be visible when not default");
+ let alwaysCheck = content.document.getElementById("alwaysCheckDefault");
+ Assert.ok(!alwaysCheck.checked, "Always Check is unchecked by default");
+ Assert.ok(!Services.prefs.getBoolPref("browser.shell.checkDefaultBrowser"),
+ "alwaysCheck pref should be false by default in test runs");
+
+ let setDefaultButton = content.document.getElementById("setDefaultButton");
+ setDefaultButton.click();
+ content.window.gMainPane.updateSetDefaultBrowser();
+
+ yield ContentTaskUtils.waitForCondition(() => alwaysCheck.checked,
+ "'Always Check' checkbox should get checked after clicking the 'Set Default' button");
+
+ Assert.ok(alwaysCheck.checked,
+ "Clicking 'Make Default' checks the 'Always Check' checkbox");
+ Assert.ok(Services.prefs.getBoolPref("browser.shell.checkDefaultBrowser"),
+ "Checking the checkbox should set the pref to true");
+ Assert.ok(alwaysCheck.disabled,
+ "'Always Check' checkbox is locked with default browser and alwaysCheck=true");
+ Assert.equal(setDefaultPane.selectedIndex, "1",
+ "The 'make default' pane should not be visible when default");
+ Assert.ok(Services.prefs.getBoolPref("browser.shell.checkDefaultBrowser"),
+ "checkDefaultBrowser pref is now enabled");
+ });
+
+ gBrowser.removeCurrentTab();
+ Services.prefs.clearUserPref("browser.shell.checkDefaultBrowser");
+});
+
+add_task(function* clicking_make_default_checks_alwaysCheck_checkbox() {
+ Services.prefs.lockPref("browser.shell.checkDefaultBrowser");
+ yield BrowserTestUtils.openNewForegroundTab(gBrowser, "about:preferences");
+
+ yield test_with_mock_shellservice({isDefault: false}, function*() {
+ let setDefaultPane = content.document.getElementById("setDefaultPane");
+ Assert.equal(setDefaultPane.selectedIndex, "0",
+ "The 'make default' pane should be visible when not default");
+ let alwaysCheck = content.document.getElementById("alwaysCheckDefault");
+ Assert.ok(alwaysCheck.disabled, "Always Check is disabled when locked");
+ Assert.ok(alwaysCheck.checked,
+ "Always Check is checked because defaultPref is true and pref is locked");
+ Assert.ok(Services.prefs.getBoolPref("browser.shell.checkDefaultBrowser"),
+ "alwaysCheck pref should ship with 'true' by default");
+
+ let setDefaultButton = content.document.getElementById("setDefaultButton");
+ setDefaultButton.click();
+ content.window.gMainPane.updateSetDefaultBrowser();
+
+ yield ContentTaskUtils.waitForCondition(() => setDefaultPane.selectedIndex == "1",
+ "Browser is now default");
+
+ Assert.ok(alwaysCheck.checked,
+ "'Always Check' is still checked because it's locked");
+ Assert.ok(alwaysCheck.disabled,
+ "'Always Check is disabled because it's locked");
+ Assert.ok(Services.prefs.getBoolPref("browser.shell.checkDefaultBrowser"),
+ "The pref is locked and so doesn't get changed");
+ });
+
+ Services.prefs.unlockPref("browser.shell.checkDefaultBrowser");
+ gBrowser.removeCurrentTab();
+});
+
+registerCleanupFunction(function() {
+ Services.prefs.unlockPref("browser.shell.checkDefaultBrowser");
+ Services.prefs.setBoolPref("browser.shell.checkDefaultBrowser", CHECK_DEFAULT_INITIAL);
+});
+
+function* test_with_mock_shellservice(options, testFn) {
+ yield ContentTask.spawn(gBrowser.selectedBrowser, options, function*(options) {
+ let doc = content.document;
+ let win = doc.defaultView;
+ win.oldShellService = win.getShellService();
+ let mockShellService = {
+ _isDefault: false,
+ isDefaultBrowser() {
+ return this._isDefault;
+ },
+ setDefaultBrowser() {
+ this._isDefault = true;
+ },
+ };
+ win.getShellService = function() {
+ return mockShellService;
+ }
+ mockShellService._isDefault = options.isDefault;
+ win.gMainPane.updateSetDefaultBrowser();
+ });
+
+ yield ContentTask.spawn(gBrowser.selectedBrowser, null, testFn);
+
+ Services.prefs.setBoolPref("browser.shell.checkDefaultBrowser", CHECK_DEFAULT_INITIAL);
+}