summaryrefslogtreecommitdiffstats
path: root/dom/security/test/mixedcontentblocker/file_redirect_handler.sjs
blob: 4c134c00e88a063871baad4c93891da0436b53fd (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
// custom *.sjs file for
// Bug 1402363: Test Mixed Content Redirect Blocking.

const URL_PATH = "example.com/tests/dom/security/test/mixedcontentblocker/";

function handleRequest(request, response) {
  response.setHeader("Cache-Control", "no-cache", false);
  let queryStr = request.queryString;

  if (queryStr === "https-to-https-redirect") {
    response.setStatusLine("1.1", 302, "Found");
    response.setHeader(
      "Location",
      "https://" + URL_PATH + "file_redirect_handler.sjs?load",
      false
    );
    return;
  }

  if (queryStr === "https-to-http-redirect") {
    response.setStatusLine("1.1", 302, "Found");
    response.setHeader(
      "Location",
      "http://" + URL_PATH + "file_redirect_handler.sjs?load",
      false
    );
    return;
  }

  if (queryStr === "load") {
    response.setHeader("Content-Type", "text/html", false);
    response.write("foo");
    return;
  }
}