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

Unified Diff: LayoutTests/http/tests/serviceworker/serviceworker-message-event.html

Issue 1130113006: ServiceWorker: Introduce ServiceWorkerMessageEvent to replace MessageEvent (3/3). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: make more tests pass Created 5 years, 6 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: LayoutTests/http/tests/serviceworker/serviceworker-message-event.html
diff --git a/LayoutTests/http/tests/serviceworker/serviceworker-message-event.html b/LayoutTests/http/tests/serviceworker/serviceworker-message-event.html
new file mode 100644
index 0000000000000000000000000000000000000000..7f9d7526c532105e7663c5512c0e3199267e80fd
--- /dev/null
+++ b/LayoutTests/http/tests/serviceworker/serviceworker-message-event.html
@@ -0,0 +1,47 @@
+<!DOCTYPE html>
+<title>Service Worker: ServiceWorkerMessageEvent</title>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharness-helpers.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="resources/test-helpers.js"></script>
+<script>
+
+promise_test(function(t) {
+ var scope = 'resources/blank.html';
+ var url = 'resources/postmessage-to-client-worker.js';
+ return service_worker_unregister_and_register(t, url, scope)
+ .then(function(r) {
+ return wait_for_state(t, r.installing, 'activated');
+ })
+ .then(function() {
+ return with_iframe(scope);
+ })
+ .then(function(frame) {
+ var w = frame.contentWindow;
+ var worker = w.navigator.serviceWorker.controller;
+ // Test constructor with ServiceWorker object as source.
+ var e = new ServiceWorkerMessageEvent('eventType', {source: worker});
+ assert_equals(e.source, worker,
+ 'Source should equal to the passing service worker');
+ return new Promise(function(resolve) {
+ w.navigator.serviceWorker.onmessage = t.step_func(function(e) {
+ assert_true(
+ e instanceof w.ServiceWorkerMessageEvent,
+ 'Instance type should be ServiceWorkerMessageEvent');
+ assert_true(e.source instanceof w.ServiceWorker,
+ 'Source type should be ServiceWorker');
+ assert_equals(e.type, 'message',
+ 'Event type should be "message"');
+ assert_equals(e.source, worker,
+ 'Source worker should equal to the controller');
+ resolve();
+ });
+ worker.postMessage('PING');
+ });
+ })
+ .then(function() {
+ return service_worker_unregister_and_done(t, scope);
+ });
+ }, 'Test ServiceWorkerMessageEvent type.');
+
+</script>

Powered by Google App Engine
This is Rietveld 408576698