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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
<!DOCTYPE HTML>
<html>
<head>
<title>Bug 1286861 - Test same site cookies on top-level navigations</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<img id="cookieImage">
<script class="testbody" type="text/javascript">
/*
* Description of the test:
* 1) We load an image from http://mochi.test which sets a same site cookie
* 2) We open a new window to
* * a same origin location
* * a cross origin location
* 3) We observe that the same site cookie is sent in the same origin case,
* but not in the cross origin case, unless the policy = 'lax', which should
* send the cookie in a top-level navigation case.
*
* In detail:
* We perform an XHR request to the *.sjs file which is processed async on
* the server and waits till the image request has been processed by the server.
* Once the image requets was processed, the server responds to the initial
* XHR request with the expecuted result (the cookie value).
*/
SimpleTest.waitForExplicitFinish();
const SAME_ORIGIN = "http://mochi.test:8888/";
const CROSS_ORIGIN = "http://example.com/";
const PATH = "tests/dom/security/test/general/file_same_site_cookies_toplevel_nav.sjs";
let curTest = 0;
let currentWindow;
var tests = [
{
description: "same origin navigation using cookie policy 'samesite=strict'",
imgSRC: SAME_ORIGIN + PATH + "?setStrictSameSiteCookie",
frameSRC: SAME_ORIGIN + PATH + "?loadFrame",
result: "myKey=strictSameSiteCookie",
},
{
description: "cross origin navigation using cookie policy 'samesite=strict'",
imgSRC: SAME_ORIGIN + PATH + "?setStrictSameSiteCookie",
frameSRC: CROSS_ORIGIN + PATH + "?loadFrame",
result: "myKey=noCookie",
},
{
description: "same origin navigation using cookie policy 'samesite=lax'",
imgSRC: SAME_ORIGIN + PATH + "?setLaxSameSiteCookie",
frameSRC: SAME_ORIGIN + PATH + "?loadFrame",
result: "myKey=laxSameSiteCookie",
},
{
description: "cross origin navigation using cookie policy 'samesite=lax'",
imgSRC: SAME_ORIGIN + PATH + "?setLaxSameSiteCookie",
frameSRC: CROSS_ORIGIN + PATH + "?loadFrame",
result: "myKey=laxSameSiteCookie",
},
];
function checkResult(aCookieVal) {
if(currentWindow){
currentWindow.close();
currentWindow= null;
}
is(aCookieVal, tests[curTest].result, tests[curTest].description);
curTest += 1;
// lets see if we ran all the tests
if (curTest == tests.length) {
SimpleTest.finish();
return;
}
// otherwise it's time to run the next test
setCookieAndInitTest();
}
function setupQueryResultAndRunTest() {
var myXHR = new XMLHttpRequest();
myXHR.open("GET", "file_same_site_cookies_toplevel_nav.sjs?queryresult" + curTest);
myXHR.onload = function(e) {
checkResult( myXHR.responseText);
}
myXHR.onerror = function(e) {
ok(false, "could not query results from server (" + e.message + ")");
}
myXHR.send();
// give it some time and load the test window
SimpleTest.executeSoon(function() {
currentWindow = window.open(tests[curTest].frameSRC + curTest);
});
}
function setCookieAndInitTest() {
var cookieImage = document.getElementById("cookieImage");
cookieImage.onload = function() {
ok(true, "set cookie for test (" + tests[curTest].description + ")");
setupQueryResultAndRunTest();
}
cookieImage.onerror = function() {
ok(false, "could not set cookie for test (" + tests[curTest].description + ")");
}
cookieImage.src = tests[curTest].imgSRC + curTest;
}
// fire up the test
setCookieAndInitTest();
</script>
</body>
</html>
|