a77b2987bc
Fixes #19214. We were using the `idna` crate to implement our polyfill for `punycode.toASCII` and `punycode.toUnicode`. The `idna` crate is correct, and adheres to the IDNA2003/2008 spec, but it turns out `node`'s implementations don't really follow any spec! Instead, node splits the domain by `'.'` and punycode encodes/decodes each part. This means that node's implementations will happily work on codepoints that are disallowed by the IDNA specs, causing the error in #19214. While fixing this, I went ahead and matched the node behavior on all of the punycode functions and enabled node's punycode test in our `node_compat` suite. |
||
---|---|---|
.. | ||
node@b114fad0ec | ||
.gitignore | ||
deno.json | ||
README.md | ||
setup.ts | ||
TODO.md |
Tools for Node.js compatibility work
We run native Node.js test cases against our Node.js compatibility feature.
This directory includes the tools for downloading, setting up, and updating the Node.js compat testing in Deno repository.
//tools/node_compat/setup.ts
- This script sets up the Node.js compat tests.
//tools/node_compat/versions/
- Node.js source tarballs and extracted test cases are stored here.
//tests/node_compat/config.jsonc
- This json file stores the settings about which Node.js compat test to run with Deno.
//tests/node_compat/test
- The actual test cases are stored here.
Steps to add new test cases from Node.js test cases
- Update
tests
property of//tests/node_compat/config.jsonc
. For example, if you want to addtest/parallel/test-foo.js
from Node.js test cases, then addtest-foo.js
entry intests.parallel
array property inconfig.jsonc
- Run
deno task setup
intools/node_compat
dir.
The above command copies the updated items from Node.js tarball to the Deno source tree.
Ideally Deno should pass the Node.js compat tests without modification, but if
you need to modify it, then add that item in ignore
property of
config.jsonc
. Then setup.ts
doesn't overwrite the modified Node.js test
cases anymore.
If the test needs to be ignored in particular platform, then add them in
${platform}Ignore
property of config.jsonc
Run Node.js test cases
Node.js compat tests are run as part of cargo test
command. If you want to run
only the Node.js compat test cases you can use the command
cargo test node_compat
. If you want to run specific tests you can use the
command deno task test
(in tools/node_compat
dir). For example, if you want
to run all test files which contains buffer
in filename you can use the
command:
/path/to/deno/tools/node_compat
$ deno task test buffer