[Python-checkins] cpython (merge 3.3 -> default): Issue #16257: make test_create_connection() handle ENETUNREACH.

trent.nelson python-checkins at python.org
Wed Oct 17 12:16:18 CEST 2012


http://hg.python.org/cpython/rev/37a59bd23578
changeset:   79786:37a59bd23578
parent:      79783:f9eb516bea88
parent:      79785:6a938ce6315c
user:        Trent Nelson <trent at trent.me>
date:        Wed Oct 17 06:16:02 2012 -0400
summary:
  Issue #16257: make test_create_connection() handle ENETUNREACH.

files:
  Lib/test/test_socket.py |  21 ++++++++++++++++++++-
  1 files changed, 20 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -4109,7 +4109,26 @@
         port = support.find_unused_port()
         with self.assertRaises(socket.error) as cm:
             socket.create_connection((HOST, port))
-        self.assertEqual(cm.exception.errno, errno.ECONNREFUSED)
+
+        # Issue #16257: create_connection() calls getaddrinfo() against
+        # 'localhost'.  This may result in an IPV6 addr being returned
+        # as well as an IPV4 one:
+        #   >>> socket.getaddrinfo('localhost', port, 0, SOCK_STREAM)
+        #   >>> [(2,  2, 0, '', ('127.0.0.1', 41230)),
+        #        (26, 2, 0, '', ('::1', 41230, 0, 0))]
+        #
+        # create_connection() enumerates through all the addresses returned
+        # and if it doesn't successfully bind to any of them, it propagates
+        # the last exception it encountered.
+        #
+        # On Solaris, ENETUNREACH is returned in this circumstance instead
+        # of ECONNREFUSED.  So, if that errno exists, add it to our list of
+        # expected errnos.
+        expected_errnos = [ errno.ECONNREFUSED, ]
+        if hasattr(errno, 'ENETUNREACH'):
+            expected_errnos.append(errno.ENETUNREACH)
+
+        self.assertIn(cm.exception.errno, expected_errnos)
 
     def test_create_connection_timeout(self):
         # Issue #9792: create_connection() should not recast timeout errors

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list