4 <title>Notifications: ServiceWorkerRegistration.showNotification().
</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 showNotification() function resolves a promise, that the
13 // notificationclick event gets fired on the Service Worker when we simulate a
14 // click on it, and the notification can then be closed. This test requires
16 async_test(function(test
) {
17 var scope
= 'resources/scope/serviceworkerregistration-document-close',
18 script
= 'resources/instrumentation-service-worker.js';
20 testRunner
.setPermission('notifications', 'granted', location
.origin
, location
.origin
);
22 var workerInfo
= null;
23 getActiveServiceWorkerWithMessagePort(test
, script
, scope
).then(function(info
) {
26 // (1) Display a Web Notification from the document.
27 assert_inherits(workerInfo
.registration
, 'showNotification', 'showNotification() must be exposed.');
28 return workerInfo
.registration
.showNotification(scope
, {
33 // (2) Simulate a click on the notification that has been displayed.
34 testRunner
.simulateWebNotificationClick(scope
);
36 workerInfo
.port
.addEventListener('message', function(event
) {
37 if (typeof event
.data
!= 'object' || !event
.data
.command
) {
38 assert_unreached('Received an invalid message from the Service Worker.');
42 // (3) Verify that the click event was received by the Service Worker.
43 assert_equals(event
.data
.command
, 'click');
44 assert_equals(event
.data
.notification
.title
, scope
);
46 // FIXME: The notification has now been closed by the Service Worker. In
47 // order to verify that this works correctly, we need to support the
48 // Notification.get() getter, which is not implemented yet.
52 }).catch(unreached_rejection(test
));
54 }, 'Clicking on a notification displayed through showNotification() fires a Service Worker event, and can be closed there.');