in the DNS test, use dnspython3 rather than dig

This commit is contained in:
Joshua Tauberer 2014-04-23 18:27:50 -04:00
parent 1b4dd98270
commit 0be47c414d
2 changed files with 41 additions and 49 deletions

View File

@ -0,0 +1 @@
dnspython3

View File

@ -7,7 +7,8 @@
# where ipaddr is the IP address of your Mail-in-a-Box # where ipaddr is the IP address of your Mail-in-a-Box
# and hostname is the domain name to check the DNS for. # and hostname is the domain name to check the DNS for.
import sys, subprocess, re, difflib import sys, re, difflib
import dns.reversename, dns.resolver
if len(sys.argv) < 3: if len(sys.argv) < 3:
print("Usage: tests/dns.py ipaddress hostname") print("Usage: tests/dns.py ipaddress hostname")
@ -15,59 +16,49 @@ if len(sys.argv) < 3:
ipaddr, hostname = sys.argv[1:] ipaddr, hostname = sys.argv[1:]
# construct the expected output
subs = { "ipaddr": ipaddr, "hostname": hostname }
expected = """
{hostname}. ##### IN A {ipaddr}
{hostname}. ##### IN NS ns1.{hostname}.
{hostname}. ##### IN NS ns2.{hostname}.
ns1.{hostname}. ##### IN A {ipaddr}
ns2.{hostname}. ##### IN A {ipaddr}
www.{hostname}. ##### IN A {ipaddr}
{hostname}. ##### IN MX 10 {hostname}.
{hostname}. ##### IN TXT "v=spf1 mx -all"
mail._domainkey.{hostname}. ##### IN TXT "v=DKIM1\; k=rsa\; s=email\; " "p=__KEY__"
""".format(**subs).strip() + "\n"
def dig(server, digargs):
# run dig and clean the output
response = subprocess.check_output(['dig', '@' + server, "+noadditional", "+noauthority"] + digargs).decode('utf8')
response = re.sub('[\r\n]+', '\n', response) # remove blank lines
response = re.sub('\n;.*', '', response) # remove comments
response = re.sub('(\n\S+\s+)(\d+)', r'\1#####', response) # normalize TTLs
response = re.sub(r"(\"p=).*(\")", r"\1__KEY__\2", response) # normalize DKIM key
response = response.strip() + "\n"
return response
def test(server, description): def test(server, description):
digoutput = \ tests = [
dig(server, [hostname])\ (hostname, "A", ipaddr),
+ dig(server, ["ns", hostname]) \ (hostname, "NS", "ns1.%s.;ns2.%s." % (hostname, hostname)),
+ dig(server, ["ns1." + hostname]) \ ("ns1." + hostname, "A", ipaddr),
+ dig(server, ["ns2." + hostname]) \ ("ns2." + hostname, "A", ipaddr),
+ dig(server, ["www." + hostname]) \ ("www." + hostname, "A", ipaddr),
+ dig(server, ["mx", hostname]) \ (hostname, "MX", "10 " + hostname + "."),
+ dig(server, ["txt", hostname]) \ (hostname, "TXT", "\"v=spf1 mx -all\""),
+ dig(server, ["txt", "mail._domainkey." + hostname]) ("mail._domainkey." + hostname, "TXT", "\"v=DKIM1; k=rsa; s=email; \" \"p=__KEY__\""),
return test2(digoutput, server, description, expected) ]
return test2(tests, server, description)
def test_ptr(server, description): def test_ptr(server, description):
ipaddr_reversed = ".".join( reversed( ipaddr.split(".") ) ) ipaddr_rev = dns.reversename.from_address(ipaddr)
expected = "%s.in-addr.arpa. ##### IN PTR %s.\n" % (ipaddr_reversed, hostname) tests = [
digoutput = dig(server, ["-x", ipaddr]) (ipaddr_rev, "PTR", hostname+'.'),
return test2(digoutput, server, description, expected) ]
return test2(tests, server, description)
def test2(digoutput, server, description, expected): def test2(tests, server, description):
# Show a diff if there are any changes first = True
has_diff = False resolver = dns.resolver.get_default_resolver()
def split(s): return [line+"\n" for line in s.split("\n")] resolver.nameservers = [server]
for line in difflib.unified_diff(split(expected), split(digoutput), fromfile='expected DNS settings', tofile=description): for qname, rtype, expected_answer in tests:
if not has_diff: # do the query and format the result as a string
print("The response from %s (%s) is not correct:" % (description, server)) response = dns.resolver.query(qname, rtype)
response = ";".join(str(r) for r in response)
response = re.sub(r"(\"p=).*(\")", r"\1__KEY__\2", response) # normalize DKIM key
# is it right?
if response == expected_answer:
#print(server, ":", qname, rtype, "?", response)
continue
# show prolem
if first:
print("Incorrect DNS Response from", description)
print() print()
has_diff = True first = False
sys.stdout.write(line)
return not has_diff print(qname, rtype, "got", repr(response), "but we should have gotten", repr(expected_answer))
return first # success
# Test the response from the machine itself. # Test the response from the machine itself.
if not test(ipaddr, "Mail-in-a-Box"): if not test(ipaddr, "Mail-in-a-Box"):