mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
#1627: httplib now ignores negative Content-Length headers.
This commit is contained in:
parent
2363503074
commit
8c460d5241
3 changed files with 12 additions and 0 deletions
|
|
@ -184,6 +184,13 @@ class BasicTest(TestCase):
|
|||
finally:
|
||||
resp.close()
|
||||
|
||||
def test_negative_content_length(self):
|
||||
sock = FakeSocket('HTTP/1.1 200 OK\r\nContent-Length: -1\r\n\r\nHello\r\n')
|
||||
resp = httplib.HTTPResponse(sock, method="GET")
|
||||
resp.begin()
|
||||
self.assertEquals(resp.read(), 'Hello\r\n')
|
||||
resp.close()
|
||||
|
||||
|
||||
class OfflineTest(TestCase):
|
||||
def test_responses(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue