mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
fix websocket test cases
This commit is contained in:
parent
44ec3a3d9c
commit
8711a206a0
@ -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/")
|
||||
|
Loading…
x
Reference in New Issue
Block a user