mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 08:42:45 +00:00

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>
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
// Tests below are not from WPT.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
{
|
|
const params = new URLSearchParams();
|
|
assert.throws(() => {
|
|
params.set.call(undefined);
|
|
}, {
|
|
code: 'ERR_INVALID_THIS',
|
|
name: 'TypeError',
|
|
message: 'Value of "this" must be of type URLSearchParams'
|
|
});
|
|
assert.throws(() => {
|
|
params.set('a');
|
|
}, {
|
|
code: 'ERR_MISSING_ARGS',
|
|
name: 'TypeError',
|
|
message: 'The "name" and "value" arguments must be specified'
|
|
});
|
|
|
|
const obj = {
|
|
toString() { throw new Error('toString'); },
|
|
valueOf() { throw new Error('valueOf'); }
|
|
};
|
|
const sym = Symbol();
|
|
assert.throws(() => params.append(obj, 'b'), /^Error: toString$/);
|
|
assert.throws(() => params.append('a', obj), /^Error: toString$/);
|
|
assert.throws(() => params.append(sym, 'b'),
|
|
/^TypeError: Cannot convert a Symbol value to a string$/);
|
|
assert.throws(() => params.append('a', sym),
|
|
/^TypeError: Cannot convert a Symbol value to a string$/);
|
|
}
|