blob: eaad325d0b826d354ec8c8e04a7779b7434b6a06 [file] [log] [blame]
Benjamin Peterson90f5ba52010-03-11 22:53:45 +00001#!/usr/bin/env python3
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00002
3import unittest
Benjamin Petersonee8712c2008-05-20 21:35:26 +00004from test import support
Thomas Wouters477c8d52006-05-27 19:21:47 +00005from test.test_urllib2 import sanepathname2url
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00006
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00007import os
Jeremy Hylton1afc1692008-06-18 20:49:58 +00008import socket
Jeremy Hylton1afc1692008-06-18 20:49:58 +00009import urllib.error
10import urllib.request
Senthil Kumaranb8f7ea62010-04-20 10:35:49 +000011import sys
Antoine Pitroud5323212010-10-22 18:19:07 +000012try:
13 import ssl
14except ImportError:
15 ssl = None
Senthil Kumaranb8f7ea62010-04-20 10:35:49 +000016
17TIMEOUT = 60 # seconds
Jeremy Hylton5d9c3032004-08-07 17:40:50 +000018
Christian Heimes969fe572008-01-25 11:23:10 +000019
Georg Brandlc28e1fa2008-06-10 19:20:26 +000020def _retry_thrice(func, exc, *args, **kwargs):
Christian Heimes969fe572008-01-25 11:23:10 +000021 for i in range(3):
22 try:
Georg Brandlc28e1fa2008-06-10 19:20:26 +000023 return func(*args, **kwargs)
24 except exc as e:
Neal Norwitz2f142582008-01-26 19:49:41 +000025 last_exc = e
Christian Heimes969fe572008-01-25 11:23:10 +000026 continue
27 except:
28 raise
29 raise last_exc
30
Georg Brandlc28e1fa2008-06-10 19:20:26 +000031def _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 Hylton1afc1692008-06-18 20:49:58 +000038_urlopen_with_retry = _wrap_with_retry_thrice(urllib.request.urlopen,
39 urllib.error.URLError)
Christian Heimes969fe572008-01-25 11:23:10 +000040
Thomas Wouters477c8d52006-05-27 19:21:47 +000041
42class 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 Brandl24420152008-05-26 16:32:26 +000049# import http.client
Thomas Wouters477c8d52006-05-27 19:21:47 +000050#
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 Heimes969fe572008-01-25 11:23:10 +000059# _urlopen_with_retry(test_url)
Thomas Wouters477c8d52006-05-27 19:21:47 +000060# 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 Heimes969fe572008-01-25 11:23:10 +000071# response = _urlopen_with_retry("http://www.python.org/")
Thomas Wouters477c8d52006-05-27 19:21:47 +000072#
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 Brandl24420152008-05-26 16:32:26 +000077# self.assertRaises(http.client.InvalidURL,
Thomas Wouters477c8d52006-05-27 19:21:47 +000078# urllib2.urlopen, "http://evil:thing@example.com")
79
80
Thomas Woutersb2137042007-02-01 18:02:27 +000081class CloseSocketTest(unittest.TestCase):
82
83 def test_close(self):
Thomas Woutersb2137042007-02-01 18:02:27 +000084 # calling .close() on urllib2's response objects should close the
85 # underlying socket
86
Christian Heimes969fe572008-01-25 11:23:10 +000087 response = _urlopen_with_retry("http://www.python.org/")
Jeremy Hylton1afc1692008-06-18 20:49:58 +000088 sock = response.fp
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000089 self.assertTrue(not sock.closed)
Thomas Woutersb2137042007-02-01 18:02:27 +000090 response.close()
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000091 self.assertTrue(sock.closed)
Thomas Woutersb2137042007-02-01 18:02:27 +000092
Thomas Wouters477c8d52006-05-27 19:21:47 +000093class 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 Wouters477c8d52006-05-27 19:21:47 +0000100 # 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. Smithc111d9f2007-09-09 23:55:55 +0000105 'ftp://ftp.kernel.org/pub/linux/kernel/README',
Mark Dickinson934896d2009-02-21 20:59:32 +0000106 'ftp://ftp.kernel.org/pub/linux/kernel/non-existent-file',
Gregory P. Smithc111d9f2007-09-09 23:55:55 +0000107 #'ftp://ftp.kernel.org/pub/leenox/kernel/test',
Thomas Wouters477c8d52006-05-27 19:21:47 +0000108 '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 Wouters477c8d52006-05-27 19:21:47 +0000113 def test_file(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000114 TESTFN = support.TESTFN
Thomas Wouters477c8d52006-05-27 19:21:47 +0000115 f = open(TESTFN, 'w')
116 try:
117 f.write('hi there\n')
118 f.close()
119 urls = [
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000120 'file:' + sanepathname2url(os.path.abspath(TESTFN)),
121 ('file:///nonsensename/etc/passwd', None,
122 urllib.error.URLError),
Thomas Wouters477c8d52006-05-27 19:21:47 +0000123 ]
Georg Brandlc28e1fa2008-06-10 19:20:26 +0000124 self._test_urls(urls, self._extra_handlers(), retry=True)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000125 finally:
126 os.remove(TESTFN)
127
Thomas Wouters477c8d52006-05-27 19:21:47 +0000128 # 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 Kumarand95cc752010-08-08 11:27:53 +0000156 def test_urlwithfrag(self):
157 urlwith_frag = "http://docs.python.org/glossary.html#glossary"
Georg Brandl5be365f2010-10-28 14:55:02 +0000158 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 Kumaran26430412011-04-13 07:01:19 +0800162 "http://docs.python.org/glossary.html#glossary")
Senthil Kumarand95cc752010-08-08 11:27:53 +0000163
Senthil Kumaran42ef4b12010-09-27 01:26:03 +0000164 def test_custom_headers(self):
165 url = "http://www.example.com"
Georg Brandl5be365f2010-10-28 14:55:02 +0000166 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 Kumaran42ef4b12010-09-27 01:26:03 +0000176
Georg Brandlc28e1fa2008-06-10 19:20:26 +0000177 def _test_urls(self, urls, handlers, retry=True):
Thomas Wouters477c8d52006-05-27 19:21:47 +0000178 import time
179 import logging
180 debug = logging.getLogger("test_urllib2").debug
181
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000182 urlopen = urllib.request.build_opener(*handlers).open
Georg Brandlc28e1fa2008-06-10 19:20:26 +0000183 if retry:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000184 urlopen = _wrap_with_retry_thrice(urlopen, urllib.error.URLError)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000185
186 for url in urls:
187 if isinstance(url, tuple):
188 url, req, expected_err = url
189 else:
190 req = expected_err = None
Georg Brandl5be365f2010-10-28 14:55:02 +0000191
192 with support.transient_internet(url):
193 debug(url)
Senthil Kumaranb8f7ea62010-04-20 10:35:49 +0000194 try:
Georg Brandl5be365f2010-10-28 14:55:02 +0000195 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 Wouters477c8d52006-05-27 19:21:47 +0000218 debug("******** next url coming up...")
219 time.sleep(0.1)
220
221 def _extra_handlers(self):
222 handlers = []
223
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000224 cfh = urllib.request.CacheFTPHandler()
Thomas Wouters477c8d52006-05-27 19:21:47 +0000225 cfh.setTimeout(1)
226 handlers.append(cfh)
227
228 return handlers
229
Christian Heimesbbe741d2008-03-28 10:53:29 +0000230
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000231class TimeoutTest(unittest.TestCase):
232 def test_http_basic(self):
Georg Brandlf78e02b2008-06-10 17:40:04 +0000233 self.assertTrue(socket.getdefaulttimeout() is None)
Georg Brandl5be365f2010-10-28 14:55:02 +0000234 url = "http://www.python.org"
235 with support.transient_internet(url, timeout=None):
236 u = _urlopen_with_retry(url)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200237 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000238 self.assertTrue(u.fp.raw._sock.gettimeout() is None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000239
Georg Brandlf78e02b2008-06-10 17:40:04 +0000240 def test_http_default_timeout(self):
241 self.assertTrue(socket.getdefaulttimeout() is None)
Georg Brandl5be365f2010-10-28 14:55:02 +0000242 url = "http://www.python.org"
243 with support.transient_internet(url):
244 socket.setdefaulttimeout(60)
245 try:
246 u = _urlopen_with_retry(url)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200247 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000248 finally:
249 socket.setdefaulttimeout(None)
250 self.assertEqual(u.fp.raw._sock.gettimeout(), 60)
Georg Brandlf78e02b2008-06-10 17:40:04 +0000251
252 def test_http_no_timeout(self):
253 self.assertTrue(socket.getdefaulttimeout() is None)
Georg Brandl5be365f2010-10-28 14:55:02 +0000254 url = "http://www.python.org"
255 with support.transient_internet(url):
256 socket.setdefaulttimeout(60)
257 try:
258 u = _urlopen_with_retry(url, timeout=None)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200259 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000260 finally:
261 socket.setdefaulttimeout(None)
262 self.assertTrue(u.fp.raw._sock.gettimeout() is None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000263
Georg Brandlf78e02b2008-06-10 17:40:04 +0000264 def test_http_timeout(self):
Georg Brandl5be365f2010-10-28 14:55:02 +0000265 url = "http://www.python.org"
266 with support.transient_internet(url):
267 u = _urlopen_with_retry(url, timeout=120)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200268 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000269 self.assertEqual(u.fp.raw._sock.gettimeout(), 120)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000270
Benjamin Peterson87cb7872010-04-11 21:59:57 +0000271 FTP_HOST = "ftp://ftp.mirror.nl/pub/gnu/"
Christian Heimes969fe572008-01-25 11:23:10 +0000272
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000273 def test_ftp_basic(self):
Georg Brandlf78e02b2008-06-10 17:40:04 +0000274 self.assertTrue(socket.getdefaulttimeout() is None)
Georg Brandl5be365f2010-10-28 14:55:02 +0000275 with support.transient_internet(self.FTP_HOST, timeout=None):
276 u = _urlopen_with_retry(self.FTP_HOST)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200277 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000278 self.assertTrue(u.fp.fp.raw._sock.gettimeout() is None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000279
Georg Brandlf78e02b2008-06-10 17:40:04 +0000280 def test_ftp_default_timeout(self):
281 self.assertTrue(socket.getdefaulttimeout() is None)
Georg Brandl5be365f2010-10-28 14:55:02 +0000282 with support.transient_internet(self.FTP_HOST):
283 socket.setdefaulttimeout(60)
284 try:
285 u = _urlopen_with_retry(self.FTP_HOST)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200286 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000287 finally:
288 socket.setdefaulttimeout(None)
289 self.assertEqual(u.fp.fp.raw._sock.gettimeout(), 60)
Georg Brandlf78e02b2008-06-10 17:40:04 +0000290
291 def test_ftp_no_timeout(self):
292 self.assertTrue(socket.getdefaulttimeout() is None)
Georg Brandl5be365f2010-10-28 14:55:02 +0000293 with support.transient_internet(self.FTP_HOST):
294 socket.setdefaulttimeout(60)
295 try:
296 u = _urlopen_with_retry(self.FTP_HOST, timeout=None)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200297 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000298 finally:
299 socket.setdefaulttimeout(None)
300 self.assertTrue(u.fp.fp.raw._sock.gettimeout() is None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000301
Georg Brandlf78e02b2008-06-10 17:40:04 +0000302 def test_ftp_timeout(self):
Georg Brandl5be365f2010-10-28 14:55:02 +0000303 with support.transient_internet(self.FTP_HOST):
304 u = _urlopen_with_retry(self.FTP_HOST, timeout=60)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200305 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000306 self.assertEqual(u.fp.fp.raw._sock.gettimeout(), 60)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000307
Thomas Wouters477c8d52006-05-27 19:21:47 +0000308
Antoine Pitroud5323212010-10-22 18:19:07 +0000309@unittest.skipUnless(ssl, "requires SSL support")
310class HTTPSTests(unittest.TestCase):
311
312 def test_sni(self):
Antoine Pitrou0eee1f52010-11-03 08:53:25 +0000313 self.skipTest("test disabled - test server needed")
Antoine Pitroud5323212010-10-22 18:19:07 +0000314 # Checks that Server Name Indication works, if supported by the
315 # OpenSSL linked to.
316 # The ssl module itself doesn't have server-side support for SNI,
317 # so we rely on a third-party test site.
318 expect_sni = ssl.HAS_SNI
Antoine Pitrou0eee1f52010-11-03 08:53:25 +0000319 with support.transient_internet("XXX"):
320 u = urllib.request.urlopen("XXX")
Antoine Pitroud5323212010-10-22 18:19:07 +0000321 contents = u.readall()
322 if expect_sni:
323 self.assertIn(b"Great", contents)
324 self.assertNotIn(b"Unfortunately", contents)
325 else:
326 self.assertNotIn(b"Great", contents)
327 self.assertIn(b"Unfortunately", contents)
328
329
Jeremy Hylton5d9c3032004-08-07 17:40:50 +0000330def test_main():
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000331 support.requires("network")
332 support.run_unittest(AuthTests,
Antoine Pitroud5323212010-10-22 18:19:07 +0000333 HTTPSTests,
334 OtherNetworkTests,
335 CloseSocketTest,
336 TimeoutTest,
337 )
Jeremy Hylton5d9c3032004-08-07 17:40:50 +0000338
339if __name__ == "__main__":
340 test_main()