summaryrefslogtreecommitdiff
path: root/tests/node_compat/test/parallel/test-querystring-multichar-separator.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/node_compat/test/parallel/test-querystring-multichar-separator.js')
-rw-r--r--tests/node_compat/test/parallel/test-querystring-multichar-separator.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/node_compat/test/parallel/test-querystring-multichar-separator.js b/tests/node_compat/test/parallel/test-querystring-multichar-separator.js
new file mode 100644
index 000000000..3234dcd60
--- /dev/null
+++ b/tests/node_compat/test/parallel/test-querystring-multichar-separator.js
@@ -0,0 +1,32 @@
+// deno-fmt-ignore-file
+// deno-lint-ignore-file
+
+// Copyright Joyent and Node contributors. All rights reserved. MIT license.
+// Taken from Node 18.12.1
+// This file is automatically generated by `tools/node_compat/setup.ts`. Do not modify this file manually.
+
+'use strict';
+require('../common');
+const assert = require('assert');
+const qs = require('querystring');
+
+function check(actual, expected) {
+ assert(!(actual instanceof Object));
+ assert.deepStrictEqual(Object.keys(actual).sort(),
+ Object.keys(expected).sort());
+ Object.keys(expected).forEach(function(key) {
+ assert.deepStrictEqual(actual[key], expected[key]);
+ });
+}
+
+check(qs.parse('foo=>bar&&bar=>baz', '&&', '=>'),
+ { foo: 'bar', bar: 'baz' });
+
+check(qs.stringify({ foo: 'bar', bar: 'baz' }, '&&', '=>'),
+ 'foo=>bar&&bar=>baz');
+
+check(qs.parse('foo==>bar, bar==>baz', ', ', '==>'),
+ { foo: 'bar', bar: 'baz' });
+
+check(qs.stringify({ foo: 'bar', bar: 'baz' }, ', ', '==>'),
+ 'foo==>bar, bar==>baz');