This commit is contained in:
Ryan Williams
2010-02-17 16:09:52 -08:00
3 changed files with 34 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ Contributors
* Gregory Holt
* Chet Murthy
* radix
* Patrick Carlisle
Linden Lab Contributors
-----------------------

View File

@@ -315,16 +315,19 @@ class HttpProtocol(BaseHTTPServer.BaseHTTPRequestHandler):
headers_set[1].append(('Content-Length', str(sum(map(len, result)))))
towrite = []
towrite_size = 0
just_written_size = 0
for data in result:
towrite.append(data)
towrite_size += len(data)
if towrite_size >= self.minimum_chunk_size:
write(''.join(towrite))
towrite = []
just_written_size = towrite_size
towrite_size = 0
if towrite:
just_written_size = towrite_size
write(''.join(towrite))
if not headers_sent or use_chunked[0]:
if not headers_sent or (use_chunked[0] and just_written_size):
write('')
except Exception, e:
self.close_connection = 1

View File

@@ -328,9 +328,12 @@ class TestHttpd(LimitedTestCase):
while chunklen:
chunks += 1
chunk = fd.read(chunklen)
fd.readline()
fd.readline() # CRLF
chunklen = int(fd.readline(), 16)
self.assert_(chunks > 1)
response = fd.read()
# Require a CRLF to close the message body
self.assertEqual(response, '\r\n')
def test_012_ssl_server(self):
def wsgi_app(environ, start_response):
@@ -768,5 +771,30 @@ class TestHttpd(LimitedTestCase):
pass # TODO: should test with OpenSSL
greenthread.kill(g)
def test_zero_length_chunked_response(self):
def zero_chunked_app(env, start_response):
start_response('200 OK', [('Content-type', 'text/plain')])
yield ""
self.site.application = zero_chunked_app
sock = api.connect_tcp(
('localhost', self.port))
fd = sock.makefile()
fd.write('GET / HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n')
fd.flush()
response = fd.read().split('\r\n')
headers = []
while True:
h = response.pop(0)
headers.append(h)
if h == '':
break
self.assert_('Transfer-Encoding: chunked' in ''.join(headers))
# should only be one chunk of zero size with two blank lines
# (one terminates the chunk, one terminates the body)
self.assertEqual(response, ['0', '', ''])
if __name__ == '__main__':
main()