summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/test_eventsource_intercept.html
blob: b49f557792240282368273e1dbdd5ad8f03e3ba9 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<head>
  <title>Bug 1182103 - Test EventSource scenarios with fetch interception</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test"></pre>
<script class="testbody" type="text/javascript">

  function testFrame(src) {
    return new Promise(function(resolve, reject) {
      var iframe = document.createElement("iframe");
      iframe.src = src;
      window.onmessage = function(e) {
        if (e.data.status == "callback") {
          switch(e.data.data) {
            case "ok":
              ok(e.data.condition, e.data.message);
              break;
            case "ready":
              iframe.contentWindow.postMessage({status: "callback", data: "eventsource"}, "*");
              break;
            case "done":
              window.onmessage = null;
              iframe.src = "about:blank";
              document.body.removeChild(iframe);
              iframe = null;
              resolve();
              break;
            default:
              ok(false, "Something went wrong");
              break;
          }
        } else {
          ok(false, "Something went wrong");
        }
      };
      document.body.appendChild(iframe);
    });
  }

  function runTest() {
      Promise.resolve()
        .then(() => {
        info("Going to intercept and test opaque responses");
        return testFrame("eventsource/eventsource_register_worker.html" +
                         "?script=eventsource_opaque_response_intercept_worker.js");
      })
      .then(() => {
        return testFrame("eventsource/eventsource_opaque_response.html");
      })
      .then(() => {
        info("Going to intercept and test cors responses");
        return testFrame("eventsource/eventsource_register_worker.html" +
                         "?script=eventsource_cors_response_intercept_worker.js");
      })
      .then(() => {
        return testFrame("eventsource/eventsource_cors_response.html");
      })
      .then(() => {
        info("Going to intercept and test synthetic responses");
        return testFrame("eventsource/eventsource_register_worker.html" +
                         "?script=eventsource_synthetic_response_intercept_worker.js");
      })
      .then(() => {
        return testFrame("eventsource/eventsource_synthetic_response.html");
      })
      .then(() => {
        info("Going to intercept and test mixed content cors responses");
        return testFrame("https://example.com/tests/dom/serviceworkers/test/" +
                         "eventsource/eventsource_register_worker.html" +
                         "?script=eventsource_mixed_content_cors_response_intercept_worker.js");
      })
      .then(() => {
        return testFrame("https://example.com/tests/dom/serviceworkers/test/" +
                         "eventsource/eventsource_mixed_content_cors_response.html");
      })
      .then(SimpleTest.finish)
      .catch(function(e) {
        ok(false, "Some test failed with error " + e);
        SimpleTest.finish();
      });
  }

  SimpleTest.waitForExplicitFinish();
  SpecialPowers.pushPrefEnv({"set": [
    ["dom.serviceWorkers.exemptFromPerDomainMax", true],
    ["dom.serviceWorkers.enabled", true],
    ["dom.serviceWorkers.testing.enabled", true],
  ]}, runTest);
</script>
</pre>
</body>
</html>