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>
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
// Tests below are not from WPT.
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { URL, URLSearchParams } = require('url');
|
|
|
|
{
|
|
const params = new URLSearchParams();
|
|
common.expectsError(() => {
|
|
params.delete.call(undefined);
|
|
}, {
|
|
code: 'ERR_INVALID_THIS',
|
|
type: TypeError,
|
|
message: 'Value of "this" must be of type URLSearchParams'
|
|
});
|
|
common.expectsError(() => {
|
|
params.delete();
|
|
}, {
|
|
code: 'ERR_MISSING_ARGS',
|
|
type: TypeError,
|
|
message: 'The "name" argument must be specified'
|
|
});
|
|
|
|
const obj = {
|
|
toString() { throw new Error('toString'); },
|
|
valueOf() { throw new Error('valueOf'); }
|
|
};
|
|
const sym = Symbol();
|
|
assert.throws(() => params.delete(obj), /^Error: toString$/);
|
|
assert.throws(() => params.delete(sym),
|
|
/^TypeError: Cannot convert a Symbol value to a string$/);
|
|
}
|
|
|
|
// https://github.com/nodejs/node/issues/10480
|
|
// Emptying searchParams should correctly update url's query
|
|
{
|
|
const url = new URL('http://domain?var=1&var=2&var=3');
|
|
for (const param of url.searchParams.keys()) {
|
|
url.searchParams.delete(param);
|
|
}
|
|
assert.strictEqual(url.searchParams.toString(), '');
|
|
assert.strictEqual(url.search, '');
|
|
assert.strictEqual(url.href, 'http://domain/');
|
|
}
|