4 <title>Notifications: ServiceWorkerRegistration.getNotifications() within a Service Worker.
</title>
5 <script src=
"../resources/testharness.js"></script>
6 <script src=
"../resources/testharnessreport.js"></script>
7 <script src=
"../serviceworker/resources/test-helpers.js"></script>
8 <script src=
"resources/test-helpers.js"></script>
12 // Tests that the getNotifications() function when used in a Service Worker
13 // return an array of the notifications which were previously displayed using
14 // the same Service Worker registration id.
15 async_test(function(test
) {
16 var scope
= 'resources/scope/' + location
.pathname
,
17 script
= 'resources/instrumentation-service-worker.js';
19 testRunner
.setPermission('notifications', 'granted', location
.origin
, location
.origin
);
22 getActiveServiceWorkerWithMessagePort(test
, script
, scope
).then(function(workerInfo
) {
25 // (1) Display two notifications in the Document.
26 return info
.registration
.showNotification('Hello, world!', {
27 body
: 'First notification'
30 return info
.registration
.showNotification('Hello again, world!', {
31 body
: 'Second notification'
34 // (2) Request the Service Worker to give us all notifications.
35 info
.port
.postMessage({
39 info
.port
.addEventListener('message', function(event
) {
40 if (typeof event
.data
!= 'object' || !event
.data
.command
) {
41 assert_unreached('Invalid message from the Service Worker.');
45 // (3) Confirm that the Service Worker was able to read both of them.
46 assert_equals(event
.data
.command
, 'get');
47 assert_true(event
.data
.success
);
49 var notifications
= event
.data
.notifications
;
51 assert_equals(notifications
.length
, 2);
53 // We don't want to make any promises about the order of the
54 // returned notifications in |notifications|.
55 var firstIndex
= notifications
[0].title
== 'Hello, world!' ? 0 : 1;
56 var secondIndex
= firstIndex
? 0 : 1;
58 assert_equals(notifications
[firstIndex
].title
, 'Hello, world!');
59 assert_equals(notifications
[firstIndex
].body
, 'First notification');
61 assert_equals(notifications
[secondIndex
].title
, 'Hello again, world!');
62 assert_equals(notifications
[secondIndex
].body
, 'Second notification');
66 }).catch(unreached_rejection(test
));
68 }, 'ServiceWorkerRegistration.getNotifications() returns the opened notifications within a Service Worker.');