Tests: parsing of "Transfer-Encoding: chunked" responses.

This commit is contained in:
Tiago Natel
2019-11-26 15:58:25 +00:00
parent 4eecf1cb6a
commit 01103c5005
6 changed files with 71 additions and 23 deletions

View File

@@ -141,7 +141,7 @@ class TestNodeApplication(TestApplicationNode):
self.load('write_buffer')
self.assertEqual(
self.get()['body'], '6\r\nbuffer\r\n0\r\n\r\n', 'write buffer'
self.get()['body'], 'buffer', 'write buffer'
)
def test_node_application_write_callback(self):
@@ -149,7 +149,7 @@ class TestNodeApplication(TestApplicationNode):
self.assertEqual(
self.get()['body'],
'5\r\nhello\r\n5\r\nworld\r\n0\r\n\r\n',
'helloworld',
'write callback order',
)
self.assertTrue(
@@ -173,7 +173,7 @@ class TestNodeApplication(TestApplicationNode):
self.assertEqual(
self.get()['body'],
'4\r\nbody\r\n4\r\ntrue\r\n0\r\n\r\n',
'bodytrue',
'write return',
)