summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/postmessage-to-client.https.html
blob: a031ee2edf3c7d5d387f497f6d1067cd56974334 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<title>Service Worker: postMessage to Client</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/get-host-info.sub.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<script>
var frame;
var t = async_test('postMessage from ServiceWorker to Client');
t.step(function() {
    var scope = 'resources/blank.html';
    var host_info = get_host_info();
    var sw;
    service_worker_unregister_and_register(
        t, 'resources/postmessage-to-client-worker.js', scope)
      .then(function(registration) {
          return wait_for_state(t, registration.installing, 'activated');
        })
      .then(function() { return with_iframe(scope); })
      .then(function(f) {
          frame = f;
          sw = frame.contentWindow.navigator.serviceWorker;
          sw.onmessage = t.step_func(onMessage);
          sw.controller.postMessage('ping');
        })
      .catch(unreached_rejection(t));

    var result = [];
    var expected = ['Sending message via clients'];

    function onMessage(e) {
      assert_equals(e.bubbles, false, 'message events should not bubble.');
      assert_equals(e.cancelable, false, 'message events should not be cancelable.');
      assert_equals(e.origin, host_info['HTTPS_ORIGIN'], 'message event\'s origin should be set correctly.');
// XXXkhuey fixme!
//      assert_equals(e.source, sw.controller, 'source should be ServiceWorker.');

      var message = e.data;
      if (message === 'quit') {
        assert_array_equals(result, expected,
                            'Worker should post back expected messages.');
        frame.remove();
        service_worker_unregister_and_done(t, scope);
      } else {
        result.push(message);
      }
    }
  });
</script>