mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 15:35:41 +00:00

To enable automatic update of WPT, move all our custom WHATWG URL tests that are not present in the upstream into files starting with `test-whatwg-url-custom-`, so it's easier to identify test cases that can be upstreamed and test cases that should be rolled into our repo (possibly with automation). PR-URL: https://github.com/nodejs/node/pull/22442 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
31 lines
1.2 KiB
JavaScript
31 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
// Tests below are not from WPT.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const util = require('util');
|
|
const URLSearchParams = require('url').URLSearchParams;
|
|
|
|
const sp = new URLSearchParams('?a=a&b=b&b=c');
|
|
assert.strictEqual(util.inspect(sp),
|
|
"URLSearchParams { 'a' => 'a', 'b' => 'b', 'b' => 'c' }");
|
|
assert.strictEqual(util.inspect(sp.keys()),
|
|
"URLSearchParams Iterator { 'a', 'b', 'b' }");
|
|
assert.strictEqual(util.inspect(sp.values()),
|
|
"URLSearchParams Iterator { 'a', 'b', 'c' }");
|
|
assert.strictEqual(util.inspect(sp.keys(), { breakLength: 1 }),
|
|
"URLSearchParams Iterator {\n 'a',\n 'b',\n 'b' }");
|
|
|
|
const iterator = sp.entries();
|
|
assert.strictEqual(util.inspect(iterator),
|
|
"URLSearchParams Iterator { [ 'a', 'a' ], [ 'b', 'b' ], " +
|
|
"[ 'b', 'c' ] }");
|
|
iterator.next();
|
|
assert.strictEqual(util.inspect(iterator),
|
|
"URLSearchParams Iterator { [ 'b', 'b' ], [ 'b', 'c' ] }");
|
|
iterator.next();
|
|
iterator.next();
|
|
assert.strictEqual(util.inspect(iterator),
|
|
'URLSearchParams Iterator { }');
|