mirror of
https://github.com/denoland/deno.git
synced 2024-11-05 09:04:41 -05:00
6915a9b7a7
This PR adds the remaining ~650 Node.js compat test cases from std/node. Among these 650 cases, about 130 cases are now failing. These failing cases are prefixed with `TODO:` in `tests/node_compat/config.json`. These will be addressed in later PRs.
111 lines
3 KiB
JavaScript
111 lines
3 KiB
JavaScript
// deno-fmt-ignore-file
|
|
// deno-lint-ignore-file
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
// Taken from Node 16.13.0
|
|
// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
|
|
|
|
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { URL, URLSearchParams } = require('url');
|
|
|
|
[
|
|
{ name: 'toString' },
|
|
{ name: 'toJSON' },
|
|
// Deno's URL doesn't support nodejs custom inspect
|
|
// { name: Symbol.for('nodejs.util.inspect.custom') },
|
|
].forEach(({ name }) => {
|
|
testMethod(URL.prototype, name);
|
|
});
|
|
|
|
[
|
|
{ name: 'href' },
|
|
{ name: 'protocol' },
|
|
{ name: 'username' },
|
|
{ name: 'password' },
|
|
{ name: 'host' },
|
|
{ name: 'hostname' },
|
|
{ name: 'port' },
|
|
{ name: 'pathname' },
|
|
{ name: 'search' },
|
|
{ name: 'hash' },
|
|
{ name: 'origin', readonly: true },
|
|
{ name: 'searchParams', readonly: true },
|
|
].forEach(({ name, readonly = false }) => {
|
|
testAccessor(URL.prototype, name, readonly);
|
|
});
|
|
|
|
[
|
|
{ name: 'append' },
|
|
{ name: 'delete' },
|
|
{ name: 'get' },
|
|
{ name: 'getAll' },
|
|
{ name: 'has' },
|
|
{ name: 'set' },
|
|
{ name: 'sort' },
|
|
{ name: 'entries' },
|
|
{ name: 'forEach' },
|
|
{ name: 'keys' },
|
|
{ name: 'values' },
|
|
{ name: 'toString' },
|
|
{ name: Symbol.iterator, methodName: 'entries' },
|
|
// Deno's URL doesn't support nodejs custom inspect
|
|
// { name: Symbol.for('nodejs.util.inspect.custom') },
|
|
].forEach(({ name, methodName }) => {
|
|
testMethod(URLSearchParams.prototype, name, methodName);
|
|
});
|
|
|
|
function stringifyName(name) {
|
|
if (typeof name === 'symbol') {
|
|
const { description } = name;
|
|
if (description === undefined) {
|
|
return '';
|
|
}
|
|
return `[${description}]`;
|
|
}
|
|
|
|
return name;
|
|
}
|
|
|
|
function testMethod(target, name, methodName = stringifyName(name)) {
|
|
const desc = Object.getOwnPropertyDescriptor(target, name);
|
|
assert.notStrictEqual(desc, undefined);
|
|
assert.strictEqual(desc.enumerable, typeof name === 'string');
|
|
|
|
const { value } = desc;
|
|
assert.strictEqual(typeof value, 'function');
|
|
assert.strictEqual(value.name, methodName);
|
|
/* This can't pass with Deno's URL/URLSearchParams
|
|
assert.strictEqual(
|
|
Object.prototype.hasOwnProperty.call(value, 'prototype'),
|
|
false,
|
|
);
|
|
*/
|
|
}
|
|
|
|
function testAccessor(target, name, readonly = false) {
|
|
const desc = Object.getOwnPropertyDescriptor(target, name);
|
|
assert.notStrictEqual(desc, undefined);
|
|
assert.strictEqual(desc.enumerable, typeof name === 'string');
|
|
|
|
const methodName = stringifyName(name);
|
|
const { get, set } = desc;
|
|
assert.strictEqual(typeof get, 'function');
|
|
assert.strictEqual(get.name, `get ${methodName}`);
|
|
assert.strictEqual(
|
|
Object.prototype.hasOwnProperty.call(get, 'prototype'),
|
|
false,
|
|
);
|
|
|
|
if (readonly) {
|
|
assert.strictEqual(set, undefined);
|
|
} else {
|
|
assert.strictEqual(typeof set, 'function');
|
|
assert.strictEqual(set.name, `set ${methodName}`);
|
|
assert.strictEqual(
|
|
Object.prototype.hasOwnProperty.call(set, 'prototype'),
|
|
false,
|
|
);
|
|
}
|
|
}
|