mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Avoid failing in test_urllibnet.test_bad_address when some overzealous
DNS service (e.g. OpenDNS) resolves a non-existent domain name. The test is now skipped instead.
This commit is contained in:
parent
b9ac25d1c3
commit
72fff046a6
2 changed files with 12 additions and 0 deletions
|
@ -113,6 +113,14 @@ class urlopenNetworkTests(unittest.TestCase):
|
|||
def test_bad_address(self):
|
||||
# Make sure proper exception is raised when connecting to a bogus
|
||||
# address.
|
||||
bogus_domain = "sadflkjsasf.i.nvali.d"
|
||||
try:
|
||||
socket.gethostbyname(bogus_domain)
|
||||
except socket.gaierror:
|
||||
pass
|
||||
else:
|
||||
# This happens with some overzealous DNS providers such as OpenDNS
|
||||
self.skipTest("%r should not resolve for test to work" % bogus_domain)
|
||||
self.assertRaises(IOError,
|
||||
# SF patch 809915: In Sep 2003, VeriSign started
|
||||
# highjacking invalid .com and .net addresses to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue