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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<title>Test cookie path attribute parsing</title>
<meta name=help href="https://tools.ietf.org/html/rfc6265#section-5.2.4">
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/cookies/resources/cookie-test.js"></script>
</head>
<body>
<script>
const pathTests = [
{
cookie: "test=1; Path",
expected: "test=1",
name: "Set cookie for bare Path",
},
{
cookie: "test=2; Path=",
expected: "test=2",
name: "Set cookie for Path=",
},
{
cookie: "test=3; Path=/",
expected: "test=3",
name: "Set cookie for Path=/",
defaultPath: false,
},
{
cookie: "test=4; Path=/qux",
expected: "",
name: "No cookie returned for mismatched path",
defaultPath: false,
},
{
cookie: "test=5; Path =/qux",
expected: "",
name: "No cookie returned for path space equals mismatched path",
defaultPath: false,
},
{
cookie: "test=6; Path= /qux",
expected: "",
name: "No cookie returned for path equals space mismatched path",
defaultPath: false,
},
{
cookie: "test=7; Path=/qux ; taz",
expected: "",
name: "No cookie returned for mismatched path and attribute",
defaultPath: false,
},
{
cookie: "test=8; Path=/qux; Path=/",
expected: "test=8",
name: "Set cookie for mismatched and root path",
},
{
cookie: "test=9; Path=/; Path=/qux",
expected: "",
name: "No cookie returned for root and mismatched path",
defaultPath: false,
},
{
cookie: "test=10; Path=/lol; Path=/qux",
expected: "",
name: "No cookie returned for multiple mismatched paths",
defaultPath: false,
},
{
cookie: ["testA=11; path=/", "testB=11; path=/cookies/attributes"],
expected: "testB=11; testA=11",
name: "Return 2 cookies sorted by matching path length (earlier name with shorter path set first)",
defaultPath: false,
},
{
cookie: ["testB=12; path=/", "testA=12; path=/cookies/attributes"],
expected: "testA=12; testB=12",
name: "Return 2 cookies sorted by matching path length (later name with shorter path set first)",
defaultPath: false,
},
{
cookie: ["testA=13; path=/cookies/attributes", "testB=13; path=/"],
expected: "testA=13; testB=13",
name: "Return 2 cookies sorted by matching path length (earlier name with longer path set first)",
defaultPath: false,
},
{
cookie: ["testB=14; path=/cookies/attributes", "testA=14; path=/"],
expected: "testB=14; testA=14",
name: "Return 2 cookies sorted by matching path length (later name with longer path set first)",
defaultPath: false,
},
{
cookie: ["test=15; path=/cookies/attributes/foo"],
expected: "",
name: "No cookie returned for partial path match",
defaultPath: false,
},
{
cookie: ["test=16", "test=0; path=/cookies/attributes/foo"],
expected: "test=16",
name: "No cookie returned for partial path match, return cookie for default path",
},
{
cookie: ["test=17; path= /"],
expected: "test=17",
name: "Return cookie for path= / (whitespace after equals)",
},
{
cookie: ["test=18; path=/cookies/ATTRIBUTES"],
expected: "",
name: "No cookie returned for case mismatched path",
defaultPath: false,
},
{
cookie: ["testA=19; path = /cookies/attributes", "testB=19; path = /book"],
expected: "testA=19",
name: "Return cookie A on path match, no cookie returned for path mismatch (plus whitespace)",
defaultPath: false,
},
{
cookie: ["test=20; path=; path=/dog"],
expected: "",
name: "No cookie returned for mismatched path (after bare path=)",
defaultPath: false,
},
{
cookie: ["test=21; path=/dog; path="],
expected: "test=21",
name: "Return cookie for bare path= (after mismatched path)",
},
];
for (const test of pathTests) {
httpCookieTest(test.cookie, test.expected, test.name, test.defaultPath);
}
</script>
</body>
</html>
|