# A records

[[cmd]]
name = "Look up an existing A record using UDP"
shell = "dog a-example.lookup.dog @1.1.1.1 --short"
stdout = { string = '10.20.30.40' }
stderr = { empty = true }
status = 0
tags = [ "live", "cloudflare", "udp", "a" ]

[[cmd]]
name = "Look up a missing A record using UDP"
shell = "dog non.existent @1.1.1.1 --short"
stdout = { empty = true }
stderr = { string = "No results" }
status = 2
tags = [ "live", "cloudflare", "udp", "a" ]


# AAAA records

[[cmd]]
name = "Look up an existing AAAA record using UDP"
shell = "dog AAAA aaaa-example.lookup.dog @1.1.1.1 --short"
stdout = { string = '::1' }
stderr = { empty = true }
status = 0
tags = [ "live", "cloudflare", "udp", "aaaa" ]

[[cmd]]
name = "Look up a missing AAAA record using UDP"
shell = "dog AAAA non.existent @1.1.1.1 --short"
stdout = { empty = true }
stderr = { string = "No results" }
status = 2
tags = [ "live", "cloudflare", "udp", "aaaa" ]


# CAA records

[[cmd]]
name = "Look up an existing CAA record using UDP"
shell = "dog CAA caa-example.lookup.dog @1.1.1.1 --short"
stdout = { string = '"issue" "some.certificate.authority" (non-critical)' }
stderr = { empty = true }
status = 0
tags = [ "live", "cloudflare", "udp", "caa" ]

[[cmd]]
name = "Look up a missing CAA record using UDP"
shell = "dog CAA non.existent @1.1.1.1 --short"
stdout = { empty = true }
stderr = { string = "No results" }
status = 2
tags = [ "live", "cloudflare", "udp", "caa" ]


# CNAME records

[[cmd]]
name = "Look up an existing CNAME record using UDP"
shell = "dog CNAME cname-example.lookup.dog @1.1.1.1 --short"
stdout = { string = '"dns.lookup.dog."' }
stderr = { empty = true }
status = 0
tags = [ "live", "cloudflare", "udp", "cname" ]

[[cmd]]
name = "Look up a missing CNAME record using UDP"
shell = "dog CNAME non.existent @1.1.1.1 --short"
stdout = { empty = true }
stderr = { string = "No results" }
status = 2
tags = [ "live", "cloudflare", "udp", "cname" ]


# CNAME records

[[cmd]]
name = "Look up an existing HINFO record using UDP"
shell = "dog HINFO hinfo-example.lookup.dog @1.1.1.1 --short"
stdout = { string = '"some-kinda-cpu"' }
stderr = { empty = true }
status = 0
tags = [ "live", "cloudflare", "udp", "hinfo" ]

[[cmd]]
name = "Look up a missing HINFO record using UDP"
shell = "dog HINFO non.existent @1.1.1.1 --short"
stdout = { empty = true }
stderr = { string = "No results" }
status = 2
tags = [ "live", "cloudflare", "udp", "hinfo" ]


# MX records

[[cmd]]
name = "Look up an existing MX record using UDP"
shell = "dog MX mx-example.lookup.dog @1.1.1.1 --short"
stdout = { string = '10 "some.mail.server."' }
stderr = { empty = true }
status = 0
tags = [ "live", "cloudflare", "udp", "mx" ]

[[cmd]]
name = "Look up a missing MX record using UDP"
shell = "dog MX non.existent @1.1.1.1 --short"
stdout = { empty = true }
stderr = { string = "No results" }
status = 2
tags = [ "live", "cloudflare", "udp", "mx" ]


# NS records

[[cmd]]
name = "Look up an existing NS record using UDP"
shell = "dog NS lookup.dog @1.1.1.1 --short"
stdout = { string = 'ns1' }
stderr = { empty = true }
status = 0
tags = [ "live", "cloudflare", "udp", "ns" ]

[[cmd]]
name = "Look up a missing NS record using UDP"
shell = "dog NS non.existent @1.1.1.1 --short"
stdout = { empty = true }
stderr = { string = "No results" }
status = 2
tags = [ "live", "cloudflare", "udp", "ns" ]


# SOA records

[[cmd]]
name = "Look up an existing SOA record using UDP"
shell = "dog SOA lookup.dog @1.1.1.1 --short"
stdout = { string = 'ns1' }
stderr = { empty = true }
status = 0
tags = [ "live", "cloudflare", "udp", "soa" ]

[[cmd]]
name = "Look up a missing SOA record using UDP"
shell = "dog MX non.existent @1.1.1.1 --short"
stdout = { empty = true }
stderr = { string = "No results" }
status = 2
tags = [ "live", "cloudflare", "udp", "soa" ]


# SRV records

[[cmd]]
name = "Look up an existing SRV record using UDP"
shell = "dog SRV srv-example.lookup.dog @1.1.1.1 --short"
stdout = { string = '20 "dns.lookup.dog.":5000' }
stderr = { empty = true }
status = 0
tags = [ "live", "cloudflare", "udp", "srv" ]

[[cmd]]
name = "Look up a missing SRV record using UDP"
shell = "dog SRV non.existent @1.1.1.1 --short"
stdout = { empty = true }
stderr = { string = "No results" }
status = 2
tags = [ "live", "cloudflare", "udp", "srv" ]


# TXT records

[[cmd]]
name = "Look up an existing TXT record using UDP"
shell = "dog TXT txt-example.lookup.dog @1.1.1.1 --short"
stdout = { string = '"Cache Invalidation and Naming Things"' }
stderr = { empty = true }
status = 0
tags = [ "live", "cloudflare", "udp", "txt" ]

[[cmd]]
name = "Look up a missing TXT record using UDP"
shell = "dog TXT non.existent @1.1.1.1 --short"
stdout = { empty = true }
stderr = { string = "No results" }
status = 2
tags = [ "live", "cloudflare", "udp", "txt" ]