-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathtest_components.py
More file actions
285 lines (218 loc) · 7.08 KB
/
Copy pathtest_components.py
File metadata and controls
285 lines (218 loc) · 7.08 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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
from typing import Annotated, Literal
import pytest
from dishka import (
Component,
FromComponent,
Provider,
Scope,
alias,
decorate,
make_async_container,
make_container,
provide,
)
from dishka.exceptions import NoFactoryError
class MainProvider(Provider):
scope = Scope.APP
def __init__(self, value: int, component: Component | None = None):
super().__init__(component=component)
self.value = value
@provide
def foo(self, a: Annotated[float, FromComponent("X")]) -> complex:
return a * 10
@provide
def bar(self) -> int:
return self.value
class AliasedProvider(Provider):
scope = Scope.APP
float_alias = alias(source=float, component="X")
@provide
def foo(self, a: float) -> complex:
return a * 10
@provide
def bar(self) -> int:
return 20
class XProvider(Provider):
scope = Scope.APP
component = "X"
@provide
def foo(self, a: Annotated[int, FromComponent()]) -> float:
return a + 1
class YProvider(Provider):
scope = Scope.APP
component = "Y"
@provide
def foo(self) -> float:
return 42
class ZProvider(Provider):
scope = Scope.APP
component = "Z"
@provide
def foo(self) -> bool:
return True
def test_from_component():
container = make_container(MainProvider(20), XProvider())
assert container.get(complex) == 210
assert container.get(float, component="X") == 21
with pytest.raises(NoFactoryError):
container.get(float)
@pytest.mark.parametrize(
("component", "expected_count"),
[
(None, 4),
(("",), 4),
(True, 6),
(("X",), 3),
(("X", ""), 4),
(("X", "Y"), 4),
(("X", "Y", ""), 5),
(("X", "Y", "Z"), 5),
(("X", "Y", "Z", ""), 6),
],
)
def test_from_component_resolve_all(
component: Literal[True] | tuple[Component] | None, expected_count: int
):
container = make_container(
MainProvider(20), XProvider(), YProvider(), ZProvider()
)
assert len(container.context) == 1
container.resolve_all(component)
assert len(container.context) == expected_count
@pytest.mark.asyncio()
async def test_from_component_async():
container = make_async_container(MainProvider(20), XProvider())
assert await container.get(complex) == 210
assert await container.get(float, component="X") == 21
with pytest.raises(NoFactoryError):
await container.get(float)
@pytest.mark.parametrize(
("component", "expected_count"),
[
(None, 4),
(("",), 4),
(True, 6),
(("X",), 3),
(("X", ""), 4),
(("X", "Y"), 4),
(("X", "Y", ""), 5),
(("X", "Y", "Z"), 5),
(("X", "Y", "Z", ""), 6),
],
)
@pytest.mark.asyncio
async def test_from_component_resolve_all_async(
component: Literal[True] | tuple[Component] | None, expected_count: int
):
container = make_async_container(
MainProvider(20), XProvider(), YProvider(), ZProvider()
)
assert len(container.context) == 1
await container.resolve_all(component)
assert len(container.context) == expected_count
class SingleProvider(Provider):
scope = Scope.APP
def __init__(self, value: int, component: Component | None = None):
super().__init__(component=component)
self.value = value
@provide
def bar(self) -> int:
return self.value
def test_change_component():
container = make_container(SingleProvider(20).to_component("Y"))
assert container.get(int, component="Y") == 20
def test_set_component():
container = make_container(SingleProvider(20, component="Y"))
assert container.get(int, component="Y") == 20
def test_from_component_alias():
container = make_container(AliasedProvider(), XProvider())
assert container.get(complex) == 210
assert container.get(float, component="X") == 21
assert container.get(float) == 21
class Provider1(Provider):
scope = Scope.APP
component = "1"
@provide
def foo(self) -> int:
return 1
@provide
def bar(self, a: int) -> float:
return a
class Provider2(Provider):
scope = Scope.APP
component = "2"
@provide
def foo(self) -> int:
return 2
@provide
def bar(self, a: int) -> complex:
return a
class ProviderSum(Provider):
scope = Scope.APP
@provide
def foo(
self,
f: Annotated[float, FromComponent("1")],
c: Annotated[complex, FromComponent("2")],
) -> int:
return int(10 * c + f)
def test_isolated_component():
container = make_container(Provider1(), Provider2(), ProviderSum())
assert container.get(int) == 21
class ProviderInc(Provider):
scope = Scope.APP
component = "X"
def __init__(self):
super().__init__()
self.value = 1
@provide
def foo(self) -> int:
self.value += 1
return self.value
def test_cache():
provider = Provider(scope=Scope.APP)
provider.provide(lambda: 1, provides=int)
provider_inc = ProviderInc()
container = make_container(provider, provider_inc)
assert container.get(int, component="X") == 2
assert container.get(int, component="X") == 2
assert container.get(int) == 1
container = make_container(provider, provider_inc)
assert container.get(int, component="X") == 3
assert container.get(int, component="X") == 3
container = make_container(provider_inc.to_component("Y"), provider_inc)
assert container.get(int, component="X") == 4
assert container.get(int, component="X") == 4
assert container.get(int, component="Y") == 5
assert container.get(int, component="X") == 4
@pytest.mark.asyncio
async def test_cache_async():
provider = Provider(scope=Scope.APP)
provider.provide(lambda: 1, provides=int)
provider_inc = ProviderInc()
container = make_async_container(provider, provider_inc)
assert await container.get(int, component="X") == 2
assert await container.get(int, component="X") == 2
assert await container.get(int) == 1
container = make_async_container(provider, provider_inc)
assert await container.get(int, component="X") == 3
assert await container.get(int, component="X") == 3
container = make_async_container(provider_inc.to_component("Y"),
provider_inc)
assert await container.get(int, component="X") == 4
assert await container.get(int, component="X") == 4
assert await container.get(int, component="Y") == 5
assert await container.get(int, component="X") == 4
class ProviderDecorated(Provider):
@decorate
def foo(self, a: int) -> int:
return a + 1
def test_decorator():
dec_provider = ProviderDecorated(scope=Scope.APP, component="X")
x_provider = Provider(scope=Scope.APP, component="X")
x_provider.provide(lambda: 1, provides=int)
provider = Provider(scope=Scope.APP)
provider.provide(lambda: 100, provides=int)
container = make_container(provider, x_provider, dec_provider)
assert container.get(int, component="X") == 2
assert container.get(int) == 100