Skip to content

Commit b1a8898

Browse files
authored
fix: allow set cookies with localhost (#253)
* fix: allow set cookies with localhost Adding more tests to cover the breaking use cases noted in #246. e.g.;. * `new CookieJar().setCookieSync("settingThisShouldPass=true; Domain=localhost; Path=/;", "http://localhost")` Also modifies the assertion for a test introduced in #221 that may be incorrect. * fix: allow set cookies with localhost Adding more tests to cover the breaking use cases noted in #246. e.g.;. * `new CookieJar().setCookieSync("settingThisShouldPass=true; Domain=localhost; Path=/;", "http://localhost")` Also modifies the assertion for a test introduced in #221 that may be incorrect. * fix: allow set cookies with localhost Adding more tests to cover the breaking use cases noted in #246. e.g.;. * `new CookieJar().setCookieSync("settingThisShouldPass=true; Domain=localhost; Path=/;", "http://localhost")` Also modifies the assertion for a test introduced in #221 that may be incorrect. * fix: allow set cookies with localhost updated CHANGELOG.md to point to the releases page since changelogs are auto-generated now. * Release v4.1.2
1 parent ec70796 commit b1a8898

6 files changed

+83
-53
lines changed

CHANGELOG.md

+2-33
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,5 @@
11
# Changelog
22

3-
All notable changes to this project will be documented in this file.
4-
5-
## 4.X.X
6-
7-
### Minor Changes
8-
- Added parameter checking to setCookie so as to error out when no URL was passed in
9-
10-
## X.Y.Z
11-
12-
### Minor Changes
13-
- Added loose mode to the serialized options. Now a serialized cookie jar with loose mode enabled will honor that flag when deserialized.
14-
- Added allowSpecialUseDomain and prefixSecurity to the serialized options. Now any options accepted passed in to the cookie jar will be honored when serialized and deserialized.
15-
- Added handling of IPv6 host names so that they would work with tough cookie.
16-
17-
## 4.0.0
18-
19-
### Breaking Changes (Major Version)
20-
21-
- Modernized JS Syntax
22-
- Use ESLint and Prettier to apply consistent, modern formatting (add dependency on `universalify`, `eslint` and `prettier`)
23-
- Upgraded version dependencies for `psl` and `async`
24-
- Re-order parameters for `findCookies()` - callback fn has to be last in order to comply with `universalify`
25-
- Use Classes instead of function prototypes to define classes
26-
- Might break people using `.call()` to do inheritance using function prototypes
27-
28-
### Minor Changes
29-
- SameSite cookie support
30-
- Cookie prefix support
31-
- Support for promises
32-
- '.local' support
33-
- Numerous bug fixes!
34-
35-
3+
All notable changes to this project can be found at on the [Releases](https://github.com/salesforce/tough-cookie/releases)
4+
page.
365

lib/pubsuffix-psl.js

+13-10
Original file line numberDiff line numberDiff line change
@@ -40,22 +40,25 @@ const SPECIAL_USE_DOMAINS = [
4040
"test"
4141
];
4242

43+
const SPECIAL_TREATMENT_DOMAINS = ["localhost", "invalid"];
44+
4345
function getPublicSuffix(domain, options = {}) {
4446
const domainParts = domain.split(".");
4547
const topLevelDomain = domainParts[domainParts.length - 1];
4648
const allowSpecialUseDomain = !!options.allowSpecialUseDomain;
4749
const ignoreError = !!options.ignoreError;
4850

49-
if (
50-
allowSpecialUseDomain &&
51-
domainParts.length > 1 &&
52-
SPECIAL_USE_DOMAINS.includes(topLevelDomain)
53-
) {
54-
// If the right-most label in the name is a special-use domain (e.g. bananas.apple.localhost),
55-
// then don't use PSL. This is because most special-use domains are not listed on PSL.
56-
const secondLevelDomain = domainParts[domainParts.length - 2];
57-
// In aforementioned example, the eTLD/pubSuf will be apple.localhost
58-
return `${secondLevelDomain}.${topLevelDomain}`;
51+
if (allowSpecialUseDomain && SPECIAL_USE_DOMAINS.includes(topLevelDomain)) {
52+
if (domainParts.length > 1) {
53+
const secondLevelDomain = domainParts[domainParts.length - 2];
54+
// In aforementioned example, the eTLD/pubSuf will be apple.localhost
55+
return `${secondLevelDomain}.${topLevelDomain}`;
56+
} else if (SPECIAL_TREATMENT_DOMAINS.includes(topLevelDomain)) {
57+
// For a single word special use domain, e.g. 'localhost' or 'invalid', per RFC 6761,
58+
// "Application software MAY recognize {localhost/invalid} names as special, or
59+
// MAY pass them to name resolution APIs as they would for other domain names."
60+
return `${topLevelDomain}`;
61+
}
5962
}
6063

6164
if (!ignoreError && SPECIAL_USE_DOMAINS.includes(topLevelDomain)) {

lib/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// generated by genversion
2-
module.exports = '4.1.1'
2+
module.exports = '4.1.2'

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"RFC6265",
6868
"RFC2965"
6969
],
70-
"version": "4.1.1",
70+
"version": "4.1.2",
7171
"homepage": "https://github.com/salesforce/tough-cookie",
7272
"repository": {
7373
"type": "git",

test/api_test.js

+47-3
Original file line numberDiff line numberDiff line change
@@ -591,9 +591,53 @@ function allowSpecialUseOptionVows() {
591591
"test"
592592
];
593593

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

635679
vows[
636-
`cookie jar with allowSpecialUseDomain enabled and domain is "${specialUseDomain}"`
680+
`cookie jar with allowSpecialUseDomain enabled and domain is "dev.${specialUseDomain}"`
637681
] = {
638682
topic: function() {
639683
const cb = this.callback;
@@ -676,7 +720,7 @@ function allowSpecialUseOptionVows() {
676720
};
677721

678722
vows[
679-
`cookie jar with allowSpecialUseDomain disabled and domain is "${specialUseDomain}"`
723+
`cookie jar with allowSpecialUseDomain disabled and domain is "dev.${specialUseDomain}"`
680724
] = {
681725
topic: function() {
682726
const cj = new CookieJar(new tough.MemoryCookieStore(), {

test/regression_test.js

+19-5
Original file line numberDiff line numberDiff line change
@@ -197,20 +197,34 @@ vows
197197
return cookieJar.setCookieSync(
198198
"a=b; Domain=localhost",
199199
"http://localhost"
200-
); // when domain set to 'localhost', will throw 'Error: Cookie has domain set to a public suffix'
200+
); // Users are free to use localhost names as they would any other domain names. [RFC 6761, Sec. 6.3.1]
201201
},
202202
works: function(err, c) {
203-
// localhost as domain throws an error, cookie should not be defined
204-
assert.instanceOf(err, Error);
205-
assert.isUndefined(c);
203+
assert.instanceOf(c, Cookie);
204+
assert.match(c, /Domain=localhost/);
205+
}
206+
}
207+
},
208+
{
209+
"setCookie with localhost (localhost. domain) (GH-215)": {
210+
topic: function() {
211+
const cookieJar = new CookieJar();
212+
return cookieJar.setCookieSync(
213+
"a=b; Domain=localhost.",
214+
"http://localhost."
215+
); // Users are free to use localhost names as they would any other domain names. [RFC 6761, Sec. 6.3.1]
216+
},
217+
works: function(err, c) {
218+
assert.instanceOf(c, Cookie);
219+
assert.match(c, /Domain=localhost/);
206220
}
207221
}
208222
},
209223
{
210224
"setCookie with localhost (GH-215) (null domain)": {
211225
topic: function() {
212226
const cookieJar = new CookieJar();
213-
return cookieJar.setCookieSync("a=b; Domain=", "http://localhost"); // when domain set to 'localhost', will throw 'Error: Cookie has domain set to a public suffix'
227+
return cookieJar.setCookieSync("a=b; Domain=", "http://localhost");
214228
},
215229
works: function(c) {
216230
assert.instanceOf(c, Cookie);

0 commit comments

Comments
 (0)