deno.land / std@0.166.0 / node / _tools / test / common / internet.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// deno-fmt-ignore-file// deno-lint-ignore-file
// Copyright Joyent and Node contributors. All rights reserved. MIT license.// Taken from Node 18.12.0// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
'use strict';
// Utilities for internet-related tests
const addresses = { // A generic host that has registered common DNS records, // supports both IPv4 and IPv6, and provides basic HTTP/HTTPS services INET_HOST: 'nodejs.org', // A host that provides IPv4 services INET4_HOST: 'nodejs.org', // A host that provides IPv6 services INET6_HOST: 'nodejs.org', // An accessible IPv4 IP, // defaults to the Google Public DNS IPv4 address INET4_IP: '8.8.8.8', // An accessible IPv6 IP, // defaults to the Google Public DNS IPv6 address INET6_IP: '2001:4860:4860::8888', // An invalid host that cannot be resolved // See https://tools.ietf.org/html/rfc2606#section-2 INVALID_HOST: 'something.invalid', // A host with MX records registered MX_HOST: 'nodejs.org', // On some systems, .invalid returns a server failure/try again rather than // record not found. Use this to guarantee record not found. NOT_FOUND: 'come.on.fhqwhgads.test', // A host with SRV records registered // TODO(kt3k): Temporarily use _caldav._tcp.google.com instead of // _jabber._tcp.google.com, which currently doesn't respond // SRV_HOST: '_jabber._tcp.google.com', SRV_HOST: '_caldav._tcp.google.com', // A host with PTR records registered PTR_HOST: '8.8.8.8.in-addr.arpa', // A host with NAPTR records registered NAPTR_HOST: 'sip2sip.info', // A host with SOA records registered SOA_HOST: 'nodejs.org', // A host with CAA record registered CAA_HOST: 'google.com', // A host with CNAME records registered CNAME_HOST: 'blog.nodejs.org', // A host with NS records registered NS_HOST: 'nodejs.org', // A host with TXT records registered TXT_HOST: 'nodejs.org', // An accessible IPv4 DNS server DNS4_SERVER: '8.8.8.8', // An accessible IPv4 DNS server DNS6_SERVER: '2001:4860:4860::8888'};
for (const key of Object.keys(addresses)) { const envName = `NODE_TEST_${key}`; if (process.env[envName]) { addresses[key] = process.env[envName]; }}
module.exports = { addresses};
std

Version Info

Tagged at
a year ago