nodejs-mozilla/test/parallel/test-whatwg-url-custom-sear...

35 lines
880 B
JavaScript

'use strict';
// Tests below are not from WPT.
require('../common');
const assert = require('assert');
const URLSearchParams = require('url').URLSearchParams;
{
const params = new URLSearchParams();
assert.throws(() => {
params.getAll.call(undefined);
}, {
code: 'ERR_INVALID_THIS',
name: 'TypeError',
message: 'Value of "this" must be of type URLSearchParams'
});
assert.throws(() => {
params.getAll();
}, {
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.getAll(obj), /^Error: toString$/);
assert.throws(() => params.getAll(sym),
/^TypeError: Cannot convert a Symbol value to a string$/);
}