Skip to content

Commit d4ac580

Browse files
authored
fix: allow special use domains by default (#249)
To avoid breaking behavior the `allowSpecialUseDomain` option should have been set to `true` by default. This PR also adds tests that cover when a default `CookieStore` is created it does allow cookies with special use domains. closes #246
1 parent 79c2f7d commit d4ac580

File tree

4 files changed

+46
-3
lines changed

4 files changed

+46
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ The `options` object can be omitted and can have the following properties:
265265
- _rejectPublicSuffixes_ - boolean - default `true` - reject cookies with domains like "com" and "co.uk"
266266
- _looseMode_ - boolean - default `false` - accept malformed cookies like `bar` and `=bar`, which have an implied empty name.
267267
- _prefixSecurity_ - string - default `silent` - set to `'unsafe-disabled'`, `'silent'`, or `'strict'`. See [Cookie Prefixes](#cookie-prefixes) below.
268-
- _allowSpecialUseDomain_ - boolean - default `false` - accepts special-use domain suffixes, such as `local`. Useful for testing purposes.
268+
- _allowSpecialUseDomain_ - boolean - default `true` - accepts special-use domain suffixes, such as `local`. Useful for testing purposes.
269269
This is not in the standard, but is used sometimes on the web and is accepted by most browsers.
270270

271271
#### `.setCookie(cookieOrString, currentUrl[, options][, callback(err, cookie)])`

lib/cookie.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,10 @@ class CookieJar {
10991099
validators.validate(validators.isObject(options), options);
11001100
this.rejectPublicSuffixes = options.rejectPublicSuffixes;
11011101
this.enableLooseMode = !!options.looseMode;
1102-
this.allowSpecialUseDomain = !!options.allowSpecialUseDomain;
1102+
this.allowSpecialUseDomain =
1103+
typeof options.allowSpecialUseDomain === "boolean"
1104+
? options.allowSpecialUseDomain
1105+
: true;
11031106
this.store = store || new MemoryCookieStore();
11041107
this.prefixSecurity = getNormalizedPrefixSecurity(options.prefixSecurity);
11051108
this._cloneSync = syncWrap("clone");

lib/memstore.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class MemoryCookieStore extends Store {
6464
const results = [];
6565
if (typeof allowSpecialUseDomain === "function") {
6666
cb = allowSpecialUseDomain;
67-
allowSpecialUseDomain = false;
67+
allowSpecialUseDomain = true;
6868
}
6969
if (!domain) {
7070
return cb(null, []);

test/api_test.js

+40
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,46 @@ function allowSpecialUseOptionVows() {
592592
];
593593

594594
return specialUseDomains.reduce((vows, specialUseDomain) => {
595+
vows[
596+
`cookie jar with allowSpecialUseDomain set to the default value and domain is "${specialUseDomain}"`
597+
] = {
598+
topic: function() {
599+
const cb = this.callback;
600+
const cj = new CookieJar();
601+
cj.setCookie(
602+
`settingThisShouldPass=true; Domain=dev.${specialUseDomain}; Path=/;`,
603+
`http://dev.${specialUseDomain}`,
604+
at(-1),
605+
(err, cookie) => {
606+
cb(err, { cj: cj, cookie: cookie });
607+
}
608+
);
609+
},
610+
"set the cookie": function(t) {
611+
assert.ok(t.cookie, "didn't set?!");
612+
assert.equal(t.cookie.key, "settingThisShouldPass");
613+
},
614+
"then, retrieving": {
615+
topic: function(t) {
616+
const cb = this.callback;
617+
setTimeout(() => {
618+
t.cj.getCookies(
619+
`http://dev.${specialUseDomain}`,
620+
{ http: true },
621+
(err, cookies) => {
622+
t.cookies = cookies;
623+
cb(err, t);
624+
}
625+
);
626+
}, 2000);
627+
},
628+
"got the cookie": function(t) {
629+
assert.lengthOf(t.cookies, 1);
630+
assert.equal(t.cookies[0].key, "settingThisShouldPass");
631+
}
632+
}
633+
};
634+
595635
vows[
596636
`cookie jar with allowSpecialUseDomain enabled and domain is "${specialUseDomain}"`
597637
] = {

0 commit comments

Comments
 (0)