mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
bpo-33365: print the header values beside the keys (GH-6611)
with debuglevel=1 only the header keys got printed. With this change the header values get printed as well and the single header entries get '\n' as a separator.
This commit is contained in:
parent
1261bfa83d
commit
936f03e7fa
3 changed files with 17 additions and 1 deletions
|
@ -344,6 +344,21 @@ class HeaderTests(TestCase):
|
|||
with self.assertRaisesRegex(ValueError, 'Invalid header'):
|
||||
conn.putheader(name, value)
|
||||
|
||||
def test_headers_debuglevel(self):
|
||||
body = (
|
||||
b'HTTP/1.1 200 OK\r\n'
|
||||
b'First: val\r\n'
|
||||
b'Second: val\r\n'
|
||||
)
|
||||
sock = FakeSocket(body)
|
||||
resp = client.HTTPResponse(sock, debuglevel=1)
|
||||
with support.captured_stdout() as output:
|
||||
resp.begin()
|
||||
lines = output.getvalue().splitlines()
|
||||
self.assertEqual(lines[0], "reply: 'HTTP/1.1 200 OK\\r\\n'")
|
||||
self.assertEqual(lines[1], "header: First: val")
|
||||
self.assertEqual(lines[2], "header: Second: val")
|
||||
|
||||
|
||||
class TransferEncodingTest(TestCase):
|
||||
expected_body = b"It's just a flesh wound"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue