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.
32 lines
1023 B
32 lines
1023 B
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const URL = require('url').URL;
|
|
|
|
// Tests below are not from WPT.
|
|
const toString = Object.prototype.toString;
|
|
|
|
const url = new URL('http://example.org');
|
|
const sp = url.searchParams;
|
|
const spIterator = sp.entries();
|
|
|
|
const test = [
|
|
[url, 'URL'],
|
|
[sp, 'URLSearchParams'],
|
|
[spIterator, 'URLSearchParamsIterator'],
|
|
// Web IDL spec says we have to return 'URLPrototype', but it is too
|
|
// expensive to implement; therefore, use Chrome's behavior for now, until
|
|
// spec is changed.
|
|
[Object.getPrototypeOf(url), 'URL'],
|
|
[Object.getPrototypeOf(sp), 'URLSearchParams'],
|
|
[Object.getPrototypeOf(spIterator), 'URLSearchParamsIterator'],
|
|
];
|
|
|
|
test.forEach(([obj, expected]) => {
|
|
assert.strictEqual(obj[Symbol.toStringTag], expected,
|
|
`${obj[Symbol.toStringTag]} !== ${expected}`);
|
|
const str = toString.call(obj);
|
|
assert.strictEqual(str, `[object ${expected}]`,
|
|
`${str} !== [object ${expected}]`);
|
|
});
|
|
|