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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/notifications/serviceworkerregistration-document-close.html

Issue 1907443007: Use promises in notifications tests and enable controlling the page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Address peter's comments. Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/notifications/serviceworkerregistration-document-close.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/notifications/serviceworkerregistration-document-close.html b/third_party/WebKit/LayoutTests/http/tests/notifications/serviceworkerregistration-document-close.html
index 95d1fdc0d061b0737d040822490bb69e6d6a73a8..a21d70bc273f0d22eadf91cc91fad9f7d77a6399 100644
--- a/third_party/WebKit/LayoutTests/http/tests/notifications/serviceworkerregistration-document-close.html
+++ b/third_party/WebKit/LayoutTests/http/tests/notifications/serviceworkerregistration-document-close.html
@@ -14,41 +14,33 @@
// click on it, and the notification can then be closed. This test requires
// the test runner.
async_test(function(test) {
- var scope = 'resources/scope/serviceworkerregistration-document-close',
- script = 'resources/instrumentation-service-worker.js';
+ var scope = 'resources/scope/serviceworkerregistration-document-close';
+ var script = 'instrumentation-service-worker.js';
+ var port;
testRunner.setPermission('notifications', 'granted', location.origin, location.origin);
- var workerInfo = null;
getActiveServiceWorkerWithMessagePort(test, script, scope).then(function(info) {
- workerInfo = info;
+ port = info.port;
- // (1) Display a Web Notification from the document.
- assert_inherits(workerInfo.registration, 'showNotification', 'showNotification() must be exposed.');
- return workerInfo.registration.showNotification(scope, {
+ // (1) Show a notification from the document. It will be closed by the service worker.
+ assert_inherits(info.registration, 'showNotification', 'showNotification() must be exposed.');
+ return info.registration.showNotification(scope, {
body: 'ACTION:CLOSE',
icon: '/icon.png'
});
}).then(function() {
// (2) Simulate a click on the notification that has been displayed.
- testRunner.simulateWebNotificationClick(scope, -1 /* action_index */);
-
- workerInfo.port.addEventListener('message', function(event) {
- if (typeof event.data != 'object' || !event.data.command) {
- assert_unreached('Received an invalid message from the Service Worker.');
- return;
- }
-
- // (3) Verify that the click event was received by the Service Worker.
- assert_equals(event.data.command, 'click');
- assert_equals(event.data.notification.title, scope);
-
- // FIXME: The notification has now been closed by the Service Worker. In
- // order to verify that this works correctly, we need to support the
- // Notification.get() getter, which is not implemented yet.
-
- test.done();
- });
+ return simulateNotificationClick(scope, -1 /* action_index */, port);
+ }).then(function(data) {
+ // (3) Verify that the correct notification was closed.
+ assert_equals(event.data.notification.title, scope);
+ return sendCommand(port, { command: 'get' });
+ }).then(function(data) {
+ // (4) Verify there are no more open notifications.
+ assert_equals(data.notifications.length, 0);
+
+ test.done();
}).catch(unreached_rejection(test));
}, 'Clicking on a notification displayed through showNotification() fires a Service Worker event, and can be closed there.');

Powered by Google App Engine
This is Rietveld 408576698