mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 20:06:58 +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>
50 lines
1.9 KiB
JavaScript
50 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const URLSearchParams = require('url').URLSearchParams;
|
|
const { test, assert_equals, assert_true } = require('../common/wpt');
|
|
|
|
/* The following tests are copied from WPT. Modifications to them should be
|
|
upstreamed first. Refs:
|
|
https://github.com/w3c/web-platform-tests/blob/8791bed/url/urlsearchparams-append.html
|
|
License: http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html
|
|
*/
|
|
/* eslint-disable */
|
|
test(function() {
|
|
var params = new URLSearchParams();
|
|
params.append('a', 'b');
|
|
assert_equals(params + '', 'a=b');
|
|
params.append('a', 'b');
|
|
assert_equals(params + '', 'a=b&a=b');
|
|
params.append('a', 'c');
|
|
assert_equals(params + '', 'a=b&a=b&a=c');
|
|
}, 'Append same name');
|
|
test(function() {
|
|
var params = new URLSearchParams();
|
|
params.append('', '');
|
|
assert_equals(params + '', '=');
|
|
params.append('', '');
|
|
assert_equals(params + '', '=&=');
|
|
}, 'Append empty strings');
|
|
test(function() {
|
|
var params = new URLSearchParams();
|
|
params.append(null, null);
|
|
assert_equals(params + '', 'null=null');
|
|
params.append(null, null);
|
|
assert_equals(params + '', 'null=null&null=null');
|
|
}, 'Append null');
|
|
test(function() {
|
|
var params = new URLSearchParams();
|
|
params.append('first', 1);
|
|
params.append('second', 2);
|
|
params.append('third', '');
|
|
params.append('first', 10);
|
|
assert_true(params.has('first'), 'Search params object has name "first"');
|
|
assert_equals(params.get('first'), '1', 'Search params object has name "first" with value "1"');
|
|
assert_equals(params.get('second'), '2', 'Search params object has name "second" with value "2"');
|
|
assert_equals(params.get('third'), '', 'Search params object has name "third" with value ""');
|
|
params.append('first', 10);
|
|
assert_equals(params.get('first'), '1', 'Search params object has name "first" with value "1"');
|
|
}, 'Append multiple');
|
|
/* eslint-enable */
|