Benjamin Peterson | 90f5ba5 | 2010-03-11 22:53:45 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Jeremy Hylton | 5d9c303 | 2004-08-07 17:40:50 +0000 | [diff] [blame] | 2 | |
| 3 | import unittest |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 4 | from test import support |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 5 | from test.test_urllib2 import sanepathname2url |
Jeremy Hylton | 5d9c303 | 2004-08-07 17:40:50 +0000 | [diff] [blame] | 6 | |
Jeremy Hylton | 5d9c303 | 2004-08-07 17:40:50 +0000 | [diff] [blame] | 7 | import os |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 8 | import socket |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 9 | import urllib.error |
| 10 | import urllib.request |
Senthil Kumaran | b8f7ea6 | 2010-04-20 10:35:49 +0000 | [diff] [blame] | 11 | import sys |
Antoine Pitrou | d532321 | 2010-10-22 18:19:07 +0000 | [diff] [blame] | 12 | try: |
| 13 | import ssl |
| 14 | except ImportError: |
| 15 | ssl = None |
Senthil Kumaran | b8f7ea6 | 2010-04-20 10:35:49 +0000 | [diff] [blame] | 16 | |
| 17 | TIMEOUT = 60 # seconds |
Jeremy Hylton | 5d9c303 | 2004-08-07 17:40:50 +0000 | [diff] [blame] | 18 | |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 19 | |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 20 | def _retry_thrice(func, exc, *args, **kwargs): |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 21 | for i in range(3): |
| 22 | try: |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 23 | return func(*args, **kwargs) |
| 24 | except exc as e: |
Neal Norwitz | 2f14258 | 2008-01-26 19:49:41 +0000 | [diff] [blame] | 25 | last_exc = e |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 26 | continue |
| 27 | except: |
| 28 | raise |
| 29 | raise last_exc |
| 30 | |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 31 | def _wrap_with_retry_thrice(func, exc): |
| 32 | def wrapped(*args, **kwargs): |
| 33 | return _retry_thrice(func, exc, *args, **kwargs) |
| 34 | return wrapped |
| 35 | |
| 36 | # Connecting to remote hosts is flaky. Make it more robust by retrying |
| 37 | # the connection several times. |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 38 | _urlopen_with_retry = _wrap_with_retry_thrice(urllib.request.urlopen, |
| 39 | urllib.error.URLError) |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 40 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 41 | |
| 42 | class AuthTests(unittest.TestCase): |
| 43 | """Tests urllib2 authentication features.""" |
| 44 | |
| 45 | ## Disabled at the moment since there is no page under python.org which |
| 46 | ## could be used to HTTP authentication. |
| 47 | # |
| 48 | # def test_basic_auth(self): |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 49 | # import http.client |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 50 | # |
| 51 | # test_url = "http://www.python.org/test/test_urllib2/basic_auth" |
| 52 | # test_hostport = "www.python.org" |
| 53 | # test_realm = 'Test Realm' |
| 54 | # test_user = 'test.test_urllib2net' |
| 55 | # test_password = 'blah' |
| 56 | # |
| 57 | # # failure |
| 58 | # try: |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 59 | # _urlopen_with_retry(test_url) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 60 | # except urllib2.HTTPError, exc: |
| 61 | # self.assertEqual(exc.code, 401) |
| 62 | # else: |
| 63 | # self.fail("urlopen() should have failed with 401") |
| 64 | # |
| 65 | # # success |
| 66 | # auth_handler = urllib2.HTTPBasicAuthHandler() |
| 67 | # auth_handler.add_password(test_realm, test_hostport, |
| 68 | # test_user, test_password) |
| 69 | # opener = urllib2.build_opener(auth_handler) |
| 70 | # f = opener.open('http://localhost/') |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 71 | # response = _urlopen_with_retry("http://www.python.org/") |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 72 | # |
| 73 | # # The 'userinfo' URL component is deprecated by RFC 3986 for security |
| 74 | # # reasons, let's not implement it! (it's already implemented for proxy |
| 75 | # # specification strings (that is, URLs or authorities specifying a |
| 76 | # # proxy), so we must keep that) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 77 | # self.assertRaises(http.client.InvalidURL, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 78 | # urllib2.urlopen, "http://evil:thing@example.com") |
| 79 | |
| 80 | |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 81 | class CloseSocketTest(unittest.TestCase): |
| 82 | |
| 83 | def test_close(self): |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 84 | # calling .close() on urllib2's response objects should close the |
| 85 | # underlying socket |
| 86 | |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 87 | response = _urlopen_with_retry("http://www.python.org/") |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 88 | sock = response.fp |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 89 | self.assertTrue(not sock.closed) |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 90 | response.close() |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 91 | self.assertTrue(sock.closed) |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 92 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 93 | class OtherNetworkTests(unittest.TestCase): |
| 94 | def setUp(self): |
| 95 | if 0: # for debugging |
| 96 | import logging |
| 97 | logger = logging.getLogger("test_urllib2net") |
| 98 | logger.addHandler(logging.StreamHandler()) |
| 99 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 100 | # XXX The rest of these tests aren't very good -- they don't check much. |
| 101 | # They do sometimes catch some major disasters, though. |
| 102 | |
| 103 | def test_ftp(self): |
| 104 | urls = [ |
Gregory P. Smith | c111d9f | 2007-09-09 23:55:55 +0000 | [diff] [blame] | 105 | 'ftp://ftp.kernel.org/pub/linux/kernel/README', |
Mark Dickinson | 934896d | 2009-02-21 20:59:32 +0000 | [diff] [blame] | 106 | 'ftp://ftp.kernel.org/pub/linux/kernel/non-existent-file', |
Gregory P. Smith | c111d9f | 2007-09-09 23:55:55 +0000 | [diff] [blame] | 107 | #'ftp://ftp.kernel.org/pub/leenox/kernel/test', |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 108 | 'ftp://gatekeeper.research.compaq.com/pub/DEC/SRC' |
| 109 | '/research-reports/00README-Legal-Rules-Regs', |
| 110 | ] |
| 111 | self._test_urls(urls, self._extra_handlers()) |
| 112 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 113 | def test_file(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 114 | TESTFN = support.TESTFN |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 115 | f = open(TESTFN, 'w') |
| 116 | try: |
| 117 | f.write('hi there\n') |
| 118 | f.close() |
| 119 | urls = [ |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 120 | 'file:' + sanepathname2url(os.path.abspath(TESTFN)), |
| 121 | ('file:///nonsensename/etc/passwd', None, |
| 122 | urllib.error.URLError), |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 123 | ] |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 124 | self._test_urls(urls, self._extra_handlers(), retry=True) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 125 | finally: |
| 126 | os.remove(TESTFN) |
| 127 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 128 | # XXX Following test depends on machine configurations that are internal |
| 129 | # to CNRI. Need to set up a public server with the right authentication |
| 130 | # configuration for test purposes. |
| 131 | |
| 132 | ## def test_cnri(self): |
| 133 | ## if socket.gethostname() == 'bitdiddle': |
| 134 | ## localhost = 'bitdiddle.cnri.reston.va.us' |
| 135 | ## elif socket.gethostname() == 'bitdiddle.concentric.net': |
| 136 | ## localhost = 'localhost' |
| 137 | ## else: |
| 138 | ## localhost = None |
| 139 | ## if localhost is not None: |
| 140 | ## urls = [ |
| 141 | ## 'file://%s/etc/passwd' % localhost, |
| 142 | ## 'http://%s/simple/' % localhost, |
| 143 | ## 'http://%s/digest/' % localhost, |
| 144 | ## 'http://%s/not/found.h' % localhost, |
| 145 | ## ] |
| 146 | |
| 147 | ## bauth = HTTPBasicAuthHandler() |
| 148 | ## bauth.add_password('basic_test_realm', localhost, 'jhylton', |
| 149 | ## 'password') |
| 150 | ## dauth = HTTPDigestAuthHandler() |
| 151 | ## dauth.add_password('digest_test_realm', localhost, 'jhylton', |
| 152 | ## 'password') |
| 153 | |
| 154 | ## self._test_urls(urls, self._extra_handlers()+[bauth, dauth]) |
| 155 | |
Senthil Kumaran | d95cc75 | 2010-08-08 11:27:53 +0000 | [diff] [blame] | 156 | def test_urlwithfrag(self): |
| 157 | urlwith_frag = "http://docs.python.org/glossary.html#glossary" |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 158 | with support.transient_internet(urlwith_frag): |
| 159 | req = urllib.request.Request(urlwith_frag) |
| 160 | res = urllib.request.urlopen(req) |
| 161 | self.assertEqual(res.geturl(), |
Senthil Kumaran | 2643041 | 2011-04-13 07:01:19 +0800 | [diff] [blame] | 162 | "http://docs.python.org/glossary.html#glossary") |
Senthil Kumaran | d95cc75 | 2010-08-08 11:27:53 +0000 | [diff] [blame] | 163 | |
Senthil Kumaran | 42ef4b1 | 2010-09-27 01:26:03 +0000 | [diff] [blame] | 164 | def test_custom_headers(self): |
| 165 | url = "http://www.example.com" |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 166 | with support.transient_internet(url): |
| 167 | opener = urllib.request.build_opener() |
| 168 | request = urllib.request.Request(url) |
| 169 | self.assertFalse(request.header_items()) |
| 170 | opener.open(request) |
| 171 | self.assertTrue(request.header_items()) |
| 172 | self.assertTrue(request.has_header('User-agent')) |
| 173 | request.add_header('User-Agent','Test-Agent') |
| 174 | opener.open(request) |
| 175 | self.assertEqual(request.get_header('User-agent'),'Test-Agent') |
Senthil Kumaran | 42ef4b1 | 2010-09-27 01:26:03 +0000 | [diff] [blame] | 176 | |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 177 | def _test_urls(self, urls, handlers, retry=True): |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 178 | import time |
| 179 | import logging |
| 180 | debug = logging.getLogger("test_urllib2").debug |
| 181 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 182 | urlopen = urllib.request.build_opener(*handlers).open |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 183 | if retry: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 184 | urlopen = _wrap_with_retry_thrice(urlopen, urllib.error.URLError) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 185 | |
| 186 | for url in urls: |
| 187 | if isinstance(url, tuple): |
| 188 | url, req, expected_err = url |
| 189 | else: |
| 190 | req = expected_err = None |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 191 | |
| 192 | with support.transient_internet(url): |
| 193 | debug(url) |
Senthil Kumaran | b8f7ea6 | 2010-04-20 10:35:49 +0000 | [diff] [blame] | 194 | try: |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 195 | f = urlopen(url, req, TIMEOUT) |
| 196 | except EnvironmentError as err: |
| 197 | debug(err) |
| 198 | if expected_err: |
| 199 | msg = ("Didn't get expected error(s) %s for %s %s, got %s: %s" % |
| 200 | (expected_err, url, req, type(err), err)) |
| 201 | self.assertIsInstance(err, expected_err, msg) |
| 202 | except urllib.error.URLError as err: |
| 203 | if isinstance(err[0], socket.timeout): |
| 204 | print("<timeout: %s>" % url, file=sys.stderr) |
| 205 | continue |
| 206 | else: |
| 207 | raise |
| 208 | else: |
| 209 | try: |
| 210 | with support.time_out, \ |
| 211 | support.socket_peer_reset, \ |
| 212 | support.ioerror_peer_reset: |
| 213 | buf = f.read() |
| 214 | debug("read %d bytes" % len(buf)) |
| 215 | except socket.timeout: |
| 216 | print("<timeout: %s>" % url, file=sys.stderr) |
| 217 | f.close() |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 218 | debug("******** next url coming up...") |
| 219 | time.sleep(0.1) |
| 220 | |
| 221 | def _extra_handlers(self): |
| 222 | handlers = [] |
| 223 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 224 | cfh = urllib.request.CacheFTPHandler() |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 225 | cfh.setTimeout(1) |
| 226 | handlers.append(cfh) |
| 227 | |
| 228 | return handlers |
| 229 | |
Christian Heimes | bbe741d | 2008-03-28 10:53:29 +0000 | [diff] [blame] | 230 | |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 231 | class TimeoutTest(unittest.TestCase): |
| 232 | def test_http_basic(self): |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 233 | self.assertTrue(socket.getdefaulttimeout() is None) |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 234 | url = "http://www.python.org" |
| 235 | with support.transient_internet(url, timeout=None): |
| 236 | u = _urlopen_with_retry(url) |
| 237 | self.assertTrue(u.fp.raw._sock.gettimeout() is None) |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 238 | |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 239 | def test_http_default_timeout(self): |
| 240 | self.assertTrue(socket.getdefaulttimeout() is None) |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 241 | url = "http://www.python.org" |
| 242 | with support.transient_internet(url): |
| 243 | socket.setdefaulttimeout(60) |
| 244 | try: |
| 245 | u = _urlopen_with_retry(url) |
| 246 | finally: |
| 247 | socket.setdefaulttimeout(None) |
| 248 | self.assertEqual(u.fp.raw._sock.gettimeout(), 60) |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 249 | |
| 250 | def test_http_no_timeout(self): |
| 251 | self.assertTrue(socket.getdefaulttimeout() is None) |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 252 | url = "http://www.python.org" |
| 253 | with support.transient_internet(url): |
| 254 | socket.setdefaulttimeout(60) |
| 255 | try: |
| 256 | u = _urlopen_with_retry(url, timeout=None) |
| 257 | finally: |
| 258 | socket.setdefaulttimeout(None) |
| 259 | self.assertTrue(u.fp.raw._sock.gettimeout() is None) |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 260 | |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 261 | def test_http_timeout(self): |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 262 | url = "http://www.python.org" |
| 263 | with support.transient_internet(url): |
| 264 | u = _urlopen_with_retry(url, timeout=120) |
| 265 | self.assertEqual(u.fp.raw._sock.gettimeout(), 120) |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 266 | |
Benjamin Peterson | 87cb787 | 2010-04-11 21:59:57 +0000 | [diff] [blame] | 267 | FTP_HOST = "ftp://ftp.mirror.nl/pub/gnu/" |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 268 | |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 269 | def test_ftp_basic(self): |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 270 | self.assertTrue(socket.getdefaulttimeout() is None) |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 271 | with support.transient_internet(self.FTP_HOST, timeout=None): |
| 272 | u = _urlopen_with_retry(self.FTP_HOST) |
| 273 | self.assertTrue(u.fp.fp.raw._sock.gettimeout() is None) |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 274 | |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 275 | def test_ftp_default_timeout(self): |
| 276 | self.assertTrue(socket.getdefaulttimeout() is None) |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 277 | with support.transient_internet(self.FTP_HOST): |
| 278 | socket.setdefaulttimeout(60) |
| 279 | try: |
| 280 | u = _urlopen_with_retry(self.FTP_HOST) |
| 281 | finally: |
| 282 | socket.setdefaulttimeout(None) |
| 283 | self.assertEqual(u.fp.fp.raw._sock.gettimeout(), 60) |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 284 | |
| 285 | def test_ftp_no_timeout(self): |
| 286 | self.assertTrue(socket.getdefaulttimeout() is None) |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 287 | with support.transient_internet(self.FTP_HOST): |
| 288 | socket.setdefaulttimeout(60) |
| 289 | try: |
| 290 | u = _urlopen_with_retry(self.FTP_HOST, timeout=None) |
| 291 | finally: |
| 292 | socket.setdefaulttimeout(None) |
| 293 | self.assertTrue(u.fp.fp.raw._sock.gettimeout() is None) |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 294 | |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 295 | def test_ftp_timeout(self): |
Georg Brandl | 5be365f | 2010-10-28 14:55:02 +0000 | [diff] [blame] | 296 | with support.transient_internet(self.FTP_HOST): |
| 297 | u = _urlopen_with_retry(self.FTP_HOST, timeout=60) |
| 298 | self.assertEqual(u.fp.fp.raw._sock.gettimeout(), 60) |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 299 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 300 | |
Antoine Pitrou | d532321 | 2010-10-22 18:19:07 +0000 | [diff] [blame] | 301 | @unittest.skipUnless(ssl, "requires SSL support") |
| 302 | class HTTPSTests(unittest.TestCase): |
| 303 | |
| 304 | def test_sni(self): |
Antoine Pitrou | 0eee1f5 | 2010-11-03 08:53:25 +0000 | [diff] [blame] | 305 | self.skipTest("test disabled - test server needed") |
Antoine Pitrou | d532321 | 2010-10-22 18:19:07 +0000 | [diff] [blame] | 306 | # Checks that Server Name Indication works, if supported by the |
| 307 | # OpenSSL linked to. |
| 308 | # The ssl module itself doesn't have server-side support for SNI, |
| 309 | # so we rely on a third-party test site. |
| 310 | expect_sni = ssl.HAS_SNI |
Antoine Pitrou | 0eee1f5 | 2010-11-03 08:53:25 +0000 | [diff] [blame] | 311 | with support.transient_internet("XXX"): |
| 312 | u = urllib.request.urlopen("XXX") |
Antoine Pitrou | d532321 | 2010-10-22 18:19:07 +0000 | [diff] [blame] | 313 | contents = u.readall() |
| 314 | if expect_sni: |
| 315 | self.assertIn(b"Great", contents) |
| 316 | self.assertNotIn(b"Unfortunately", contents) |
| 317 | else: |
| 318 | self.assertNotIn(b"Great", contents) |
| 319 | self.assertIn(b"Unfortunately", contents) |
| 320 | |
| 321 | |
Jeremy Hylton | 5d9c303 | 2004-08-07 17:40:50 +0000 | [diff] [blame] | 322 | def test_main(): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 323 | support.requires("network") |
| 324 | support.run_unittest(AuthTests, |
Antoine Pitrou | d532321 | 2010-10-22 18:19:07 +0000 | [diff] [blame] | 325 | HTTPSTests, |
| 326 | OtherNetworkTests, |
| 327 | CloseSocketTest, |
| 328 | TimeoutTest, |
| 329 | ) |
Jeremy Hylton | 5d9c303 | 2004-08-07 17:40:50 +0000 | [diff] [blame] | 330 | |
| 331 | if __name__ == "__main__": |
| 332 | test_main() |