Browse Source

Updated DNSUtilsTests to test use_dns and added positive test to testTextToIp

pull/27/head
Lee Clemens 13 years ago
parent
commit
4b18afb28a
  1. 22
      testcases/filtertestcase.py

22
testcases/filtertestcase.py

@ -222,12 +222,24 @@ class GetFailures(unittest.TestCase):
class DNSUtilsTests(unittest.TestCase):
def testTextToIp(self, useDns):
# Bogus addresses which should have no DNS matches
bogus = [
def testUseDns(self):
res = DNSUtils.textToIp('www.example.com', 'no')
self.assertEqual(res, None)
res = DNSUtils.textToIp('www.example.com', 'warn')
self.assertEqual(res, ['192.0.43.10'])
res = DNSUtils.textToIp('www.example.com', 'yes')
self.assertEqual(res, ['192.0.43.10'])
def testTextToIp(self):
# Test hostnames
hostnames = [
'www.example.com'
'doh1.2.3.4.buga.xxxxx.yyy.invalid',
'1.2.3.4.buga.xxxxx.yyy.invalid',
]
for s in bogus:
res = DNSUtils.textToIp(s, useDns)
for s in hostnames:
res = DNSUtils.textToIp(s, 'yes')
if s is 'www.example.com':
self.assertEqual(res, ['192.0.43.10'])
else:
self.assertEqual(res, [])

Loading…
Cancel
Save