[Python-checkins] cpython (merge 3.3 -> default): Forward port new test for SSLSocket.connect_ex()

antoine.pitrou python-checkins at python.org
Fri Dec 28 19:11:46 CET 2012


http://hg.python.org/cpython/rev/5ef49659935f
changeset:   81131:5ef49659935f
parent:      81126:1b2134a78c17
parent:      81130:e0761560d844
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Fri Dec 28 19:09:41 2012 +0100
summary:
  Forward port new test for SSLSocket.connect_ex()

files:
  Lib/test/test_ssl.py |  11 +++++++++++
  1 files changed, 11 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -714,6 +714,17 @@
             finally:
                 s.close()
 
+    def test_connect_ex_error(self):
+        with support.transient_internet("svn.python.org"):
+            s = ssl.wrap_socket(socket.socket(socket.AF_INET),
+                                cert_reqs=ssl.CERT_REQUIRED,
+                                ca_certs=SVN_PYTHON_ORG_ROOT_CERT)
+            try:
+                self.assertEqual(errno.ECONNREFUSED,
+                                 s.connect_ex(("svn.python.org", 444)))
+            finally:
+                s.close()
+
     def test_connect_with_context(self):
         with support.transient_internet("svn.python.org"):
             # Same as test_connect, but with a separately created context

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


More information about the Python-checkins mailing list