Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: LayoutTests/http/tests/notifications/serviceworkerregistration-get-close.html

Issue 1056573002: Introduce layout tests for SWR.getNotifications() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <title>Notifications: ServiceWorkerRegistration.getNotifications() and closi ng notifications.</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>
9 </head>
10 <body>
11 <script>
12 // Tests that the getNotifications() function when used in a document retu rns
13 // an array of the notifications which were previously displayed, and that closing
14 // one of them reflects when getting the notifications again.
15 async_test(function(test) {
16 var scope = 'resources/scope/' + location.pathname,
17 script = 'resources/instrumentation-service-worker.js';
18
19 testRunner.grantWebNotificationPermission(location.origin, true);
20
21 var registration = null;
22 getActiveServiceWorkerWithMessagePort(test, script, scope).then(functi on(workerInfo) {
23 registration = workerInfo.registration;
24
25 return registration.showNotification('Hello, world!', {
26 body: 'First notification'
27 });
28 }).then(function() {
29 return registration.getNotifications();
30 }).then(function(notifications) {
31 assert_equals(notifications.length, 1);
32 assert_equals(notifications[0].title, 'Hello, world!');
33
34 notifications[0].close();
35
36 return registration.getNotifications();
37 }).then(function(notifications) {
38 assert_equals(notifications.length, 0);
39 test.done();
40 }).catch(unreached_rejection(test));
41
42 }, 'ServiceWorkerRegistration.getNotifications() reflects closing notifica tions.');
43 </script>
44 </body>
45 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698