summaryrefslogtreecommitdiff
path: root/cli/tests/node_compat/test/internet/test-dns-idna2008.js
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2024-02-10 13:22:13 -0700
committerGitHub <noreply@github.com>2024-02-10 20:22:13 +0000
commitf5e46c9bf2f50d66a953fa133161fc829cecff06 (patch)
tree8faf2f5831c1c7b11d842cd9908d141082c869a5 /cli/tests/node_compat/test/internet/test-dns-idna2008.js
parentd2477f780630a812bfd65e3987b70c0d309385bb (diff)
chore: move cli/tests/ -> tests/ (#22369)
This looks like a massive PR, but it's only a move from cli/tests -> tests, and updates of relative paths for files. This is the first step towards aggregate all of the integration test files under tests/, which will lead to a set of integration tests that can run without the CLI binary being built. While we could leave these tests under `cli`, it would require us to keep a more complex directory structure for the various test runners. In addition, we have a lot of complexity to ignore various test files in the `cli` project itself (cargo publish exclusion rules, autotests = false, etc). And finally, the `tests/` folder will eventually house the `test_ffi`, `test_napi` and other testing code, reducing the size of the root repo directory. For easier review, the extremely large and noisy "move" is in the first commit (with no changes -- just a move), while the remainder of the changes to actual files is in the second commit.
Diffstat (limited to 'cli/tests/node_compat/test/internet/test-dns-idna2008.js')
-rw-r--r--cli/tests/node_compat/test/internet/test-dns-idna2008.js76
1 files changed, 0 insertions, 76 deletions
diff --git a/cli/tests/node_compat/test/internet/test-dns-idna2008.js b/cli/tests/node_compat/test/internet/test-dns-idna2008.js
deleted file mode 100644
index 7308f9deb..000000000
--- a/cli/tests/node_compat/test/internet/test-dns-idna2008.js
+++ /dev/null
@@ -1,76 +0,0 @@
-// deno-fmt-ignore-file
-// deno-lint-ignore-file
-
-// Copyright Joyent and Node contributors. All rights reserved. MIT license.
-// Taken from Node 18.12.1
-// This file is automatically generated by `tools/node_compat/setup.ts`. Do not modify this file manually.
-
-'use strict';
-
-// Verify that non-ASCII hostnames are handled correctly as IDNA 2008.
-//
-// * Tests will fail with NXDOMAIN when UTF-8 leaks through to a getaddrinfo()
-// that doesn't support IDNA at all.
-//
-// * "straße.de" will resolve to the wrong address when the resolver supports
-// only IDNA 2003 (e.g., glibc until 2.28) because it encodes it wrong.
-
-const { mustCall } = require('../common');
-const assert = require('assert');
-const dns = require('dns');
-const { addresses } = require('../common/internet');
-
-const fixture = {
- hostname: 'straße.de',
- expectedAddress: '81.169.145.78',
- dnsServer: addresses.DNS4_SERVER,
- family: 4,
-};
-
-// Explicitly use well-behaved DNS servers that are known to be able to resolve
-// the query (which is a.k.a xn--strae-oqa.de).
-dns.setServers([fixture.dnsServer]);
-
-dns.lookup(
- fixture.hostname,
- { family: fixture.family },
- mustCall((err, address) => {
- if (err && err.errno === 'ESERVFAIL') {
- assert.ok(err.message.includes('queryA ESERVFAIL straße.de'));
- return;
- }
- assert.ifError(err);
- assert.strictEqual(address, fixture.expectedAddress);
- }),
-);
-
-dns.promises.lookup(fixture.hostname, { family: fixture.family })
- .then(({ address }) => {
- assert.strictEqual(address, fixture.expectedAddress);
- }, (err) => {
- if (err && err.errno === 'ESERVFAIL') {
- assert.ok(err.message.includes('queryA ESERVFAIL straße.de'));
- } else {
- throw err;
- }
- }).finally(mustCall());
-
-dns.resolve4(fixture.hostname, mustCall((err, addresses) => {
- if (err && err.errno === 'ESERVFAIL') {
- assert.ok(err.message.includes('queryA ESERVFAIL straße.de'));
- return;
- }
- assert.ifError(err);
- assert.deepStrictEqual(addresses, [fixture.expectedAddress]);
-}));
-
-const p = new dns.promises.Resolver().resolve4(fixture.hostname);
-p.then((addresses) => {
- assert.deepStrictEqual(addresses, [fixture.expectedAddress]);
-}, (err) => {
- if (err && err.errno === 'ESERVFAIL') {
- assert.ok(err.message.includes('queryA ESERVFAIL straße.de'));
- } else {
- throw err;
- }
-}).finally(mustCall());