-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathtest_litestar_websockets.py
More file actions
181 lines (149 loc) · 5.07 KB
/
Copy pathtest_litestar_websockets.py
File metadata and controls
181 lines (149 loc) · 5.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
from collections.abc import AsyncGenerator
from contextlib import asynccontextmanager
from unittest.mock import Mock
import pytest
from litestar import Litestar, websocket_listener
from litestar.handlers import WebsocketListener
from litestar.testing import TestClient
from dishka import make_async_container
from dishka.integrations.litestar import (
FromDishka,
inject_websocket,
setup_dishka, DishkaPlugin,
)
from ..common import (
APP_DEP_VALUE,
REQUEST_DEP_VALUE,
WS_DEP_VALUE,
AppDep,
RequestDep,
WebSocketAppProvider,
WebSocketDep,
)
@asynccontextmanager
async def dishka_app_via_setup(view, provider) -> AsyncGenerator[TestClient, None]:
app = Litestar([view], debug=True)
container = make_async_container(provider)
setup_dishka(container, app)
with TestClient(app) as client:
yield client
await container.close()
@asynccontextmanager
async def dishka_app_via_plugin(view, provider) -> AsyncGenerator[TestClient, None]:
container = make_async_container(provider)
app = Litestar([view], debug=True, plugins=[DishkaPlugin(container=container)])
with TestClient(app) as client:
yield client
await container.close()
@websocket_listener("/")
@inject_websocket
async def get_with_app(
data: str,
a: FromDishka[AppDep],
mock: FromDishka[Mock],
) -> str:
mock(a)
return "passed"
class GetWithApp(WebsocketListener):
path = "/"
@inject_websocket
async def on_receive(
self,
data: str,
a: FromDishka[AppDep],
mock: FromDishka[Mock],
) -> str:
mock(a)
return "passed"
@pytest.mark.asyncio
@pytest.mark.parametrize("setup_client", [dishka_app_via_setup, dishka_app_via_plugin])
@pytest.mark.parametrize("view", [get_with_app, GetWithApp])
async def test_app_dependency(view, ws_app_provider: WebSocketAppProvider, setup_client: TestClient) -> None:
async with setup_client(view, ws_app_provider) as client:
with client.websocket_connect("/") as connection:
connection.send_text("...")
assert connection.receive_text() == "passed"
ws_app_provider.mock.assert_called_with(APP_DEP_VALUE)
ws_app_provider.app_released.assert_not_called()
ws_app_provider.app_released.assert_called()
@websocket_listener("/")
@inject_websocket
async def get_with_request(
data: str,
a: FromDishka[RequestDep],
mock: FromDishka[Mock],
) -> str:
mock(a)
return "passed"
class GetWithRequest(WebsocketListener):
path = "/"
@inject_websocket
async def on_receive(
self,
data: str,
a: FromDishka[RequestDep],
mock: FromDishka[Mock],
) -> str:
mock(a)
return "passed"
@pytest.mark.asyncio
@pytest.mark.parametrize("view", [get_with_request, GetWithRequest])
async def test_request_dependency(
view,
ws_app_provider: WebSocketAppProvider,
):
async with dishka_app_via_setup(view, ws_app_provider) as client:
with client.websocket_connect("/") as connection:
connection.send_text("...")
assert connection.receive_text() == "passed"
ws_app_provider.mock.assert_called_with(REQUEST_DEP_VALUE)
ws_app_provider.request_released.assert_called_once()
@pytest.mark.asyncio
@pytest.mark.parametrize("view", [get_with_request, GetWithRequest])
async def test_request_dependency2(
view,
ws_app_provider: WebSocketAppProvider,
):
async with dishka_app_via_setup(view, ws_app_provider) as client:
with client.websocket_connect("/") as connection:
connection.send_text("...")
assert connection.receive_text() == "passed"
ws_app_provider.request_released.assert_called_once()
ws_app_provider.request_released.reset_mock()
with client.websocket_connect("/") as connection:
connection.send_text("...")
assert connection.receive_text() == "passed"
ws_app_provider.mock.assert_called_with(REQUEST_DEP_VALUE)
ws_app_provider.request_released.assert_called_once()
@websocket_listener("/")
@inject_websocket
async def get_with_websocket(
data: str,
ws: FromDishka[WebSocketDep],
mock: FromDishka[Mock],
) -> str:
mock(ws)
return "passed"
class GetWithWebsocket(WebsocketListener):
path = "/"
@inject_websocket
async def on_receive(
self,
data: str,
a: FromDishka[WebSocketDep],
mock: FromDishka[Mock],
) -> str:
mock(a)
return "passed"
@pytest.mark.asyncio
@pytest.mark.parametrize("view", [get_with_websocket, GetWithWebsocket])
async def test_websocket_dependency(
view,
ws_app_provider: WebSocketAppProvider,
):
async with dishka_app_via_setup(view, ws_app_provider) as client:
with client.websocket_connect("/") as connection:
connection.send_text("...")
assert connection.receive_text() == "passed"
ws_app_provider.mock.assert_called_with(WS_DEP_VALUE)
ws_app_provider.websocket_released.assert_called_once()