|
@@ -7,8 +7,10 @@ from asgiref.testing import ApplicationCommunicator
|
|
|
|
|
|
from django.contrib.staticfiles.handlers import ASGIStaticFilesHandler
|
|
|
from django.core.asgi import get_asgi_application
|
|
|
+from django.core.handlers.asgi import ASGIHandler, ASGIRequest
|
|
|
from django.core.signals import request_finished, request_started
|
|
|
from django.db import close_old_connections
|
|
|
+from django.http import HttpResponse
|
|
|
from django.test import (
|
|
|
AsyncRequestFactory,
|
|
|
SimpleTestCase,
|
|
@@ -16,6 +18,7 @@ from django.test import (
|
|
|
modify_settings,
|
|
|
override_settings,
|
|
|
)
|
|
|
+from django.urls import path
|
|
|
from django.utils.http import http_date
|
|
|
|
|
|
from .urls import sync_waiter, test_filename
|
|
@@ -234,6 +237,34 @@ class ASGITest(SimpleTestCase):
|
|
|
with self.assertRaises(asyncio.TimeoutError):
|
|
|
await communicator.receive_output()
|
|
|
|
|
|
+ async def test_disconnect_with_body(self):
|
|
|
+ application = get_asgi_application()
|
|
|
+ scope = self.async_request_factory._base_scope(path="/")
|
|
|
+ communicator = ApplicationCommunicator(application, scope)
|
|
|
+ await communicator.send_input({"type": "http.request", "body": b"some body"})
|
|
|
+ await communicator.send_input({"type": "http.disconnect"})
|
|
|
+ with self.assertRaises(asyncio.TimeoutError):
|
|
|
+ await communicator.receive_output()
|
|
|
+
|
|
|
+ async def test_assert_in_listen_for_disconnect(self):
|
|
|
+ application = get_asgi_application()
|
|
|
+ scope = self.async_request_factory._base_scope(path="/")
|
|
|
+ communicator = ApplicationCommunicator(application, scope)
|
|
|
+ await communicator.send_input({"type": "http.request"})
|
|
|
+ await communicator.send_input({"type": "http.not_a_real_message"})
|
|
|
+ msg = "Invalid ASGI message after request body: http.not_a_real_message"
|
|
|
+ with self.assertRaisesMessage(AssertionError, msg):
|
|
|
+ await communicator.receive_output()
|
|
|
+
|
|
|
+ async def test_delayed_disconnect_with_body(self):
|
|
|
+ application = get_asgi_application()
|
|
|
+ scope = self.async_request_factory._base_scope(path="/delayed_hello/")
|
|
|
+ communicator = ApplicationCommunicator(application, scope)
|
|
|
+ await communicator.send_input({"type": "http.request", "body": b"some body"})
|
|
|
+ await communicator.send_input({"type": "http.disconnect"})
|
|
|
+ with self.assertRaises(asyncio.TimeoutError):
|
|
|
+ await communicator.receive_output()
|
|
|
+
|
|
|
async def test_wrong_connection_type(self):
|
|
|
application = get_asgi_application()
|
|
|
scope = self.async_request_factory._base_scope(path="/", type="other")
|
|
@@ -318,3 +349,56 @@ class ASGITest(SimpleTestCase):
|
|
|
self.assertEqual(len(sync_waiter.active_threads), 2)
|
|
|
|
|
|
sync_waiter.active_threads.clear()
|
|
|
+
|
|
|
+ async def test_asyncio_cancel_error(self):
|
|
|
+ # Flag to check if the view was cancelled.
|
|
|
+ view_did_cancel = False
|
|
|
+
|
|
|
+ # A view that will listen for the cancelled error.
|
|
|
+ async def view(request):
|
|
|
+ nonlocal view_did_cancel
|
|
|
+ try:
|
|
|
+ await asyncio.sleep(0.2)
|
|
|
+ return HttpResponse("Hello World!")
|
|
|
+ except asyncio.CancelledError:
|
|
|
+ # Set the flag.
|
|
|
+ view_did_cancel = True
|
|
|
+ raise
|
|
|
+
|
|
|
+ # Request class to use the view.
|
|
|
+ class TestASGIRequest(ASGIRequest):
|
|
|
+ urlconf = (path("cancel/", view),)
|
|
|
+
|
|
|
+ # Handler to use request class.
|
|
|
+ class TestASGIHandler(ASGIHandler):
|
|
|
+ request_class = TestASGIRequest
|
|
|
+
|
|
|
+ # Request cycle should complete since no disconnect was sent.
|
|
|
+ application = TestASGIHandler()
|
|
|
+ scope = self.async_request_factory._base_scope(path="/cancel/")
|
|
|
+ communicator = ApplicationCommunicator(application, scope)
|
|
|
+ await communicator.send_input({"type": "http.request"})
|
|
|
+ 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"Hello World!")
|
|
|
+ # Give response.close() time to finish.
|
|
|
+ await communicator.wait()
|
|
|
+ self.assertIs(view_did_cancel, False)
|
|
|
+
|
|
|
+ # Request cycle with a disconnect before the view can respond.
|
|
|
+ application = TestASGIHandler()
|
|
|
+ scope = self.async_request_factory._base_scope(path="/cancel/")
|
|
|
+ communicator = ApplicationCommunicator(application, scope)
|
|
|
+ await communicator.send_input({"type": "http.request"})
|
|
|
+ # Let the view actually start.
|
|
|
+ await asyncio.sleep(0.1)
|
|
|
+ # Disconnect the client.
|
|
|
+ await communicator.send_input({"type": "http.disconnect"})
|
|
|
+ # The handler should not send a response.
|
|
|
+ with self.assertRaises(asyncio.TimeoutError):
|
|
|
+ await communicator.receive_output()
|
|
|
+ await communicator.wait()
|
|
|
+ self.assertIs(view_did_cancel, True)
|