mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
[4.1.x] Fixed #33754 -- Fixed crash with prematurely closed ASGI request body.
Regression in441103a04d. Backport off1e0fc645bfrom main
This commit is contained in:
committed by
Mariusz Felisiak
parent
000e8e0d38
commit
6df6c1b970
@@ -163,6 +163,18 @@ class ASGITest(SimpleTestCase):
|
||||
self.assertEqual(response_body["type"], "http.response.body")
|
||||
self.assertEqual(response_body["body"], b"From Scotland,Wales")
|
||||
|
||||
async def test_post_body(self):
|
||||
application = get_asgi_application()
|
||||
scope = self.async_request_factory._base_scope(method="POST", path="/post/")
|
||||
communicator = ApplicationCommunicator(application, scope)
|
||||
await communicator.send_input({"type": "http.request", "body": b"Echo!"})
|
||||
response_start = await communicator.receive_output()
|
||||
self.assertEqual(response_start["type"], "http.response.start")
|
||||
self.assertEqual(response_start["status"], 200)
|
||||
response_body = await communicator.receive_output()
|
||||
self.assertEqual(response_body["type"], "http.response.body")
|
||||
self.assertEqual(response_body["body"], b"Echo!")
|
||||
|
||||
async def test_get_query_string(self):
|
||||
application = get_asgi_application()
|
||||
for query_string in (b"name=Andrew", "name=Andrew"):
|
||||
|
||||
Reference in New Issue
Block a user