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

Side by Side Diff: LayoutTests/http/tests/notifications/serviceworkerregistration-service-worker-no-permission.html

Issue 1100163002: Notifications: stop using notifications specific permission methods in LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@notifications_testrunner_setpermission
Patch Set: update 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Notifications: ServiceWorkerRegistration.showNotification().</title> 4 <title>Notifications: ServiceWorkerRegistration.showNotification().</title>
5 <script src="../resources/testharness.js"></script> 5 <script src="../resources/testharness.js"></script>
6 <script src="../resources/testharnessreport.js"></script> 6 <script src="../resources/testharnessreport.js"></script>
7 <script src="../serviceworker/resources/test-helpers.js"></script> 7 <script src="../serviceworker/resources/test-helpers.js"></script>
8 <script src="resources/test-helpers.js"></script> 8 <script src="resources/test-helpers.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
11 <script> 11 <script>
12 // Tests that the showNotification() function when used in a Service Worke r 12 // Tests that the showNotification() function when used in a Service Worke r
13 // rejects when no permission has been granted. This test requires the tes t runner. 13 // rejects when no permission has been granted. This test requires the tes t runner.
14 14
15 async_test(function(test) { 15 async_test(function(test) {
16 var scope = 'resources/scope/serviceworkerregistration-service-worker- click', 16 var scope = 'resources/scope/serviceworkerregistration-service-worker- click',
17 script = 'resources/instrumentation-service-worker.js'; 17 script = 'resources/instrumentation-service-worker.js';
18 18
19 testRunner.setPermission('notifications', 'denied', location.origin, l ocation.origin);
20 testRunner.grantWebNotificationPermission(location.origin, false);
21 getActiveServiceWorkerWithMessagePort(test, script, scope).then(functi on(workerInfo) { 19 getActiveServiceWorkerWithMessagePort(test, script, scope).then(functi on(workerInfo) {
22 // (1) Tell the Service Worker to display a Web Notification. 20 // (1) Tell the Service Worker to display a Web Notification.
23 workerInfo.port.postMessage({ 21 workerInfo.port.postMessage({
24 command: 'show', 22 command: 'show',
25 23
26 title: 'My Notification', 24 title: 'My Notification',
27 options: { body: 'Hello, world!' } 25 options: { body: 'Hello, world!' }
28 }); 26 });
29 27
30 workerInfo.port.addEventListener('message', function(event) { 28 workerInfo.port.addEventListener('message', function(event) {
(...skipping 10 matching lines...) Expand all
41 assert_equals(event.data.message, 'No notification permission has been granted for this origin.'); 39 assert_equals(event.data.message, 'No notification permission has been granted for this origin.');
42 40
43 test.done(); 41 test.done();
44 }); 42 });
45 }).catch(unreached_rejection(test)); 43 }).catch(unreached_rejection(test));
46 44
47 }, 'showNotification() must reject if no Web Notification permission has b een granted.'); 45 }, 'showNotification() must reject if no Web Notification permission has b een granted.');
48 </script> 46 </script>
49 </body> 47 </body>
50 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698