-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
url: spec-compliant URLSearchParams parser
The entire `URLSearchParams` class is now fully spec-compliant. PR-URL: #11858 Fixes: #10821 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Daijiro Wachi <[email protected]>
- Loading branch information
Showing
4 changed files
with
197 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
module.exports = [ | ||
['', '', []], | ||
[ | ||
'foo=918854443121279438895193', | ||
'foo=918854443121279438895193', | ||
[['foo', '918854443121279438895193']] | ||
], | ||
['foo=bar', 'foo=bar', [['foo', 'bar']]], | ||
['foo=bar&foo=quux', 'foo=bar&foo=quux', [['foo', 'bar'], ['foo', 'quux']]], | ||
['foo=1&bar=2', 'foo=1&bar=2', [['foo', '1'], ['bar', '2']]], | ||
[ | ||
"my%20weird%20field=q1!2%22'w%245%267%2Fz8)%3F", | ||
'my+weird+field=q1%212%22%27w%245%267%2Fz8%29%3F', | ||
[['my weird field', 'q1!2"\'w$5&7/z8)?']] | ||
], | ||
['foo%3Dbaz=bar', 'foo%3Dbaz=bar', [['foo=baz', 'bar']]], | ||
['foo=baz=bar', 'foo=baz%3Dbar', [['foo', 'baz=bar']]], | ||
[ | ||
'str=foo&arr=1&somenull&arr=2&undef=&arr=3', | ||
'str=foo&arr=1&somenull=&arr=2&undef=&arr=3', | ||
[ | ||
['str', 'foo'], | ||
['arr', '1'], | ||
['somenull', ''], | ||
['arr', '2'], | ||
['undef', ''], | ||
['arr', '3'] | ||
] | ||
], | ||
[' foo = bar ', '+foo+=+bar+', [[' foo ', ' bar ']]], | ||
['foo=%zx', 'foo=%25zx', [['foo', '%zx']]], | ||
['foo=%EF%BF%BD', 'foo=%EF%BF%BD', [['foo', '\ufffd']]], | ||
// See: https://github.com/joyent/node/issues/3058 | ||
['foo&bar=baz', 'foo=&bar=baz', [['foo', ''], ['bar', 'baz']]], | ||
['a=b&c&d=e', 'a=b&c=&d=e', [['a', 'b'], ['c', ''], ['d', 'e']]], | ||
['a=b&c=&d=e', 'a=b&c=&d=e', [['a', 'b'], ['c', ''], ['d', 'e']]], | ||
['a=b&=c&d=e', 'a=b&=c&d=e', [['a', 'b'], ['', 'c'], ['d', 'e']]], | ||
['a=b&=&d=e', 'a=b&=&d=e', [['a', 'b'], ['', ''], ['d', 'e']]], | ||
['&&foo=bar&&', 'foo=bar', [['foo', 'bar']]], | ||
['&', '', []], | ||
['&&&&', '', []], | ||
['&=&', '=', [['', '']]], | ||
['&=&=', '=&=', [['', ''], ['', '']]], | ||
['=', '=', [['', '']]], | ||
['+', '+=', [[' ', '']]], | ||
['+=', '+=', [[' ', '']]], | ||
['=+', '=+', [['', ' ']]], | ||
['+=&', '+=', [[' ', '']]], | ||
['a&&b', 'a=&b=', [['a', ''], ['b', '']]], | ||
['a=a&&b=b', 'a=a&b=b', [['a', 'a'], ['b', 'b']]], | ||
['&a', 'a=', [['a', '']]], | ||
['&=', '=', [['', '']]], | ||
['a&a&', 'a=&a=', [['a', ''], ['a', '']]], | ||
['a&a&a&', 'a=&a=&a=', [['a', ''], ['a', ''], ['a', '']]], | ||
['a&a&a&a&', 'a=&a=&a=&a=', [['a', ''], ['a', ''], ['a', ''], ['a', '']]], | ||
['a=&a=value&a=', 'a=&a=value&a=', [['a', ''], ['a', 'value'], ['a', '']]], | ||
['foo%20bar=baz%20quux', 'foo+bar=baz+quux', [['foo bar', 'baz quux']]], | ||
['+foo=+bar', '+foo=+bar', [[' foo', ' bar']]], | ||
[ | ||
// fake percent encoding | ||
'foo=%©ar&baz=%A©uux&xyzzy=%©ud', | ||
'foo=%25%C2%A9ar&baz=%25A%C2%A9uux&xyzzy=%25%C2%A9ud', | ||
[['foo', '%©ar'], ['baz', '%A©uux'], ['xyzzy', '%©ud']] | ||
], | ||
// always preserve order of key-value pairs | ||
['a=1&b=2&a=3', 'a=1&b=2&a=3', [['a', '1'], ['b', '2'], ['a', '3']]], | ||
['?a', '%3Fa=', [['?a', '']]] | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters