blob: 0a777c49b7559df9f44c1df6bae944fded195bc6 [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"
158 req = urllib.request.Request(urlwith_frag)
159 res = urllib.request.urlopen(req)
160 self.assertEqual(res.geturl(),
161 "http://docs.python.org/glossary.html")
162
Senthil Kumaran42ef4b12010-09-27 01:26:03 +0000163 def test_custom_headers(self):
164 url = "http://www.example.com"
165 opener = urllib.request.build_opener()
166 request = urllib.request.Request(url)
167 self.assertFalse(request.header_items())
168 opener.open(request)
169 self.assertTrue(request.header_items())
170 self.assertTrue(request.has_header('User-agent'))
171 request.add_header('User-Agent','Test-Agent')
172 opener.open(request)
173 self.assertEqual(request.get_header('User-agent'),'Test-Agent')
174
Georg Brandlc28e1fa2008-06-10 19:20:26 +0000175 def _test_urls(self, urls, handlers, retry=True):
Thomas Wouters477c8d52006-05-27 19:21:47 +0000176 import time
177 import logging
178 debug = logging.getLogger("test_urllib2").debug
179
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000180 urlopen = urllib.request.build_opener(*handlers).open
Georg Brandlc28e1fa2008-06-10 19:20:26 +0000181 if retry:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000182 urlopen = _wrap_with_retry_thrice(urlopen, urllib.error.URLError)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000183
184 for url in urls:
185 if isinstance(url, tuple):
186 url, req, expected_err = url
187 else:
188 req = expected_err = None
189 debug(url)
190 try:
Senthil Kumaranb8f7ea62010-04-20 10:35:49 +0000191 f = urlopen(url, req, TIMEOUT)
Gregory P. Smithc111d9f2007-09-09 23:55:55 +0000192 except EnvironmentError as err:
Thomas Wouters477c8d52006-05-27 19:21:47 +0000193 debug(err)
194 if expected_err:
Gregory P. Smithc111d9f2007-09-09 23:55:55 +0000195 msg = ("Didn't get expected error(s) %s for %s %s, got %s: %s" %
196 (expected_err, url, req, type(err), err))
Ezio Melottie9615932010-01-24 19:26:24 +0000197 self.assertIsInstance(err, expected_err, msg)
Senthil Kumaranb8f7ea62010-04-20 10:35:49 +0000198 except urllib.error.URLError as err:
199 if isinstance(err[0], socket.timeout):
200 print("<timeout: %s>" % url, file=sys.stderr)
201 continue
202 else:
203 raise
Thomas Wouters477c8d52006-05-27 19:21:47 +0000204 else:
Senthil Kumaranb8f7ea62010-04-20 10:35:49 +0000205 try:
206 with support.time_out, \
207 support.socket_peer_reset, \
208 support.ioerror_peer_reset:
209 buf = f.read()
210 debug("read %d bytes" % len(buf))
211 except socket.timeout:
212 print("<timeout: %s>" % url, file=sys.stderr)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000213 f.close()
Thomas Wouters477c8d52006-05-27 19:21:47 +0000214 debug("******** next url coming up...")
215 time.sleep(0.1)
216
217 def _extra_handlers(self):
218 handlers = []
219
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000220 cfh = urllib.request.CacheFTPHandler()
Thomas Wouters477c8d52006-05-27 19:21:47 +0000221 cfh.setTimeout(1)
222 handlers.append(cfh)
223
224 return handlers
225
Christian Heimesbbe741d2008-03-28 10:53:29 +0000226
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000227class TimeoutTest(unittest.TestCase):
228 def test_http_basic(self):
Georg Brandlf78e02b2008-06-10 17:40:04 +0000229 self.assertTrue(socket.getdefaulttimeout() is None)
Christian Heimes969fe572008-01-25 11:23:10 +0000230 u = _urlopen_with_retry("http://www.python.org")
Benjamin Peterson4376dbc2009-04-03 23:57:05 +0000231 self.assertTrue(u.fp.raw._sock.gettimeout() is None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000232
Georg Brandlf78e02b2008-06-10 17:40:04 +0000233 def test_http_default_timeout(self):
234 self.assertTrue(socket.getdefaulttimeout() is None)
235 socket.setdefaulttimeout(60)
236 try:
237 u = _urlopen_with_retry("http://www.python.org")
238 finally:
239 socket.setdefaulttimeout(None)
Benjamin Peterson4376dbc2009-04-03 23:57:05 +0000240 self.assertEqual(u.fp.raw._sock.gettimeout(), 60)
Georg Brandlf78e02b2008-06-10 17:40:04 +0000241
242 def test_http_no_timeout(self):
243 self.assertTrue(socket.getdefaulttimeout() is None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000244 socket.setdefaulttimeout(60)
245 try:
Christian Heimes969fe572008-01-25 11:23:10 +0000246 u = _urlopen_with_retry("http://www.python.org", timeout=None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000247 finally:
Georg Brandlf78e02b2008-06-10 17:40:04 +0000248 socket.setdefaulttimeout(None)
Benjamin Peterson4376dbc2009-04-03 23:57:05 +0000249 self.assertTrue(u.fp.raw._sock.gettimeout() is None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000250
Georg Brandlf78e02b2008-06-10 17:40:04 +0000251 def test_http_timeout(self):
Christian Heimes969fe572008-01-25 11:23:10 +0000252 u = _urlopen_with_retry("http://www.python.org", timeout=120)
Benjamin Peterson4376dbc2009-04-03 23:57:05 +0000253 self.assertEqual(u.fp.raw._sock.gettimeout(), 120)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000254
Benjamin Peterson87cb7872010-04-11 21:59:57 +0000255 FTP_HOST = "ftp://ftp.mirror.nl/pub/gnu/"
Christian Heimes969fe572008-01-25 11:23:10 +0000256
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000257 def test_ftp_basic(self):
Georg Brandlf78e02b2008-06-10 17:40:04 +0000258 self.assertTrue(socket.getdefaulttimeout() is None)
Christian Heimes969fe572008-01-25 11:23:10 +0000259 u = _urlopen_with_retry(self.FTP_HOST)
Jeremy Hyltoncf2f4192007-08-03 20:31:38 +0000260 self.assertTrue(u.fp.fp.raw._sock.gettimeout() is None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000261
Georg Brandlf78e02b2008-06-10 17:40:04 +0000262 def test_ftp_default_timeout(self):
263 self.assertTrue(socket.getdefaulttimeout() is None)
264 socket.setdefaulttimeout(60)
265 try:
266 u = _urlopen_with_retry(self.FTP_HOST)
267 finally:
268 socket.setdefaulttimeout(None)
269 self.assertEqual(u.fp.fp.raw._sock.gettimeout(), 60)
270
271 def test_ftp_no_timeout(self):
272 self.assertTrue(socket.getdefaulttimeout() is None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000273 socket.setdefaulttimeout(60)
274 try:
Christian Heimes969fe572008-01-25 11:23:10 +0000275 u = _urlopen_with_retry(self.FTP_HOST, timeout=None)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000276 finally:
Georg Brandlf78e02b2008-06-10 17:40:04 +0000277 socket.setdefaulttimeout(None)
Neal Norwitz2f142582008-01-26 19:49:41 +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_timeout(self):
Christian Heimes969fe572008-01-25 11:23:10 +0000281 u = _urlopen_with_retry(self.FTP_HOST, timeout=60)
Jeremy Hyltoncf2f4192007-08-03 20:31:38 +0000282 self.assertEqual(u.fp.fp.raw._sock.gettimeout(), 60)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000283
Thomas Wouters477c8d52006-05-27 19:21:47 +0000284
Antoine Pitroud5323212010-10-22 18:19:07 +0000285@unittest.skipUnless(ssl, "requires SSL support")
286class HTTPSTests(unittest.TestCase):
287
288 def test_sni(self):
289 # Checks that Server Name Indication works, if supported by the
290 # OpenSSL linked to.
291 # The ssl module itself doesn't have server-side support for SNI,
292 # so we rely on a third-party test site.
293 expect_sni = ssl.HAS_SNI
294 with support.transient_internet("bob.sni.velox.ch"):
295 u = urllib.request.urlopen("https://bob.sni.velox.ch/")
296 contents = u.readall()
297 if expect_sni:
298 self.assertIn(b"Great", contents)
299 self.assertNotIn(b"Unfortunately", contents)
300 else:
301 self.assertNotIn(b"Great", contents)
302 self.assertIn(b"Unfortunately", contents)
303
304
Jeremy Hylton5d9c3032004-08-07 17:40:50 +0000305def test_main():
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000306 support.requires("network")
307 support.run_unittest(AuthTests,
Antoine Pitroud5323212010-10-22 18:19:07 +0000308 HTTPSTests,
309 OtherNetworkTests,
310 CloseSocketTest,
311 TimeoutTest,
312 )
Jeremy Hylton5d9c3032004-08-07 17:40:50 +0000313
314if __name__ == "__main__":
315 test_main()