summaryrefslogtreecommitdiffstats
path: root/dom/notification/test/mochitest/MockServices.js
blob: 0f50bcf5bfd6bf3baa77be3b84e836bb78cce4de (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/* eslint-disable mozilla/use-chromeutils-generateqi */
var MockServices = (function () {
  "use strict";

  const MOCK_ALERTS_CID = SpecialPowers.wrap(SpecialPowers.Components).ID(
    "{48068bc2-40ab-4904-8afd-4cdfb3a385f3}"
  );
  const ALERTS_SERVICE_CONTRACT_ID = "@mozilla.org/alerts-service;1";

  const MOCK_SYSTEM_ALERTS_CID = SpecialPowers.wrap(
    SpecialPowers.Components
  ).ID("{e86d888c-e41b-4b78-9104-2f2742a532de}");
  const SYSTEM_ALERTS_SERVICE_CONTRACT_ID =
    "@mozilla.org/system-alerts-service;1";

  var registrar = SpecialPowers.wrap(
    SpecialPowers.Components
  ).manager.QueryInterface(SpecialPowers.Ci.nsIComponentRegistrar);

  var activeAlertNotifications = Object.create(null);

  var activeAppNotifications = Object.create(null);

  window.addEventListener("mock-notification-close-event", function (e) {
    for (var alertName in activeAlertNotifications) {
      var notif = activeAlertNotifications[alertName];
      if (notif.title === e.detail.title) {
        notif.listener.observe(null, "alertfinished", null);
        delete activeAlertNotifications[alertName];
        delete activeAppNotifications[alertName];
        return;
      }
    }
  });

  var mockAlertsService = {
    showPersistentNotification(persistentData, alert, alertListener) {
      this.showAlert(alert, alertListener);
    },

    showAlert(alert, alertListener) {
      var listener = SpecialPowers.wrap(alertListener);
      activeAlertNotifications[alert.name] = {
        listener,
        cookie: alert.cookie,
        title: alert.title,
      };

      // fake async alert show event
      if (listener) {
        setTimeout(function () {
          listener.observe(null, "alertshow", alert.cookie);
        }, 100);
        setTimeout(function () {
          listener.observe(null, "alertclickcallback", alert.cookie);
        }, 100);
      }
    },

    showAlertNotification(
      imageUrl,
      title,
      text,
      textClickable,
      cookie,
      alertListener,
      name
    ) {
      this.showAlert(
        {
          name,
          cookie,
          title,
        },
        alertListener
      );
    },

    closeAlert(name) {
      var alertNotification = activeAlertNotifications[name];
      if (alertNotification) {
        if (alertNotification.listener) {
          alertNotification.listener.observe(
            null,
            "alertfinished",
            alertNotification.cookie
          );
        }
        delete activeAlertNotifications[name];
      }

      var appNotification = activeAppNotifications[name];
      if (appNotification) {
        delete activeAppNotifications[name];
      }
    },

    QueryInterface(aIID) {
      if (
        SpecialPowers.wrap(aIID).equals(SpecialPowers.Ci.nsISupports) ||
        SpecialPowers.wrap(aIID).equals(SpecialPowers.Ci.nsIAlertsService)
      ) {
        return this;
      }
      throw SpecialPowers.Components.results.NS_ERROR_NO_INTERFACE;
    },

    createInstance(aIID) {
      return this.QueryInterface(aIID);
    },
  };
  mockAlertsService = SpecialPowers.wrapCallbackObject(mockAlertsService);

  // MockServices API
  return {
    register() {
      try {
        this.originalAlertsCID = registrar.contractIDToCID(
          ALERTS_SERVICE_CONTRACT_ID
        );
      } catch (ex) {
        this.originalAlertsCID = null;
      }
      try {
        this.originalSystemAlertsCID = registrar.contractIDToCID(
          SYSTEM_ALERTS_SERVICE_CONTRACT_ID
        );
      } catch (ex) {
        this.originalSystemAlertsCID = null;
      }

      registrar.registerFactory(
        MOCK_ALERTS_CID,
        "alerts service",
        ALERTS_SERVICE_CONTRACT_ID,
        mockAlertsService
      );

      registrar.registerFactory(
        MOCK_SYSTEM_ALERTS_CID,
        "system alerts service",
        SYSTEM_ALERTS_SERVICE_CONTRACT_ID,
        mockAlertsService
      );
    },

    unregister() {
      registrar.unregisterFactory(MOCK_ALERTS_CID, mockAlertsService);
      registrar.unregisterFactory(MOCK_SYSTEM_ALERTS_CID, mockAlertsService);

      // Passing `null` for the factory re-maps the contract ID to the
      // entry for its original CID.

      if (this.originalAlertsCID) {
        registrar.registerFactory(
          this.originalAlertsCID,
          "alerts service",
          ALERTS_SERVICE_CONTRACT_ID,
          null
        );
      }

      if (this.originalSystemAlertsCID) {
        registrar.registerFactory(
          this.originalSystemAlertsCID,
          "system alerts service",
          SYSTEM_ALERTS_SERVICE_CONTRACT_ID,
          null
        );
      }
    },

    activeAlertNotifications,

    activeAppNotifications,
  };
})();