summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/tests/browser_notifications_do_not_disturb.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /browser/components/preferences/tests/browser_notifications_do_not_disturb.js
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/preferences/tests/browser_notifications_do_not_disturb.js')
-rw-r--r--browser/components/preferences/tests/browser_notifications_do_not_disturb.js57
1 files changed, 57 insertions, 0 deletions
diff --git a/browser/components/preferences/tests/browser_notifications_do_not_disturb.js b/browser/components/preferences/tests/browser_notifications_do_not_disturb.js
new file mode 100644
index 0000000000..afc31b9041
--- /dev/null
+++ b/browser/components/preferences/tests/browser_notifications_do_not_disturb.js
@@ -0,0 +1,57 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+registerCleanupFunction(function () {
+ while (gBrowser.tabs[1]) {
+ gBrowser.removeTab(gBrowser.tabs[1]);
+ }
+});
+
+add_task(async function () {
+ let prefs = await openPreferencesViaOpenPreferencesAPI("panePrivacy", {
+ leaveOpen: true,
+ });
+ is(prefs.selectedPane, "panePrivacy", "Privacy pane was selected");
+
+ let doc = gBrowser.contentDocument;
+ let notificationsDoNotDisturbBox = doc.getElementById(
+ "notificationsDoNotDisturbBox"
+ );
+ if (notificationsDoNotDisturbBox.hidden) {
+ todo(false, "Do not disturb is not available on this platform");
+ return;
+ }
+
+ let alertService;
+ try {
+ alertService = Cc["@mozilla.org/alerts-service;1"]
+ .getService(Ci.nsIAlertsService)
+ .QueryInterface(Ci.nsIAlertsDoNotDisturb);
+ } catch (ex) {
+ ok(true, "Do not disturb is not available on this platform: " + ex.message);
+ return;
+ }
+
+ let checkbox = doc.getElementById("notificationsDoNotDisturb");
+ ok(!checkbox.checked, "Checkbox should not be checked by default");
+ ok(
+ !alertService.manualDoNotDisturb,
+ "Do not disturb should be off by default"
+ );
+
+ let checkboxChanged = BrowserTestUtils.waitForEvent(checkbox, "command");
+ checkbox.click();
+ await checkboxChanged;
+ ok(
+ alertService.manualDoNotDisturb,
+ "Do not disturb should be enabled when checked"
+ );
+
+ checkboxChanged = BrowserTestUtils.waitForEvent(checkbox, "command");
+ checkbox.click();
+ await checkboxChanged;
+ ok(
+ !alertService.manualDoNotDisturb,
+ "Do not disturb should be disabled when unchecked"
+ );
+});