Tests: added "Host" and "Connetion" headers where necessary.
Also minor header organizing.
This commit is contained in:
@@ -19,7 +19,8 @@ class TestUnitPHPApplication(unit.TestUnitApplicationPHP):
|
||||
resp = self.post(headers={
|
||||
'Host': 'localhost',
|
||||
'Content-Type': 'text/html',
|
||||
'Custom-Header': 'blah'
|
||||
'Custom-Header': 'blah',
|
||||
'Connection': 'close'
|
||||
}, body=body)
|
||||
|
||||
self.assertEqual(resp['status'], 200, 'status')
|
||||
@@ -39,6 +40,7 @@ class TestUnitPHPApplication(unit.TestUnitApplicationPHP):
|
||||
|
||||
headers.pop('Content-type')
|
||||
self.assertDictEqual(headers, {
|
||||
'Connection': 'close',
|
||||
'Content-Length': str(len(body)),
|
||||
'Request-Method': 'POST',
|
||||
'Request-Uri': '/',
|
||||
@@ -96,17 +98,17 @@ class TestUnitPHPApplication(unit.TestUnitApplicationPHP):
|
||||
self.load('mirror')
|
||||
|
||||
(resp, sock) = self.post(headers={
|
||||
'Host': 'localhost',
|
||||
'Connection': 'keep-alive',
|
||||
'Content-Type': 'text/html',
|
||||
'Host': 'localhost'
|
||||
'Content-Type': 'text/html'
|
||||
}, start=True, body='0123456789' * 500)
|
||||
|
||||
self.assertEqual(resp['body'], '0123456789' * 500, 'keep-alive 1')
|
||||
|
||||
resp = self.post(headers={
|
||||
'Host': 'localhost',
|
||||
'Connection': 'close',
|
||||
'Content-Type': 'text/html',
|
||||
'Host': 'localhost'
|
||||
'Content-Type': 'text/html'
|
||||
}, sock=sock, body='0123456789')
|
||||
|
||||
self.assertEqual(resp['body'], '0123456789', 'keep-alive 2')
|
||||
|
||||
Reference in New Issue
Block a user