fix websocket test cases

This commit is contained in:
jonaswinkler 2021-02-04 13:26:58 +01:00
parent 44ec3a3d9c
commit 8711a206a0

View File

@ -8,14 +8,16 @@ from paperless.asgi import application
class TestWebSockets(TestCase):
async def test_no_auth(self):
@mock.patch("paperless.consumers.async_to_sync")
async def test_no_auth(self, async_to_sync):
communicator = WebsocketCommunicator(application, "/ws/status/")
connected, subprotocol = await communicator.connect()
self.assertFalse(connected)
await communicator.disconnect()
@mock.patch("paperless.consumers.async_to_sync")
@mock.patch("paperless.consumers.StatusConsumer._authenticated")
async def test_auth(self, _authenticated):
async def test_auth(self, _authenticated, async_to_sync):
_authenticated.return_value = True
communicator = WebsocketCommunicator(application, "/ws/status/")