summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/file_upgrade_insecure_navigation.sjs
blob: 51afa39bf78917e22925dce07432e5834ebc94a8 (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
// Custom *.sjs file specifically for the needs of
// https://bugzilla.mozilla.org/show_bug.cgi?id=1271173

"use strict";
Components.utils.importGlobalProperties(["URLSearchParams"]);

const TEST_NAVIGATIONAL_UPGRADE = `
  <!DOCTYPE html>
  <html>
  <head><meta charset="utf-8"></head>
  <body>
  <a href="http://example.com/tests/dom/security/test/csp/file_upgrade_insecure_navigation.sjs?action=framenav" id="testlink">clickme</a>
  <script type="text/javascript">
    // before navigating the current frame we open the window and check that uir applies
    var myWin = window.open("http://example.com/tests/dom/security/test/csp/file_upgrade_insecure_navigation.sjs?action=docnav");

    window.addEventListener("message", receiveMessage, false);
    function receiveMessage(event) {
      myWin.close();
      var link = document.getElementById('testlink');
      link.click();
    }
  </script>
  </body>
  </html>`;

const FRAME_NAV = `
  <!DOCTYPE html>
  <html>
  <head><meta charset="utf-8"></head>
  <body>
  <script type="text/javascript">
    parent.postMessage({result: document.documentURI}, "*");
  </script>
  </body>
  </html>`;

const DOC_NAV = `
  <!DOCTYPE html>
  <html>
  <head><meta charset="utf-8"></head>
  <body>
  <script type="text/javascript">
    // call back to the main testpage signaling whether the upgraded succeeded
    window.opener.parent.postMessage({result: document.documentURI}, "*");
    // let the opener (iframe) now that we can now close the window and move on with the test.
    window.opener.postMessage({result: "readyToMoveOn"}, "*");
  </script>
  </body>
  </html>`;

function handleRequest(request, response) {
  const query = new URLSearchParams(request.queryString);

  response.setHeader("Cache-Control", "no-cache", false);
  response.setHeader("Content-Type", "text/html", false);
  if (query.get("csp")) {
    response.setHeader("Content-Security-Policy", query.get("csp"), false);
  }

  if (query.get("action") === "perform_navigation") {
    response.write(TEST_NAVIGATIONAL_UPGRADE);
    return;
  }

  if (query.get("action") === "framenav") {
    response.write(FRAME_NAV);
    return;
  }

  if (query.get("action") === "docnav") {
    response.write(DOC_NAV);
    return;
  }

  // we should never get here, but just in case
  // return something unexpected
  response.write("do'h");
}