blob: 0f43d71ea67b55078a547db02f9424190f545acf [file] [log] [blame]
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001import unittest
Benjamin Petersonee8712c2008-05-20 21:35:26 +00002from test import support
Thomas Wouters477c8d52006-05-27 19:21:47 +00003from test.test_urllib2 import sanepathname2url
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00004
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00005import os
Jeremy Hylton1afc1692008-06-18 20:49:58 +00006import socket
Jeremy Hylton1afc1692008-06-18 20:49:58 +00007import urllib.error
8import urllib.request
Senthil Kumaranb8f7ea62010-04-20 10:35:49 +00009import sys
Berker Peksagb77983d2014-10-10 14:34:16 +030010
doko@ubuntu.come5751482013-12-26 17:37:11 +010011support.requires("network")
12
Senthil Kumaranb8f7ea62010-04-20 10:35:49 +000013TIMEOUT = 60 # seconds
Jeremy Hylton5d9c3032004-08-07 17:40:50 +000014
Christian Heimes969fe572008-01-25 11:23:10 +000015
Georg Brandlc28e1fa2008-06-10 19:20:26 +000016def _retry_thrice(func, exc, *args, **kwargs):
Christian Heimes969fe572008-01-25 11:23:10 +000017 for i in range(3):
18 try:
Georg Brandlc28e1fa2008-06-10 19:20:26 +000019 return func(*args, **kwargs)
20 except exc as e:
Neal Norwitz2f142582008-01-26 19:49:41 +000021 last_exc = e
Christian Heimes969fe572008-01-25 11:23:10 +000022 continue
Christian Heimes969fe572008-01-25 11:23:10 +000023 raise last_exc
24
Georg Brandlc28e1fa2008-06-10 19:20:26 +000025def _wrap_with_retry_thrice(func, exc):
26 def wrapped(*args, **kwargs):
27 return _retry_thrice(func, exc, *args, **kwargs)
28 return wrapped
29
Victor Stinnerc11b3b12018-12-05 01:58:31 +010030# bpo-35411: FTP tests of test_urllib2net randomly fail
31# with "425 Security: Bad IP connecting" on Travis CI
32skip_ftp_test_on_travis = unittest.skipIf('TRAVIS' in os.environ,
33 'bpo-35411: skip FTP test '
34 'on Travis CI')
35
36
Georg Brandlc28e1fa2008-06-10 19:20:26 +000037# Connecting to remote hosts is flaky. Make it more robust by retrying
38# the connection several times.
Jeremy Hylton1afc1692008-06-18 20:49:58 +000039_urlopen_with_retry = _wrap_with_retry_thrice(urllib.request.urlopen,
40 urllib.error.URLError)
Christian Heimes969fe572008-01-25 11:23:10 +000041
Thomas Wouters477c8d52006-05-27 19:21:47 +000042
43class AuthTests(unittest.TestCase):
44 """Tests urllib2 authentication features."""
45
46## Disabled at the moment since there is no page under python.org which
47## could be used to HTTP authentication.
48#
49# def test_basic_auth(self):
Georg Brandl24420152008-05-26 16:32:26 +000050# import http.client
Thomas Wouters477c8d52006-05-27 19:21:47 +000051#
52# test_url = "http://www.python.org/test/test_urllib2/basic_auth"
53# test_hostport = "www.python.org"
54# test_realm = 'Test Realm'
55# test_user = 'test.test_urllib2net'
56# test_password = 'blah'
57#
58# # failure
59# try:
Christian Heimes969fe572008-01-25 11:23:10 +000060# _urlopen_with_retry(test_url)
Thomas Wouters477c8d52006-05-27 19:21:47 +000061# except urllib2.HTTPError, exc:
62# self.assertEqual(exc.code, 401)
63# else:
64# self.fail("urlopen() should have failed with 401")
65#
66# # success
67# auth_handler = urllib2.HTTPBasicAuthHandler()
68# auth_handler.add_password(test_realm, test_hostport,
69# test_user, test_password)
70# opener = urllib2.build_opener(auth_handler)
71# f = opener.open('http://localhost/')
Christian Heimes969fe572008-01-25 11:23:10 +000072# response = _urlopen_with_retry("http://www.python.org/")
Thomas Wouters477c8d52006-05-27 19:21:47 +000073#
74# # The 'userinfo' URL component is deprecated by RFC 3986 for security
75# # reasons, let's not implement it! (it's already implemented for proxy
76# # specification strings (that is, URLs or authorities specifying a
77# # proxy), so we must keep that)
Georg Brandl24420152008-05-26 16:32:26 +000078# self.assertRaises(http.client.InvalidURL,
Thomas Wouters477c8d52006-05-27 19:21:47 +000079# urllib2.urlopen, "http://evil:thing@example.com")
80
81
Thomas Woutersb2137042007-02-01 18:02:27 +000082class CloseSocketTest(unittest.TestCase):
83
84 def test_close(self):
Thomas Woutersb2137042007-02-01 18:02:27 +000085 # calling .close() on urllib2's response objects should close the
86 # underlying socket
Stéphane Wirtela40681d2019-02-22 14:45:36 +010087 url = support.TEST_HTTP_URL
Nadeem Vawda61baebd2012-01-25 08:02:05 +020088 with support.transient_internet(url):
89 response = _urlopen_with_retry(url)
90 sock = response.fp
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +020091 self.assertFalse(sock.closed)
Nadeem Vawda61baebd2012-01-25 08:02:05 +020092 response.close()
93 self.assertTrue(sock.closed)
Thomas Woutersb2137042007-02-01 18:02:27 +000094
Thomas Wouters477c8d52006-05-27 19:21:47 +000095class OtherNetworkTests(unittest.TestCase):
96 def setUp(self):
97 if 0: # for debugging
98 import logging
99 logger = logging.getLogger("test_urllib2net")
100 logger.addHandler(logging.StreamHandler())
101
Thomas Wouters477c8d52006-05-27 19:21:47 +0000102 # XXX The rest of these tests aren't very good -- they don't check much.
103 # They do sometimes catch some major disasters, though.
104
Victor Stinnerc11b3b12018-12-05 01:58:31 +0100105 @skip_ftp_test_on_travis
Thomas Wouters477c8d52006-05-27 19:21:47 +0000106 def test_ftp(self):
107 urls = [
Ammar Askard81bea62017-07-18 19:27:24 -0700108 'ftp://www.pythontest.net/README',
109 ('ftp://www.pythontest.net/non-existent-file',
Antoine Pitroubc2c4c92014-09-17 00:39:21 +0200110 None, urllib.error.URLError),
Thomas Wouters477c8d52006-05-27 19:21:47 +0000111 ]
112 self._test_urls(urls, self._extra_handlers())
113
Thomas Wouters477c8d52006-05-27 19:21:47 +0000114 def test_file(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000115 TESTFN = support.TESTFN
Thomas Wouters477c8d52006-05-27 19:21:47 +0000116 f = open(TESTFN, 'w')
117 try:
118 f.write('hi there\n')
119 f.close()
120 urls = [
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000121 'file:' + sanepathname2url(os.path.abspath(TESTFN)),
122 ('file:///nonsensename/etc/passwd', None,
123 urllib.error.URLError),
Thomas Wouters477c8d52006-05-27 19:21:47 +0000124 ]
Georg Brandlc28e1fa2008-06-10 19:20:26 +0000125 self._test_urls(urls, self._extra_handlers(), retry=True)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000126 finally:
127 os.remove(TESTFN)
128
Senthil Kumaran3800ea92012-01-21 11:52:48 +0800129 self.assertRaises(ValueError, urllib.request.urlopen,'./relative_path/to/file')
130
Thomas Wouters477c8d52006-05-27 19:21:47 +0000131 # XXX Following test depends on machine configurations that are internal
132 # to CNRI. Need to set up a public server with the right authentication
133 # configuration for test purposes.
134
135## def test_cnri(self):
136## if socket.gethostname() == 'bitdiddle':
137## localhost = 'bitdiddle.cnri.reston.va.us'
138## elif socket.gethostname() == 'bitdiddle.concentric.net':
139## localhost = 'localhost'
140## else:
141## localhost = None
142## if localhost is not None:
143## urls = [
144## 'file://%s/etc/passwd' % localhost,
145## 'http://%s/simple/' % localhost,
146## 'http://%s/digest/' % localhost,
147## 'http://%s/not/found.h' % localhost,
148## ]
149
150## bauth = HTTPBasicAuthHandler()
151## bauth.add_password('basic_test_realm', localhost, 'jhylton',
152## 'password')
153## dauth = HTTPDigestAuthHandler()
154## dauth.add_password('digest_test_realm', localhost, 'jhylton',
155## 'password')
156
157## self._test_urls(urls, self._extra_handlers()+[bauth, dauth])
158
Senthil Kumarand95cc752010-08-08 11:27:53 +0000159 def test_urlwithfrag(self):
Benjamin Peterson258f3f02014-11-05 11:27:14 -0500160 urlwith_frag = "http://www.pythontest.net/index.html#frag"
Georg Brandl5be365f2010-10-28 14:55:02 +0000161 with support.transient_internet(urlwith_frag):
162 req = urllib.request.Request(urlwith_frag)
163 res = urllib.request.urlopen(req)
164 self.assertEqual(res.geturl(),
Benjamin Peterson258f3f02014-11-05 11:27:14 -0500165 "http://www.pythontest.net/index.html#frag")
Senthil Kumarand95cc752010-08-08 11:27:53 +0000166
Senthil Kumaran83070752013-05-24 09:14:12 -0700167 def test_redirect_url_withfrag(self):
Benjamin Petersonb811a972014-11-05 13:10:08 -0500168 redirect_url_with_frag = "http://www.pythontest.net/redir/with_frag/"
Senthil Kumaran83070752013-05-24 09:14:12 -0700169 with support.transient_internet(redirect_url_with_frag):
170 req = urllib.request.Request(redirect_url_with_frag)
171 res = urllib.request.urlopen(req)
172 self.assertEqual(res.geturl(),
Benjamin Petersonb811a972014-11-05 13:10:08 -0500173 "http://www.pythontest.net/elsewhere/#frag")
Senthil Kumaran83070752013-05-24 09:14:12 -0700174
Senthil Kumaran42ef4b12010-09-27 01:26:03 +0000175 def test_custom_headers(self):
Stéphane Wirtela40681d2019-02-22 14:45:36 +0100176 url = support.TEST_HTTP_URL
Georg Brandl5be365f2010-10-28 14:55:02 +0000177 with support.transient_internet(url):
178 opener = urllib.request.build_opener()
179 request = urllib.request.Request(url)
180 self.assertFalse(request.header_items())
181 opener.open(request)
182 self.assertTrue(request.header_items())
183 self.assertTrue(request.has_header('User-agent'))
184 request.add_header('User-Agent','Test-Agent')
185 opener.open(request)
186 self.assertEqual(request.get_header('User-agent'),'Test-Agent')
Senthil Kumaran42ef4b12010-09-27 01:26:03 +0000187
INADA Naoki36d56ea2018-04-18 00:31:29 +0900188 @unittest.skip('XXX: http://www.imdb.com is gone')
Senthil Kumaran1299a8f2011-07-27 08:05:58 +0800189 def test_sites_no_connection_close(self):
190 # Some sites do not send Connection: close header.
191 # Verify that those work properly. (#issue12576)
192
Senthil Kumarane324c572011-07-31 11:45:14 +0800193 URL = 'http://www.imdb.com' # mangles Connection:close
Senthil Kumaran1299a8f2011-07-27 08:05:58 +0800194
Senthil Kumarane324c572011-07-31 11:45:14 +0800195 with support.transient_internet(URL):
196 try:
197 with urllib.request.urlopen(URL) as res:
198 pass
199 except ValueError as e:
200 self.fail("urlopen failed for site not sending \
201 Connection:close")
202 else:
203 self.assertTrue(res)
204
205 req = urllib.request.urlopen(URL)
206 res = req.read()
207 self.assertTrue(res)
Senthil Kumaran1299a8f2011-07-27 08:05:58 +0800208
Georg Brandlc28e1fa2008-06-10 19:20:26 +0000209 def _test_urls(self, urls, handlers, retry=True):
Thomas Wouters477c8d52006-05-27 19:21:47 +0000210 import time
211 import logging
212 debug = logging.getLogger("test_urllib2").debug
213
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000214 urlopen = urllib.request.build_opener(*handlers).open
Georg Brandlc28e1fa2008-06-10 19:20:26 +0000215 if retry:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000216 urlopen = _wrap_with_retry_thrice(urlopen, urllib.error.URLError)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000217
218 for url in urls:
Antoine Pitroubc2c4c92014-09-17 00:39:21 +0200219 with self.subTest(url=url):
220 if isinstance(url, tuple):
221 url, req, expected_err = url
Georg Brandl5be365f2010-10-28 14:55:02 +0000222 else:
Antoine Pitroubc2c4c92014-09-17 00:39:21 +0200223 req = expected_err = None
224
225 with support.transient_internet(url):
Georg Brandl5be365f2010-10-28 14:55:02 +0000226 try:
Antoine Pitroubc2c4c92014-09-17 00:39:21 +0200227 f = urlopen(url, req, TIMEOUT)
Berker Peksag8b63d3a2014-10-25 05:42:30 +0300228 # urllib.error.URLError is a subclass of OSError
Antoine Pitroubc2c4c92014-09-17 00:39:21 +0200229 except OSError as err:
230 if expected_err:
231 msg = ("Didn't get expected error(s) %s for %s %s, got %s: %s" %
232 (expected_err, url, req, type(err), err))
233 self.assertIsInstance(err, expected_err, msg)
234 else:
235 raise
Antoine Pitroubc2c4c92014-09-17 00:39:21 +0200236 else:
237 try:
238 with support.time_out, \
239 support.socket_peer_reset, \
240 support.ioerror_peer_reset:
241 buf = f.read()
242 debug("read %d bytes" % len(buf))
243 except socket.timeout:
244 print("<timeout: %s>" % url, file=sys.stderr)
245 f.close()
246 time.sleep(0.1)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000247
248 def _extra_handlers(self):
249 handlers = []
250
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000251 cfh = urllib.request.CacheFTPHandler()
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +0200252 self.addCleanup(cfh.clear_cache)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000253 cfh.setTimeout(1)
254 handlers.append(cfh)
255
256 return handlers
257
Christian Heimesbbe741d2008-03-28 10:53:29 +0000258
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000259class TimeoutTest(unittest.TestCase):
260 def test_http_basic(self):
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +0200261 self.assertIsNone(socket.getdefaulttimeout())
Stéphane Wirtela40681d2019-02-22 14:45:36 +0100262 url = support.TEST_HTTP_URL
Georg Brandl5be365f2010-10-28 14:55:02 +0000263 with support.transient_internet(url, timeout=None):
264 u = _urlopen_with_retry(url)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200265 self.addCleanup(u.close)
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +0200266 self.assertIsNone(u.fp.raw._sock.gettimeout())
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000267
Georg Brandlf78e02b2008-06-10 17:40:04 +0000268 def test_http_default_timeout(self):
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +0200269 self.assertIsNone(socket.getdefaulttimeout())
Stéphane Wirtela40681d2019-02-22 14:45:36 +0100270 url = support.TEST_HTTP_URL
Georg Brandl5be365f2010-10-28 14:55:02 +0000271 with support.transient_internet(url):
272 socket.setdefaulttimeout(60)
273 try:
274 u = _urlopen_with_retry(url)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200275 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000276 finally:
277 socket.setdefaulttimeout(None)
278 self.assertEqual(u.fp.raw._sock.gettimeout(), 60)
Georg Brandlf78e02b2008-06-10 17:40:04 +0000279
280 def test_http_no_timeout(self):
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +0200281 self.assertIsNone(socket.getdefaulttimeout())
Stéphane Wirtela40681d2019-02-22 14:45:36 +0100282 url = support.TEST_HTTP_URL
Georg Brandl5be365f2010-10-28 14:55:02 +0000283 with support.transient_internet(url):
284 socket.setdefaulttimeout(60)
285 try:
286 u = _urlopen_with_retry(url, timeout=None)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200287 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000288 finally:
289 socket.setdefaulttimeout(None)
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +0200290 self.assertIsNone(u.fp.raw._sock.gettimeout())
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000291
Georg Brandlf78e02b2008-06-10 17:40:04 +0000292 def test_http_timeout(self):
Stéphane Wirtela40681d2019-02-22 14:45:36 +0100293 url = support.TEST_HTTP_URL
Georg Brandl5be365f2010-10-28 14:55:02 +0000294 with support.transient_internet(url):
295 u = _urlopen_with_retry(url, timeout=120)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200296 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000297 self.assertEqual(u.fp.raw._sock.gettimeout(), 120)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000298
Ammar Askard81bea62017-07-18 19:27:24 -0700299 FTP_HOST = 'ftp://www.pythontest.net/'
Christian Heimes969fe572008-01-25 11:23:10 +0000300
Victor Stinnerc11b3b12018-12-05 01:58:31 +0100301 @skip_ftp_test_on_travis
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000302 def test_ftp_basic(self):
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +0200303 self.assertIsNone(socket.getdefaulttimeout())
Georg Brandl5be365f2010-10-28 14:55:02 +0000304 with support.transient_internet(self.FTP_HOST, timeout=None):
305 u = _urlopen_with_retry(self.FTP_HOST)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200306 self.addCleanup(u.close)
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +0200307 self.assertIsNone(u.fp.fp.raw._sock.gettimeout())
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000308
Victor Stinnerc11b3b12018-12-05 01:58:31 +0100309 @skip_ftp_test_on_travis
Georg Brandlf78e02b2008-06-10 17:40:04 +0000310 def test_ftp_default_timeout(self):
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +0200311 self.assertIsNone(socket.getdefaulttimeout())
Georg Brandl5be365f2010-10-28 14:55:02 +0000312 with support.transient_internet(self.FTP_HOST):
313 socket.setdefaulttimeout(60)
314 try:
315 u = _urlopen_with_retry(self.FTP_HOST)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200316 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000317 finally:
318 socket.setdefaulttimeout(None)
319 self.assertEqual(u.fp.fp.raw._sock.gettimeout(), 60)
Georg Brandlf78e02b2008-06-10 17:40:04 +0000320
Victor Stinnerc11b3b12018-12-05 01:58:31 +0100321 @skip_ftp_test_on_travis
Georg Brandlf78e02b2008-06-10 17:40:04 +0000322 def test_ftp_no_timeout(self):
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +0200323 self.assertIsNone(socket.getdefaulttimeout())
Georg Brandl5be365f2010-10-28 14:55:02 +0000324 with support.transient_internet(self.FTP_HOST):
325 socket.setdefaulttimeout(60)
326 try:
327 u = _urlopen_with_retry(self.FTP_HOST, timeout=None)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200328 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000329 finally:
330 socket.setdefaulttimeout(None)
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +0200331 self.assertIsNone(u.fp.fp.raw._sock.gettimeout())
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000332
Victor Stinnerc11b3b12018-12-05 01:58:31 +0100333 @skip_ftp_test_on_travis
Georg Brandlf78e02b2008-06-10 17:40:04 +0000334 def test_ftp_timeout(self):
Georg Brandl5be365f2010-10-28 14:55:02 +0000335 with support.transient_internet(self.FTP_HOST):
336 u = _urlopen_with_retry(self.FTP_HOST, timeout=60)
Victor Stinnereaca5c82011-06-17 14:53:02 +0200337 self.addCleanup(u.close)
Georg Brandl5be365f2010-10-28 14:55:02 +0000338 self.assertEqual(u.fp.fp.raw._sock.gettimeout(), 60)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000339
Thomas Wouters477c8d52006-05-27 19:21:47 +0000340
Jeremy Hylton5d9c3032004-08-07 17:40:50 +0000341if __name__ == "__main__":
Brett Cannon3e9a9ae2013-06-12 21:25:59 -0400342 unittest.main()