Skip to content

Commit 02acea9

Browse files
watildejasnell
authored andcommitted
test: add cases for unescape & unescapeBuffer
These two functions in the querystring are used as a fallback. To test them, two test cases were added which make errors that will be caught. PR-URL: #11326 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 7b76f82 commit 02acea9

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

test/parallel/test-querystring.js

+23
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,17 @@ const qsNoMungeTestCases = [
123123
['trololol=yes&lololo=no', {'trololol': 'yes', 'lololo': 'no'}]
124124
];
125125

126+
const qsUnescapeTestCases = [
127+
['there is nothing to unescape here',
128+
'there is nothing to unescape here'],
129+
['there%20are%20several%20spaces%20that%20need%20to%20be%20unescaped',
130+
'there are several spaces that need to be unescaped'],
131+
['there%2Qare%0-fake%escaped values in%%%%this%9Hstring',
132+
'there%2Qare%0-fake%escaped values in%%%%this%9Hstring'],
133+
['%20%21%22%23%24%25%26%27%28%29%2A%2B%2C%2D%2E%2F%30%31%32%33%34%35%36%37',
134+
' !"#$%&\'()*+,-./01234567']
135+
];
136+
126137
assert.strictEqual('918854443121279438895193',
127138
qs.parse('id=918854443121279438895193').id);
128139

@@ -331,6 +342,12 @@ function demoDecode(str) {
331342
check(qs.parse('a=a&b=b&c=c', null, null, { decodeURIComponent: demoDecode }),
332343
{ aa: 'aa', bb: 'bb', cc: 'cc' });
333344

345+
// Test QueryString.unescape
346+
function errDecode(str) {
347+
throw new Error('To jump to the catch scope');
348+
}
349+
check(qs.parse('a=a', null, null, { decodeURIComponent: errDecode }),
350+
{ a: 'a' });
334351

335352
// Test custom encode
336353
function demoEncode(str) {
@@ -341,6 +358,12 @@ assert.strictEqual(
341358
qs.stringify(obj, null, null, { encodeURIComponent: demoEncode }),
342359
'a=a&b=b&c=c');
343360

361+
// Test QueryString.unescapeBuffer
362+
qsUnescapeTestCases.forEach(function(testCase) {
363+
assert.strictEqual(qs.unescape(testCase[0]), testCase[1]);
364+
assert.strictEqual(qs.unescapeBuffer(testCase[0]).toString(), testCase[1]);
365+
});
366+
344367
// test overriding .unescape
345368
const prevUnescape = qs.unescape;
346369
qs.unescape = function(str) {

0 commit comments

Comments
 (0)