mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
3dce4fb85f
Since the URL and URLSearchParams classes are available in the global object, there is no need to require them from 'url'. PR-URL: https://github.com/nodejs/node/pull/36927 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
// Tests below are not from WPT.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
{
|
|
const params = new URLSearchParams();
|
|
assert.throws(() => {
|
|
params.delete.call(undefined);
|
|
}, {
|
|
code: 'ERR_INVALID_THIS',
|
|
name: 'TypeError',
|
|
message: 'Value of "this" must be of type URLSearchParams'
|
|
});
|
|
assert.throws(() => {
|
|
params.delete();
|
|
}, {
|
|
code: 'ERR_MISSING_ARGS',
|
|
name: '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/');
|
|
}
|