summaryrefslogtreecommitdiffstats
path: root/dom/security/test/general/test_same_site_cookies_redirect.html
blob: 59f98b2263f53a5beb1cf10f281e2196e40efb72 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Bug 1453814 - Do not allow same-site cookies for cross origin redirect</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<img id="cookieImage">
<iframe id="testframe"></iframe>

<script class="testbody" type="text/javascript">

/*
 * Description of the test:
 * 1) We load an image from http://mochi.test which set a same site cookie
 * 2) We then load an iframe that redirects
 *    (a) from same-origin to cross-origin
 *    (b) from cross-origin to same-origin
 * 3) We observe that in both cases same-site cookies should not be send
 */

SimpleTest.waitForExplicitFinish();

const SAME_ORIGIN = location.origin + "/";
const CROSS_ORIGIN = "http://example.com/";
const PATH = "tests/dom/security/test/general/file_same_site_cookies_redirect.sjs";

let curTest = 0;

var tests = [
  {
    description: "baseline: same-site cookie, redirect same-site to same-site",
    imgSRC: SAME_ORIGIN + PATH + "?setSameSiteCookie",
    frameSRC: SAME_ORIGIN + PATH + "?sameToSameRedirect",
    result: "myKey=strictSameSiteCookie",
  },
  {
    description: "same-site cookie, redirect same-site to cross-site",
    imgSRC: SAME_ORIGIN + PATH + "?setSameSiteCookie",
    frameSRC: SAME_ORIGIN + PATH + "?sameToCrossRedirect",
    result: "", // no cookie should be set
  },
  {
    description: "same-site cookie, redirect cross-site to same-site",
    imgSRC: SAME_ORIGIN + PATH + "?setSameSiteCookie",
    frameSRC: CROSS_ORIGIN + PATH + "?crossToSameRedirect",
    result: "", // no cookie should be set
  },
  {
    description: "same-site cookie, meta redirect same-site to cross-site",
    imgSRC: SAME_ORIGIN + PATH + "?setSameSiteCookie",
    frameSRC: SAME_ORIGIN + PATH + "?sameToCrossRedirectMeta",
    result: "", // no cookie should be set
  },
  {
    description: "same-site cookie, meta redirect cross-site to same-site",
    imgSRC: SAME_ORIGIN + PATH + "?setSameSiteCookie",
    frameSRC: CROSS_ORIGIN + PATH + "?crossToSameRedirectMeta",
    result: "", // no cookie should be set
  },
];

window.addEventListener("message", receiveMessage);
function receiveMessage(event) {
  is(event.data.result, tests[curTest].result, tests[curTest].description);
  curTest += 1;

  // // lets see if we ran all the tests
  if (curTest == tests.length) {
    window.removeEventListener("message", receiveMessage);
    SimpleTest.finish();
    return;
  }
  // otherwise it's time to run the next test
  setCookieAndInitTest();
}

function setupQueryResultAndRunTest() {
  let testframe = document.getElementById("testframe");
  testframe.src = tests[curTest].frameSRC;
}

function setCookieAndInitTest() {
  var cookieImage = document.getElementById("cookieImage");
  cookieImage.onload = function() {
    ok(true, "trying to set cookie for test (" + tests[curTest].description + ")");
    setupQueryResultAndRunTest();
  }
  cookieImage.onerror = function() {
    ok(false, "could not load image for test (" + tests[curTest].description + ")");
  }
  cookieImage.src =  tests[curTest].imgSRC;
}

// fire up the test
setCookieAndInitTest();

</script>
</body>
</html>