summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/notification/desktop-notification/test_notification_tag.html
blob: 37bcb16c0299dfa682239d061eae5b5ae39007b6 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=782211
-->
<head>
  <title>Bug 782211</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=782211">Bug 782211</a>
<p id="display"></p>
<iframe name="sameDomain"></iframe>
<iframe name="anotherSameDomain"></iframe>
<iframe name="crossDomain"></iframe>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
<script type="text/javascript">
  const MOCK_CID = SpecialPowers.wrap(SpecialPowers.Components).ID("{dbe37e64-d9a3-402c-8d8a-0826c619f7ad}");
  const ALERTS_SERVICE_CONTRACT_ID = "@mozilla.org/alerts-service;1";

  var mockAlertsService = {
    showAlert: function(alert, alertListener) {
      notificationsCreated.push(alert.name);
      if (notificationsCreated.length == 3) {
        checkNotifications();
      }
    },

    showAlertNotification: function(imageUrl, title, text, textClickable,
                                    cookie, alertListener, name, dir,
                                    lang, data) {
      this.showAlert({ name: name });
    },

    QueryInterface: function(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: function(aOuter, aIID) {
      if (aOuter != null) {
        throw SpecialPowers.Components.results.NS_ERROR_NO_AGGREGATION;
      }
      return this.QueryInterface(aIID);
    }
  };
  mockAlertsService = SpecialPowers.wrapCallbackObject(mockAlertsService);

  var notificationsCreated = [];
  function checkNotifications() {
    // notifications created by the test1 origin
    var test1notifications = [];
    // notifications created by the test2 origin
    var test2notifications = [];
    for (var i = 0; i < notificationsCreated.length; i++) {
      var notificationName = notificationsCreated[i];
      if (notificationName.indexOf("test1") !== -1) {
        test1notifications.push(notificationsCreated[i]);
      } else if (notificationName.indexOf("test2") !== -1) {
        test2notifications.push(notificationsCreated[i]);
      }
    }

    is(test1notifications.length, 2, "2 notifications should be created by test1.example.org:80 origin.");
    is(test1notifications[0], test1notifications[1], "notification names should be identical.");
    is(test2notifications.length, 1, "1 notification should be created by test2.example.org:80 origin.");

    // Register original alerts service.
    SpecialPowers.wrap(SpecialPowers.Components).
      manager.QueryInterface(SpecialPowers.Ci.nsIComponentRegistrar).
      unregisterFactory(MOCK_CID, mockAlertsService);

    SimpleTest.finish();
  }

  if (window.Notification) {
    SimpleTest.waitForExplicitFinish();

    function showNotifications() {
      SpecialPowers.wrap(SpecialPowers.Components).
        manager.QueryInterface(SpecialPowers.Ci.nsIComponentRegistrar).
        registerFactory(MOCK_CID, "alerts service", ALERTS_SERVICE_CONTRACT_ID, mockAlertsService);

      // Load two frames with the same origin that create notification with the same tag.
      // Both pages should generate notifications with the same name, and thus the second
      // notification should replace the first.
      frames["sameDomain"].location.href = "http://test1.example.org:80/tests/dom/tests/mochitest/notification/create_notification.html";
      frames["anotherSameDomain"].location.href = "http://test1.example.org:80/tests/dom/tests/mochitest/notification/create_notification.html";

      // Load a frame with a different origin that creates a notification with the same tag.
      // The notification name should be different and thus no notifications should be replaced.
      frames["crossDomain"].location.href = "http://test2.example.org:80/tests/dom/tests/mochitest/notification/create_notification.html";
    }

    SpecialPowers.pushPrefEnv({'set': [["notification.prompt.testing", true],
                                       ["notification.prompt.testing.allow", true]]},
                              showNotifications);
  } else {
    ok(true, "Notifications are not enabled on the platform.");
  }
</script>
</body>
</html>