summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/resolve_dns.zone.in
diff options
context:
space:
mode:
authorThanapat Chotipun <66824385+PatrickChoDev@users.noreply.github.com>2022-05-14 19:08:35 +0700
committerGitHub <noreply@github.com>2022-05-14 14:08:35 +0200
commitbd4256262a1091d43c18d069c724fa9b41c01b95 (patch)
treea9bf72e90ba98afdc5aa7067c79cf0093170e15a /cli/tests/testdata/resolve_dns.zone.in
parentf82a79ffdbc6b8f2fc4bbe6174ad33cb22e64386 (diff)
feat(ext/net): add support for SOA records in Deno.resolveDns() API (#14534)
Diffstat (limited to 'cli/tests/testdata/resolve_dns.zone.in')
-rw-r--r--cli/tests/testdata/resolve_dns.zone.in24
1 files changed, 24 insertions, 0 deletions
diff --git a/cli/tests/testdata/resolve_dns.zone.in b/cli/tests/testdata/resolve_dns.zone.in
new file mode 100644
index 000000000..6b611bafa
--- /dev/null
+++ b/cli/tests/testdata/resolve_dns.zone.in
@@ -0,0 +1,24 @@
+@ IN SOA net admin\.domain (
+ 20 ; SERIAL
+ 7200 ; REFRESH
+ 600 ; RETRY
+ 3600000; EXPIRE
+ 60) ; MINIMUM
+ NS ns1.ns.com.
+ NS ns2.ns.com.
+ NS ns3.ns.com.
+ MX 10 mx1.com.
+ MX 20 mx2.com.
+ TXT I am a txt record
+ TXT I am another txt record
+ TXT "I am a different" "txt record"
+ TXT key=val
+www A 1.2.3.4
+ A 5.6.7.8
+ ANAME aname
+www AAAA 1:2:3:4:5:6:7:8
+alias CNAME cname
+
+1.2.3.4.IN-ADDR.ARPA. PTR www
+ PTR alias
+_service._tcp SRV 0 100 1234 srv \ No newline at end of file