mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
744 B
28 lines
744 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const url = require('url');
|
|
|
|
// https://github.com/joyent/node/issues/568
|
|
[
|
|
[undefined, 'undefined'],
|
|
[null, 'null'],
|
|
[true, 'boolean'],
|
|
[false, 'boolean'],
|
|
[0.0, 'number'],
|
|
[0, 'number'],
|
|
[[], 'object'],
|
|
[{}, 'object'],
|
|
[() => {}, 'function'],
|
|
[Symbol('foo'), 'symbol']
|
|
].forEach(([val, type]) => {
|
|
const error = common.expectsError({
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: `The "url" argument must be of type string. Received type ${type}`
|
|
});
|
|
assert.throws(() => { url.parse(val); }, error);
|
|
});
|
|
|
|
assert.throws(() => { url.parse('http://%E0%A4%A@fail'); },
|
|
/^URIError: URI malformed$/);
|
|
|