summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/im/test/browser/browser_chatNotifications.js
blob: f902a9132b85649da5fecacc097ebe7ddf48cb2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

/* import-globals-from ../../content/chat-messenger.js */

const { MockRegistrar } = ChromeUtils.importESModule(
  "resource://testing-common/MockRegistrar.sys.mjs"
);
const { ChatIcons } = ChromeUtils.importESModule(
  "resource:///modules/chatIcons.sys.mjs"
);

let originalAlertsServiceCID;
let alertShown;
const reset = () => {
  alertShown = false;
};

add_setup(async () => {
  reset();
  class MockAlertsService {
    QueryInterface = ChromeUtils.generateQI(["nsIAlertsService"]);
    showAlert(alertInfo, listener) {
      alertShown = true;
    }
  }
  originalAlertsServiceCID = MockRegistrar.register(
    "@mozilla.org/alerts-service;1",
    new MockAlertsService()
  );
});

registerCleanupFunction(() => {
  MockRegistrar.unregister(originalAlertsServiceCID);
});

add_task(async function testNotificationsDisabled() {
  Services.prefs.setBoolPref("mail.chat.show_desktop_notifications", false);

  Services.obs.notifyObservers(
    {
      who: "notifier",
      alias: "Notifier",
      time: Date.now() / 1000 - 10,
      displayMessage: "<strong>lorem ipsum</strong>",
      action: false,
      conversation: {
        isChat: true,
      },
    },
    "new-directed-incoming-message"
  );

  await TestUtils.waitForTick();
  ok(!alertShown, "No alert shown when they are disabled");

  Services.prefs.setBoolPref("mail.chat.show_desktop_notifications", true);
  reset();

  let soundPlayed = TestUtils.topicObserved("play-chat-notification-sound");
  Services.obs.notifyObservers(
    {
      who: "notifier",
      alias: "Notifier",
      time: Date.now() / 1000 - 5,
      displayMessage: "",
      action: false,
      conversation: {
        isChat: true,
      },
    },
    "new-directed-incoming-message"
  );
  await soundPlayed;
  ok(!alertShown, "No alert shown with main window focused");

  reset();

  await openChatTab();

  Services.obs.notifyObservers(
    {
      who: "notifier",
      alias: "Notifier",
      time: Date.now() / 1000,
      displayMessage: "",
      action: false,
      conversation: {
        isChat: true,
      },
    },
    "new-directed-incoming-message"
  );
  await TestUtils.waitForTick();
  ok(!alertShown, "No alert shown, no sound with chat tab focused");

  await closeChatTab();
});