blob: b8bbcb673485b41523b0bd75cd9b2510c895ad94 [file] [log] [blame]
Georg Brandlb533e262008-05-25 18:19:30 +00001"""Unittests for the various HTTPServer modules.
2
3Written by Cody A.W. Somerville <cody-somerville@ubuntu.com>,
4Josip Dzolonga, and Michael Otteneder for the 2007/08 GHOP contest.
5"""
6
Georg Brandl24420152008-05-26 16:32:26 +00007from http.server import BaseHTTPRequestHandler, HTTPServer, \
8 SimpleHTTPRequestHandler, CGIHTTPRequestHandler
Benjamin Petersonad71f0f2009-04-11 20:12:10 +00009from http import server
Georg Brandlb533e262008-05-25 18:19:30 +000010
11import os
12import sys
Senthil Kumaran0f476d42010-09-30 06:09:18 +000013import re
Georg Brandlb533e262008-05-25 18:19:30 +000014import base64
15import shutil
Jeremy Hylton1afc1692008-06-18 20:49:58 +000016import urllib.parse
Georg Brandl24420152008-05-26 16:32:26 +000017import http.client
Georg Brandlb533e262008-05-25 18:19:30 +000018import tempfile
Senthil Kumaran0f476d42010-09-30 06:09:18 +000019from io import BytesIO
Georg Brandlb533e262008-05-25 18:19:30 +000020
21import unittest
22from test import support
Victor Stinner45df8202010-04-28 22:31:17 +000023threading = support.import_module('threading')
Georg Brandlb533e262008-05-25 18:19:30 +000024
Georg Brandlb533e262008-05-25 18:19:30 +000025class NoLogRequestHandler:
26 def log_message(self, *args):
27 # don't write log messages to stderr
28 pass
29
Barry Warsaw820c1202008-06-12 04:06:45 +000030 def read(self, n=None):
31 return ''
32
Georg Brandlb533e262008-05-25 18:19:30 +000033
34class TestServerThread(threading.Thread):
35 def __init__(self, test_object, request_handler):
36 threading.Thread.__init__(self)
37 self.request_handler = request_handler
38 self.test_object = test_object
Georg Brandlb533e262008-05-25 18:19:30 +000039
40 def run(self):
Antoine Pitroucb342182011-03-21 00:26:51 +010041 self.server = HTTPServer(('localhost', 0), self.request_handler)
42 self.test_object.HOST, self.test_object.PORT = self.server.socket.getsockname()
Antoine Pitrou08911bd2010-04-25 22:19:43 +000043 self.test_object.server_started.set()
44 self.test_object = None
Georg Brandlb533e262008-05-25 18:19:30 +000045 try:
Antoine Pitrou08911bd2010-04-25 22:19:43 +000046 self.server.serve_forever(0.05)
Georg Brandlb533e262008-05-25 18:19:30 +000047 finally:
48 self.server.server_close()
49
50 def stop(self):
51 self.server.shutdown()
52
53
54class BaseTestCase(unittest.TestCase):
55 def setUp(self):
Antoine Pitrou45ebeb82009-10-27 18:52:30 +000056 self._threads = support.threading_setup()
Nick Coghlan6ead5522009-10-18 13:19:33 +000057 os.environ = support.EnvironmentVarGuard()
Antoine Pitrou08911bd2010-04-25 22:19:43 +000058 self.server_started = threading.Event()
Georg Brandlb533e262008-05-25 18:19:30 +000059 self.thread = TestServerThread(self, self.request_handler)
60 self.thread.start()
Antoine Pitrou08911bd2010-04-25 22:19:43 +000061 self.server_started.wait()
Georg Brandlb533e262008-05-25 18:19:30 +000062
63 def tearDown(self):
Georg Brandlb533e262008-05-25 18:19:30 +000064 self.thread.stop()
Antoine Pitrouf7270822012-09-30 01:05:30 +020065 self.thread = None
Nick Coghlan6ead5522009-10-18 13:19:33 +000066 os.environ.__exit__()
Antoine Pitrou45ebeb82009-10-27 18:52:30 +000067 support.threading_cleanup(*self._threads)
Georg Brandlb533e262008-05-25 18:19:30 +000068
69 def request(self, uri, method='GET', body=None, headers={}):
Antoine Pitroucb342182011-03-21 00:26:51 +010070 self.connection = http.client.HTTPConnection(self.HOST, self.PORT)
Georg Brandlb533e262008-05-25 18:19:30 +000071 self.connection.request(method, uri, body, headers)
72 return self.connection.getresponse()
73
74
75class BaseHTTPServerTestCase(BaseTestCase):
76 class request_handler(NoLogRequestHandler, BaseHTTPRequestHandler):
77 protocol_version = 'HTTP/1.1'
78 default_request_version = 'HTTP/1.1'
79
80 def do_TEST(self):
81 self.send_response(204)
82 self.send_header('Content-Type', 'text/html')
83 self.send_header('Connection', 'close')
84 self.end_headers()
85
86 def do_KEEP(self):
87 self.send_response(204)
88 self.send_header('Content-Type', 'text/html')
89 self.send_header('Connection', 'keep-alive')
90 self.end_headers()
91
92 def do_KEYERROR(self):
93 self.send_error(999)
94
95 def do_CUSTOM(self):
96 self.send_response(999)
97 self.send_header('Content-Type', 'text/html')
98 self.send_header('Connection', 'close')
99 self.end_headers()
100
Armin Ronacher8d96d772011-01-22 13:13:05 +0000101 def do_LATINONEHEADER(self):
102 self.send_response(999)
103 self.send_header('X-Special', 'Dängerous Mind')
Armin Ronacher59531282011-01-22 13:44:22 +0000104 self.send_header('Connection', 'close')
Armin Ronacher8d96d772011-01-22 13:13:05 +0000105 self.end_headers()
Armin Ronacher59531282011-01-22 13:44:22 +0000106 body = self.headers['x-special-incoming'].encode('utf-8')
107 self.wfile.write(body)
Armin Ronacher8d96d772011-01-22 13:13:05 +0000108
Georg Brandlb533e262008-05-25 18:19:30 +0000109 def setUp(self):
110 BaseTestCase.setUp(self)
Antoine Pitroucb342182011-03-21 00:26:51 +0100111 self.con = http.client.HTTPConnection(self.HOST, self.PORT)
Georg Brandlb533e262008-05-25 18:19:30 +0000112 self.con.connect()
113
114 def test_command(self):
115 self.con.request('GET', '/')
116 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000117 self.assertEqual(res.status, 501)
Georg Brandlb533e262008-05-25 18:19:30 +0000118
119 def test_request_line_trimming(self):
120 self.con._http_vsn_str = 'HTTP/1.1\n'
121 self.con.putrequest('GET', '/')
122 self.con.endheaders()
123 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000124 self.assertEqual(res.status, 501)
Georg Brandlb533e262008-05-25 18:19:30 +0000125
126 def test_version_bogus(self):
127 self.con._http_vsn_str = 'FUBAR'
128 self.con.putrequest('GET', '/')
129 self.con.endheaders()
130 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000131 self.assertEqual(res.status, 400)
Georg Brandlb533e262008-05-25 18:19:30 +0000132
133 def test_version_digits(self):
134 self.con._http_vsn_str = 'HTTP/9.9.9'
135 self.con.putrequest('GET', '/')
136 self.con.endheaders()
137 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000138 self.assertEqual(res.status, 400)
Georg Brandlb533e262008-05-25 18:19:30 +0000139
140 def test_version_none_get(self):
141 self.con._http_vsn_str = ''
142 self.con.putrequest('GET', '/')
143 self.con.endheaders()
144 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000145 self.assertEqual(res.status, 501)
Georg Brandlb533e262008-05-25 18:19:30 +0000146
147 def test_version_none(self):
148 self.con._http_vsn_str = ''
149 self.con.putrequest('PUT', '/')
150 self.con.endheaders()
151 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000152 self.assertEqual(res.status, 400)
Georg Brandlb533e262008-05-25 18:19:30 +0000153
154 def test_version_invalid(self):
155 self.con._http_vsn = 99
156 self.con._http_vsn_str = 'HTTP/9.9'
157 self.con.putrequest('GET', '/')
158 self.con.endheaders()
159 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000160 self.assertEqual(res.status, 505)
Georg Brandlb533e262008-05-25 18:19:30 +0000161
162 def test_send_blank(self):
163 self.con._http_vsn_str = ''
164 self.con.putrequest('', '')
165 self.con.endheaders()
166 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000167 self.assertEqual(res.status, 400)
Georg Brandlb533e262008-05-25 18:19:30 +0000168
169 def test_header_close(self):
170 self.con.putrequest('GET', '/')
171 self.con.putheader('Connection', 'close')
172 self.con.endheaders()
173 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000174 self.assertEqual(res.status, 501)
Georg Brandlb533e262008-05-25 18:19:30 +0000175
176 def test_head_keep_alive(self):
177 self.con._http_vsn_str = 'HTTP/1.1'
178 self.con.putrequest('GET', '/')
179 self.con.putheader('Connection', 'keep-alive')
180 self.con.endheaders()
181 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000182 self.assertEqual(res.status, 501)
Georg Brandlb533e262008-05-25 18:19:30 +0000183
184 def test_handler(self):
185 self.con.request('TEST', '/')
186 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000187 self.assertEqual(res.status, 204)
Georg Brandlb533e262008-05-25 18:19:30 +0000188
189 def test_return_header_keep_alive(self):
190 self.con.request('KEEP', '/')
191 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000192 self.assertEqual(res.getheader('Connection'), 'keep-alive')
Georg Brandlb533e262008-05-25 18:19:30 +0000193 self.con.request('TEST', '/')
Brian Curtin61d0d602010-10-31 00:34:23 +0000194 self.addCleanup(self.con.close)
Georg Brandlb533e262008-05-25 18:19:30 +0000195
196 def test_internal_key_error(self):
197 self.con.request('KEYERROR', '/')
198 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000199 self.assertEqual(res.status, 999)
Georg Brandlb533e262008-05-25 18:19:30 +0000200
201 def test_return_custom_status(self):
202 self.con.request('CUSTOM', '/')
203 res = self.con.getresponse()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000204 self.assertEqual(res.status, 999)
Georg Brandlb533e262008-05-25 18:19:30 +0000205
Armin Ronacher8d96d772011-01-22 13:13:05 +0000206 def test_latin1_header(self):
Armin Ronacher59531282011-01-22 13:44:22 +0000207 self.con.request('LATINONEHEADER', '/', headers={
208 'X-Special-Incoming': 'Ärger mit Unicode'
209 })
Armin Ronacher8d96d772011-01-22 13:13:05 +0000210 res = self.con.getresponse()
211 self.assertEqual(res.getheader('X-Special'), 'Dängerous Mind')
Armin Ronacher59531282011-01-22 13:44:22 +0000212 self.assertEqual(res.read(), 'Ärger mit Unicode'.encode('utf-8'))
Armin Ronacher8d96d772011-01-22 13:13:05 +0000213
Georg Brandlb533e262008-05-25 18:19:30 +0000214
215class SimpleHTTPServerTestCase(BaseTestCase):
216 class request_handler(NoLogRequestHandler, SimpleHTTPRequestHandler):
217 pass
218
219 def setUp(self):
220 BaseTestCase.setUp(self)
221 self.cwd = os.getcwd()
222 basetempdir = tempfile.gettempdir()
223 os.chdir(basetempdir)
224 self.data = b'We are the knights who say Ni!'
225 self.tempdir = tempfile.mkdtemp(dir=basetempdir)
226 self.tempdir_name = os.path.basename(self.tempdir)
Brett Cannon105df5d2010-10-29 23:43:42 +0000227 with open(os.path.join(self.tempdir, 'test'), 'wb') as temp:
228 temp.write(self.data)
Georg Brandlb533e262008-05-25 18:19:30 +0000229
230 def tearDown(self):
231 try:
232 os.chdir(self.cwd)
233 try:
234 shutil.rmtree(self.tempdir)
235 except:
236 pass
237 finally:
238 BaseTestCase.tearDown(self)
239
240 def check_status_and_reason(self, response, status, data=None):
241 body = response.read()
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000242 self.assertTrue(response)
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000243 self.assertEqual(response.status, status)
244 self.assertIsNotNone(response.reason)
Georg Brandlb533e262008-05-25 18:19:30 +0000245 if data:
246 self.assertEqual(data, body)
247
248 def test_get(self):
249 #constructs the path relative to the root directory of the HTTPServer
250 response = self.request(self.tempdir_name + '/test')
251 self.check_status_and_reason(response, 200, data=self.data)
Senthil Kumaran72c238e2013-09-13 00:21:18 -0700252 # check for trailing "/" which should return 404. See Issue17324
253 response = self.request(self.tempdir_name + '/test/')
254 self.check_status_and_reason(response, 404)
Georg Brandlb533e262008-05-25 18:19:30 +0000255 response = self.request(self.tempdir_name + '/')
256 self.check_status_and_reason(response, 200)
257 response = self.request(self.tempdir_name)
258 self.check_status_and_reason(response, 301)
259 response = self.request('/ThisDoesNotExist')
260 self.check_status_and_reason(response, 404)
261 response = self.request('/' + 'ThisDoesNotExist' + '/')
262 self.check_status_and_reason(response, 404)
Brett Cannon105df5d2010-10-29 23:43:42 +0000263 with open(os.path.join(self.tempdir_name, 'index.html'), 'w') as f:
264 response = self.request('/' + self.tempdir_name + '/')
265 self.check_status_and_reason(response, 200)
Charles-François Natalif7ed9fc2011-11-02 19:35:14 +0100266 # chmod() doesn't work as expected on Windows, and filesystem
267 # permissions are ignored by root on Unix.
268 if os.name == 'posix' and os.geteuid() != 0:
Brett Cannon105df5d2010-10-29 23:43:42 +0000269 os.chmod(self.tempdir, 0)
270 response = self.request(self.tempdir_name + '/')
271 self.check_status_and_reason(response, 404)
272 os.chmod(self.tempdir, 0o755)
Georg Brandlb533e262008-05-25 18:19:30 +0000273
274 def test_head(self):
275 response = self.request(
276 self.tempdir_name + '/test', method='HEAD')
277 self.check_status_and_reason(response, 200)
278 self.assertEqual(response.getheader('content-length'),
279 str(len(self.data)))
280 self.assertEqual(response.getheader('content-type'),
281 'application/octet-stream')
282
283 def test_invalid_requests(self):
284 response = self.request('/', method='FOO')
285 self.check_status_and_reason(response, 501)
286 # requests must be case sensitive,so this should fail too
287 response = self.request('/', method='get')
288 self.check_status_and_reason(response, 501)
289 response = self.request('/', method='GETs')
290 self.check_status_and_reason(response, 501)
291
292
293cgi_file1 = """\
294#!%s
295
296print("Content-type: text/html")
297print()
298print("Hello World")
299"""
300
301cgi_file2 = """\
302#!%s
303import cgi
304
305print("Content-type: text/html")
306print()
307
308form = cgi.FieldStorage()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000309print("%%s, %%s, %%s" %% (form.getfirst("spam"), form.getfirst("eggs"),
310 form.getfirst("bacon")))
Georg Brandlb533e262008-05-25 18:19:30 +0000311"""
312
Charles-François Natalif7ed9fc2011-11-02 19:35:14 +0100313
314@unittest.skipIf(hasattr(os, 'geteuid') and os.geteuid() == 0,
315 "This test can't be run reliably as root (issue #13308).")
Georg Brandlb533e262008-05-25 18:19:30 +0000316class CGIHTTPServerTestCase(BaseTestCase):
317 class request_handler(NoLogRequestHandler, CGIHTTPRequestHandler):
318 pass
319
Antoine Pitroue768c392012-08-05 14:52:45 +0200320 linesep = os.linesep.encode('ascii')
321
Georg Brandlb533e262008-05-25 18:19:30 +0000322 def setUp(self):
323 BaseTestCase.setUp(self)
Victor Stinner0b0ca0c2010-10-17 19:46:36 +0000324 self.cwd = os.getcwd()
Georg Brandlb533e262008-05-25 18:19:30 +0000325 self.parent_dir = tempfile.mkdtemp()
326 self.cgi_dir = os.path.join(self.parent_dir, 'cgi-bin')
327 os.mkdir(self.cgi_dir)
Victor Stinner0b0ca0c2010-10-17 19:46:36 +0000328 self.file1_path = None
329 self.file2_path = None
Georg Brandlb533e262008-05-25 18:19:30 +0000330
Florent Xiclunafd1b0932010-03-28 00:25:02 +0000331 # The shebang line should be pure ASCII: use symlink if possible.
332 # See issue #7668.
Brian Curtin3b4499c2010-12-28 14:31:47 +0000333 if support.can_symlink():
Florent Xiclunafd1b0932010-03-28 00:25:02 +0000334 self.pythonexe = os.path.join(self.parent_dir, 'python')
335 os.symlink(sys.executable, self.pythonexe)
336 else:
337 self.pythonexe = sys.executable
338
Victor Stinner3218c312010-10-17 20:13:36 +0000339 try:
340 # The python executable path is written as the first line of the
341 # CGI Python script. The encoding cookie cannot be used, and so the
342 # path should be encodable to the default script encoding (utf-8)
343 self.pythonexe.encode('utf-8')
344 except UnicodeEncodeError:
345 self.tearDown()
Serhiy Storchaka0b4591e2013-02-04 15:45:00 +0200346 self.skipTest("Python executable path is not encodable to utf-8")
Victor Stinner3218c312010-10-17 20:13:36 +0000347
Georg Brandlb533e262008-05-25 18:19:30 +0000348 self.file1_path = os.path.join(self.cgi_dir, 'file1.py')
Victor Stinner6fb45752010-10-17 20:17:41 +0000349 with open(self.file1_path, 'w', encoding='utf-8') as file1:
Florent Xiclunafd1b0932010-03-28 00:25:02 +0000350 file1.write(cgi_file1 % self.pythonexe)
Georg Brandlb533e262008-05-25 18:19:30 +0000351 os.chmod(self.file1_path, 0o777)
352
353 self.file2_path = os.path.join(self.cgi_dir, 'file2.py')
Victor Stinner6fb45752010-10-17 20:17:41 +0000354 with open(self.file2_path, 'w', encoding='utf-8') as file2:
Florent Xiclunafd1b0932010-03-28 00:25:02 +0000355 file2.write(cgi_file2 % self.pythonexe)
Georg Brandlb533e262008-05-25 18:19:30 +0000356 os.chmod(self.file2_path, 0o777)
357
Georg Brandlb533e262008-05-25 18:19:30 +0000358 os.chdir(self.parent_dir)
359
360 def tearDown(self):
361 try:
362 os.chdir(self.cwd)
Florent Xiclunafd1b0932010-03-28 00:25:02 +0000363 if self.pythonexe != sys.executable:
364 os.remove(self.pythonexe)
Victor Stinner0b0ca0c2010-10-17 19:46:36 +0000365 if self.file1_path:
366 os.remove(self.file1_path)
367 if self.file2_path:
368 os.remove(self.file2_path)
Georg Brandlb533e262008-05-25 18:19:30 +0000369 os.rmdir(self.cgi_dir)
370 os.rmdir(self.parent_dir)
371 finally:
372 BaseTestCase.tearDown(self)
373
Senthil Kumarand70846b2012-04-12 02:34:32 +0800374 def test_url_collapse_path(self):
375 # verify tail is the last portion and head is the rest on proper urls
Benjamin Petersonad71f0f2009-04-11 20:12:10 +0000376 test_vectors = {
Senthil Kumarand70846b2012-04-12 02:34:32 +0800377 '': '//',
Benjamin Petersonad71f0f2009-04-11 20:12:10 +0000378 '..': IndexError,
379 '/.//..': IndexError,
Senthil Kumarand70846b2012-04-12 02:34:32 +0800380 '/': '//',
381 '//': '//',
382 '/\\': '//\\',
383 '/.//': '//',
384 'cgi-bin/file1.py': '/cgi-bin/file1.py',
385 '/cgi-bin/file1.py': '/cgi-bin/file1.py',
386 'a': '//a',
387 '/a': '//a',
388 '//a': '//a',
389 './a': '//a',
390 './C:/': '/C:/',
391 '/a/b': '/a/b',
392 '/a/b/': '/a/b/',
393 '/a/b/.': '/a/b/',
394 '/a/b/c/..': '/a/b/',
395 '/a/b/c/../d': '/a/b/d',
396 '/a/b/c/../d/e/../f': '/a/b/d/f',
397 '/a/b/c/../d/e/../../f': '/a/b/f',
398 '/a/b/c/../d/e/.././././..//f': '/a/b/f',
Benjamin Petersonad71f0f2009-04-11 20:12:10 +0000399 '../a/b/c/../d/e/.././././..//f': IndexError,
Senthil Kumarand70846b2012-04-12 02:34:32 +0800400 '/a/b/c/../d/e/../../../f': '/a/f',
401 '/a/b/c/../d/e/../../../../f': '//f',
Benjamin Petersonad71f0f2009-04-11 20:12:10 +0000402 '/a/b/c/../d/e/../../../../../f': IndexError,
Senthil Kumarand70846b2012-04-12 02:34:32 +0800403 '/a/b/c/../d/e/../../../../f/..': '//',
404 '/a/b/c/../d/e/../../../../f/../.': '//',
Benjamin Petersonad71f0f2009-04-11 20:12:10 +0000405 }
406 for path, expected in test_vectors.items():
407 if isinstance(expected, type) and issubclass(expected, Exception):
408 self.assertRaises(expected,
Senthil Kumarand70846b2012-04-12 02:34:32 +0800409 server._url_collapse_path, path)
Benjamin Petersonad71f0f2009-04-11 20:12:10 +0000410 else:
Senthil Kumarand70846b2012-04-12 02:34:32 +0800411 actual = server._url_collapse_path(path)
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000412 self.assertEqual(expected, actual,
413 msg='path = %r\nGot: %r\nWanted: %r' %
414 (path, actual, expected))
Benjamin Petersonad71f0f2009-04-11 20:12:10 +0000415
Georg Brandlb533e262008-05-25 18:19:30 +0000416 def test_headers_and_content(self):
417 res = self.request('/cgi-bin/file1.py')
Antoine Pitroue768c392012-08-05 14:52:45 +0200418 self.assertEqual((b'Hello World' + self.linesep, 'text/html', 200),
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000419 (res.read(), res.getheader('Content-type'), res.status))
Georg Brandlb533e262008-05-25 18:19:30 +0000420
421 def test_post(self):
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000422 params = urllib.parse.urlencode(
423 {'spam' : 1, 'eggs' : 'python', 'bacon' : 123456})
Georg Brandlb533e262008-05-25 18:19:30 +0000424 headers = {'Content-type' : 'application/x-www-form-urlencoded'}
425 res = self.request('/cgi-bin/file2.py', 'POST', params, headers)
426
Antoine Pitroue768c392012-08-05 14:52:45 +0200427 self.assertEqual(res.read(), b'1, python, 123456' + self.linesep)
Georg Brandlb533e262008-05-25 18:19:30 +0000428
429 def test_invaliduri(self):
430 res = self.request('/cgi-bin/invalid')
431 res.read()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000432 self.assertEqual(res.status, 404)
Georg Brandlb533e262008-05-25 18:19:30 +0000433
434 def test_authorization(self):
435 headers = {b'Authorization' : b'Basic ' +
436 base64.b64encode(b'username:pass')}
437 res = self.request('/cgi-bin/file1.py', 'GET', headers=headers)
Antoine Pitroue768c392012-08-05 14:52:45 +0200438 self.assertEqual((b'Hello World' + self.linesep, 'text/html', 200),
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000439 (res.read(), res.getheader('Content-type'), res.status))
Georg Brandlb533e262008-05-25 18:19:30 +0000440
Benjamin Petersonad71f0f2009-04-11 20:12:10 +0000441 def test_no_leading_slash(self):
442 # http://bugs.python.org/issue2254
443 res = self.request('cgi-bin/file1.py')
Antoine Pitroue768c392012-08-05 14:52:45 +0200444 self.assertEqual((b'Hello World' + self.linesep, 'text/html', 200),
Benjamin Petersonad71f0f2009-04-11 20:12:10 +0000445 (res.read(), res.getheader('Content-type'), res.status))
446
Senthil Kumaran42713722010-10-03 17:55:45 +0000447 def test_os_environ_is_not_altered(self):
448 signature = "Test CGI Server"
449 os.environ['SERVER_SOFTWARE'] = signature
450 res = self.request('/cgi-bin/file1.py')
Antoine Pitroue768c392012-08-05 14:52:45 +0200451 self.assertEqual((b'Hello World' + self.linesep, 'text/html', 200),
Senthil Kumaran42713722010-10-03 17:55:45 +0000452 (res.read(), res.getheader('Content-type'), res.status))
453 self.assertEqual(os.environ['SERVER_SOFTWARE'], signature)
454
Georg Brandlb533e262008-05-25 18:19:30 +0000455
Georg Brandl6fcac0d2010-08-02 18:56:54 +0000456class SocketlessRequestHandler(SimpleHTTPRequestHandler):
457 def __init__(self):
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000458 self.get_called = False
459 self.protocol_version = "HTTP/1.1"
460
461 def do_GET(self):
462 self.get_called = True
463 self.send_response(200)
464 self.send_header('Content-Type', 'text/html')
465 self.end_headers()
466 self.wfile.write(b'<html><body>Data</body></html>\r\n')
467
468 def log_message(self, format, *args):
Georg Brandl6fcac0d2010-08-02 18:56:54 +0000469 pass
470
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000471class RejectingSocketlessRequestHandler(SocketlessRequestHandler):
472 def handle_expect_100(self):
473 self.send_error(417)
474 return False
475
Senthil Kumaranc7ae19b2011-05-09 23:25:02 +0800476
477class AuditableBytesIO:
478
479 def __init__(self):
480 self.datas = []
481
482 def write(self, data):
483 self.datas.append(data)
484
485 def getData(self):
486 return b''.join(self.datas)
487
488 @property
489 def numWrites(self):
490 return len(self.datas)
491
492
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000493class BaseHTTPRequestHandlerTestCase(unittest.TestCase):
Ezio Melotti3b3499b2011-03-16 11:35:38 +0200494 """Test the functionality of the BaseHTTPServer.
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000495
496 Test the support for the Expect 100-continue header.
497 """
498
499 HTTPResponseMatch = re.compile(b'HTTP/1.[0-9]+ 200 OK')
500
501 def setUp (self):
502 self.handler = SocketlessRequestHandler()
503
504 def send_typical_request(self, message):
505 input = BytesIO(message)
506 output = BytesIO()
507 self.handler.rfile = input
508 self.handler.wfile = output
509 self.handler.handle_one_request()
510 output.seek(0)
511 return output.readlines()
512
513 def verify_get_called(self):
514 self.assertTrue(self.handler.get_called)
515
516 def verify_expected_headers(self, headers):
517 for fieldName in b'Server: ', b'Date: ', b'Content-Type: ':
518 self.assertEqual(sum(h.startswith(fieldName) for h in headers), 1)
519
520 def verify_http_server_response(self, response):
521 match = self.HTTPResponseMatch.search(response)
522 self.assertTrue(match is not None)
523
524 def test_http_1_1(self):
525 result = self.send_typical_request(b'GET / HTTP/1.1\r\n\r\n')
526 self.verify_http_server_response(result[0])
527 self.verify_expected_headers(result[1:-1])
528 self.verify_get_called()
529 self.assertEqual(result[-1], b'<html><body>Data</body></html>\r\n')
530
531 def test_http_1_0(self):
532 result = self.send_typical_request(b'GET / HTTP/1.0\r\n\r\n')
533 self.verify_http_server_response(result[0])
534 self.verify_expected_headers(result[1:-1])
535 self.verify_get_called()
536 self.assertEqual(result[-1], b'<html><body>Data</body></html>\r\n')
537
538 def test_http_0_9(self):
539 result = self.send_typical_request(b'GET / HTTP/0.9\r\n\r\n')
540 self.assertEqual(len(result), 1)
541 self.assertEqual(result[0], b'<html><body>Data</body></html>\r\n')
542 self.verify_get_called()
543
544 def test_with_continue_1_0(self):
545 result = self.send_typical_request(b'GET / HTTP/1.0\r\nExpect: 100-continue\r\n\r\n')
546 self.verify_http_server_response(result[0])
547 self.verify_expected_headers(result[1:-1])
548 self.verify_get_called()
549 self.assertEqual(result[-1], b'<html><body>Data</body></html>\r\n')
550
551 def test_with_continue_1_1(self):
552 result = self.send_typical_request(b'GET / HTTP/1.1\r\nExpect: 100-continue\r\n\r\n')
553 self.assertEqual(result[0], b'HTTP/1.1 100 Continue\r\n')
554 self.assertEqual(result[1], b'HTTP/1.1 200 OK\r\n')
555 self.verify_expected_headers(result[2:-1])
556 self.verify_get_called()
557 self.assertEqual(result[-1], b'<html><body>Data</body></html>\r\n')
558
Senthil Kumaranc7ae19b2011-05-09 23:25:02 +0800559 def test_header_buffering_of_send_error(self):
Senthil Kumarane4dad4f2010-11-21 14:36:14 +0000560
561 input = BytesIO(b'GET / HTTP/1.1\r\n\r\n')
Senthil Kumaranc7ae19b2011-05-09 23:25:02 +0800562 output = AuditableBytesIO()
563 handler = SocketlessRequestHandler()
564 handler.rfile = input
565 handler.wfile = output
566 handler.request_version = 'HTTP/1.1'
567 handler.requestline = ''
568 handler.command = None
Senthil Kumarane4dad4f2010-11-21 14:36:14 +0000569
Senthil Kumaranc7ae19b2011-05-09 23:25:02 +0800570 handler.send_error(418)
571 self.assertEqual(output.numWrites, 2)
572
573 def test_header_buffering_of_send_response_only(self):
574
575 input = BytesIO(b'GET / HTTP/1.1\r\n\r\n')
576 output = AuditableBytesIO()
577 handler = SocketlessRequestHandler()
578 handler.rfile = input
579 handler.wfile = output
580 handler.request_version = 'HTTP/1.1'
581
582 handler.send_response_only(418)
583 self.assertEqual(output.numWrites, 0)
584 handler.end_headers()
585 self.assertEqual(output.numWrites, 1)
586
587 def test_header_buffering_of_send_header(self):
588
589 input = BytesIO(b'GET / HTTP/1.1\r\n\r\n')
590 output = AuditableBytesIO()
591 handler = SocketlessRequestHandler()
592 handler.rfile = input
593 handler.wfile = output
594 handler.request_version = 'HTTP/1.1'
595
596 handler.send_header('Foo', 'foo')
597 handler.send_header('bar', 'bar')
598 self.assertEqual(output.numWrites, 0)
599 handler.end_headers()
600 self.assertEqual(output.getData(), b'Foo: foo\r\nbar: bar\r\n\r\n')
601 self.assertEqual(output.numWrites, 1)
Senthil Kumarane4dad4f2010-11-21 14:36:14 +0000602
603 def test_header_unbuffered_when_continue(self):
604
605 def _readAndReseek(f):
606 pos = f.tell()
607 f.seek(0)
608 data = f.read()
609 f.seek(pos)
610 return data
611
612 input = BytesIO(b'GET / HTTP/1.1\r\nExpect: 100-continue\r\n\r\n')
613 output = BytesIO()
614 self.handler.rfile = input
615 self.handler.wfile = output
616 self.handler.request_version = 'HTTP/1.1'
617
618 self.handler.handle_one_request()
619 self.assertNotEqual(_readAndReseek(output), b'')
620 result = _readAndReseek(output).split(b'\r\n')
621 self.assertEqual(result[0], b'HTTP/1.1 100 Continue')
622 self.assertEqual(result[1], b'HTTP/1.1 200 OK')
623
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000624 def test_with_continue_rejected(self):
625 usual_handler = self.handler # Save to avoid breaking any subsequent tests.
626 self.handler = RejectingSocketlessRequestHandler()
627 result = self.send_typical_request(b'GET / HTTP/1.1\r\nExpect: 100-continue\r\n\r\n')
628 self.assertEqual(result[0], b'HTTP/1.1 417 Expectation Failed\r\n')
629 self.verify_expected_headers(result[1:-1])
630 # The expect handler should short circuit the usual get method by
631 # returning false here, so get_called should be false
632 self.assertFalse(self.handler.get_called)
633 self.assertEqual(sum(r == b'Connection: close\r\n' for r in result[1:-1]), 1)
634 self.handler = usual_handler # Restore to avoid breaking any subsequent tests.
635
Antoine Pitrouc4924372010-12-16 16:48:36 +0000636 def test_request_length(self):
637 # Issue #10714: huge request lines are discarded, to avoid Denial
638 # of Service attacks.
639 result = self.send_typical_request(b'GET ' + b'x' * 65537)
640 self.assertEqual(result[0], b'HTTP/1.1 414 Request-URI Too Long\r\n')
641 self.assertFalse(self.handler.get_called)
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000642
Senthil Kumaran5466bf12010-12-18 16:55:23 +0000643 def test_header_length(self):
644 # Issue #6791: same for headers
645 result = self.send_typical_request(
646 b'GET / HTTP/1.1\r\nX-Foo: bar' + b'r' * 65537 + b'\r\n\r\n')
647 self.assertEqual(result[0], b'HTTP/1.1 400 Line too long\r\n')
648 self.assertFalse(self.handler.get_called)
649
Georg Brandl6fcac0d2010-08-02 18:56:54 +0000650class SimpleHTTPRequestHandlerTestCase(unittest.TestCase):
651 """ Test url parsing """
652 def setUp(self):
653 self.translated = os.getcwd()
654 self.translated = os.path.join(self.translated, 'filename')
655 self.handler = SocketlessRequestHandler()
656
657 def test_query_arguments(self):
658 path = self.handler.translate_path('/filename')
659 self.assertEqual(path, self.translated)
660 path = self.handler.translate_path('/filename?foo=bar')
661 self.assertEqual(path, self.translated)
662 path = self.handler.translate_path('/filename?a=b&spam=eggs#zot')
663 self.assertEqual(path, self.translated)
664
665 def test_start_with_double_slash(self):
666 path = self.handler.translate_path('//filename')
667 self.assertEqual(path, self.translated)
668 path = self.handler.translate_path('//filename?foo=bar')
669 self.assertEqual(path, self.translated)
670
671
Georg Brandlb533e262008-05-25 18:19:30 +0000672def test_main(verbose=None):
Georg Brandl6fcac0d2010-08-02 18:56:54 +0000673 cwd = os.getcwd()
Georg Brandlb533e262008-05-25 18:19:30 +0000674 try:
Georg Brandl6fcac0d2010-08-02 18:56:54 +0000675 support.run_unittest(
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000676 BaseHTTPRequestHandlerTestCase,
Georg Brandl6fcac0d2010-08-02 18:56:54 +0000677 BaseHTTPServerTestCase,
678 SimpleHTTPServerTestCase,
679 CGIHTTPServerTestCase,
680 SimpleHTTPRequestHandlerTestCase,
681 )
Georg Brandlb533e262008-05-25 18:19:30 +0000682 finally:
683 os.chdir(cwd)
684
685if __name__ == '__main__':
686 test_main()