Skip to content

Commit aa4396d

Browse files
authored
fix: distinguish between no samesite and samesite=none (#240)
* Adding some initial tests * fix: distinguish between no samesite and samesite=none
1 parent b8d7511 commit aa4396d

File tree

3 files changed

+47
-15
lines changed

3 files changed

+47
-15
lines changed

lib/cookie.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -619,11 +619,11 @@ function parse(str, options) {
619619
case "lax":
620620
c.sameSite = "lax";
621621
break;
622+
case "none":
623+
c.sameSite = "none";
624+
break;
622625
default:
623-
// RFC6265bis-02 S5.3.7 step 1:
624-
// "If cookie-av's attribute-value is not a case-insensitive match
625-
// for "Strict" or "Lax", ignore the "cookie-av"."
626-
// This effectively sets it to 'none' from the prototype.
626+
c.sameSite = undefined;
627627
break;
628628
}
629629
break;
@@ -807,7 +807,7 @@ const cookieDefaults = {
807807
pathIsDefault: null,
808808
creation: null,
809809
lastAccessed: null,
810-
sameSite: "none"
810+
sameSite: undefined
811811
};
812812

813813
class Cookie {
@@ -1221,7 +1221,11 @@ class CookieJar {
12211221
}
12221222

12231223
// 6252bis-02 S5.4 Step 13 & 14:
1224-
if (cookie.sameSite !== "none" && sameSiteContext) {
1224+
if (
1225+
cookie.sameSite !== "none" &&
1226+
cookie.sameSite !== undefined &&
1227+
sameSiteContext
1228+
) {
12251229
// "If the cookie's "same-site-flag" is not "None", and the cookie
12261230
// is being set from a context whose "site for cookies" is not an
12271231
// exact match for request-uri's host's registered domain, then

test/parsing_test.js

+33-5
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ vows
158158
"has max-age": function(c) {
159159
assert.equal(c.maxAge, 1234);
160160
},
161-
"has same-site 'none'": function(c) {
162-
assert.equal(c.sameSite, "none");
161+
"has same-site 'undefined'": function(c) {
162+
assert.equal(c.sameSite, undefined);
163163
},
164164
"has extensions": function(c) {
165165
assert.ok(c.extensions);
@@ -677,19 +677,47 @@ vows
677677
assert.equal(c.extensions, null);
678678
}
679679
},
680-
absent: {
680+
none: {
681681
topic: function() {
682-
return Cookie.parse("abc=xyzzy; SameSite=example.com") || null;
682+
return Cookie.parse("abc=xyz; SameSite=NoNe") || null;
683683
},
684684
parsed: function(c) {
685685
assert.ok(c);
686686
},
687-
"is set to 'none' (by prototype)": function(c) {
687+
"is none (lowercased)": function(c) {
688688
assert.equal(c.sameSite, "none");
689689
},
690690
"no extensions": function(c) {
691691
assert.equal(c.extensions, null);
692692
}
693+
},
694+
bad: {
695+
topic: function() {
696+
return Cookie.parse("abc=xyzzy; SameSite=example.com") || null;
697+
},
698+
parsed: function(c) {
699+
assert.ok(c);
700+
},
701+
"is set to 'undefined'": function(c) {
702+
assert.equal(c.sameSite, undefined);
703+
},
704+
"no extensions": function(c) {
705+
assert.equal(c.extensions, null);
706+
}
707+
},
708+
absent: {
709+
topic: function() {
710+
return Cookie.parse("abc=xyzzy;") || null;
711+
},
712+
parsed: function(c) {
713+
assert.ok(c);
714+
},
715+
"is set to 'undefined'": function(c) {
716+
assert.equal(c.sameSite, undefined);
717+
},
718+
"no extensions": function(c) {
719+
assert.equal(c.extensions, null);
720+
}
693721
}
694722
},
695723
"empty string": {

test/same_site_test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ vows
124124
topic: function(options) {
125125
this.callSetCookie("garbage", options, this.callback);
126126
},
127-
"treated as 'none'": function(err, cookie) {
127+
"treated as 'undefined'": function(err, cookie) {
128128
assert.isNull(err);
129-
assert.equal(cookie.sameSite, "none");
129+
assert.equal(cookie.sameSite, undefined);
130130
}
131131
},
132132
"for strict cookie": {
@@ -151,9 +151,9 @@ vows
151151
topic: function(options) {
152152
this.callSetCookie("normal", options, this.callback);
153153
},
154-
"treated as 'none'": function(err, cookie) {
154+
"treated as 'undefined'": function(err, cookie) {
155155
assert.isNull(err);
156-
assert.equal(cookie.sameSite, "none");
156+
assert.equal(cookie.sameSite, undefined);
157157
}
158158
}
159159
},

0 commit comments

Comments
 (0)