-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtest_streams.py
549 lines (428 loc) · 16.1 KB
/
test_streams.py
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
import asyncio
import contextlib
from typing import Callable, Set
from unittest import mock
from kstreams import ConsumerRecord, Send, TopicPartition
from kstreams.clients import Consumer, Producer
from kstreams.engine import Stream, StreamEngine
from kstreams.streams import stream
from kstreams.structs import TopicPartitionOffset
from kstreams.test_utils import TestStreamClient
from tests import TimeoutErrorException
# NOTE: remove the test when `no typing` support is deprecated
async def test_stream_no_typing(stream_engine: StreamEngine, consumer_record_factory):
topic_name = "local--kstreams"
value = b"test"
async def getone(_):
return consumer_record_factory(value=value)
with mock.patch.multiple(
Consumer,
start=mock.DEFAULT,
subscribe=mock.DEFAULT,
getone=getone,
):
@stream_engine.stream(topic_name)
async def stream(stream_instance):
async for cr in stream_instance:
assert cr.value == value
break
assert stream.consumer is None
assert stream.topics == [topic_name]
with contextlib.suppress(TimeoutErrorException):
# now it is possible to run a stream directly, so we need
# to stop the `forever` consumption
await asyncio.wait_for(stream.start(), timeout=0.1)
assert stream.consumer
Consumer.subscribe.assert_called_once_with(
topics=[topic_name], listener=stream.rebalance_listener, pattern=None
)
await stream.stop()
async def test_stream_cr_with_typing(
stream_engine: StreamEngine, consumer_record_factory
):
topic_name = "local--kstreams"
value = b"test"
async def getone(_):
return consumer_record_factory(value=value)
with mock.patch.multiple(
Consumer,
start=mock.DEFAULT,
subscribe=mock.DEFAULT,
getone=getone,
):
@stream_engine.stream(topic_name)
async def stream(cr: ConsumerRecord):
assert cr.value == value
await asyncio.sleep(0.1)
assert stream.consumer is None
assert stream.topics == [topic_name]
with contextlib.suppress(TimeoutErrorException):
# now it is possible to run a stream directly, so we need
# to stop the `forever` consumption
await asyncio.wait_for(stream.start(), timeout=0.1)
assert stream.consumer
Consumer.subscribe.assert_called_once_with(
topics=[topic_name], listener=stream.rebalance_listener, pattern=None
)
await stream.stop()
async def test_stream_generic_cr_with_typing(
stream_engine: StreamEngine, consumer_record_factory
):
topic_name = "local--kstreams"
value = b"test"
async def getone(_):
return consumer_record_factory(value=value)
with mock.patch.multiple(
Consumer,
start=mock.DEFAULT,
subscribe=mock.DEFAULT,
getone=getone,
):
@stream_engine.stream(topic_name)
async def stream(cr: ConsumerRecord[str, bytes]):
assert cr.value == value
await asyncio.sleep(0.1)
assert stream.consumer is None
assert stream.topics == [topic_name]
with contextlib.suppress(TimeoutErrorException):
# now it is possible to run a stream directly, so we need
# to stop the `forever` consumption
await asyncio.wait_for(stream.start(), timeout=0.1)
assert stream.consumer
Consumer.subscribe.assert_called_once_with(
topics=[topic_name], listener=stream.rebalance_listener, pattern=None
)
await stream.stop()
async def test_stream_class_cr_with_typing(
stream_engine: StreamEngine, consumer_record_factory
):
topic_name = "local--kstreams"
target_topic = "local--kstreams-target"
value = "test"
client = TestStreamClient(stream_engine, topics=[target_topic])
class TestClass:
def __init__(self) -> None:
self.bar = value
async def streaming_fn(self, cr: ConsumerRecord, send: Send):
"""text from func"""
await send(target_topic, value=self.bar)
foo = TestClass()
_stream = Stream(
topics=[topic_name],
func=foo.streaming_fn,
)
stream_engine.add_stream(_stream)
async with client:
await stream_engine.start()
await client.send(topic_name, value=value)
# import ipdb; ipdb.set_trace()
client.get_topic(topic_name=target_topic)
r = await asyncio.wait_for(
client.get_event(topic_name=target_topic), timeout=0.2
)
# r = await client.get_event(topic_name=target_topic)
assert r.value == value
async def test_stream_cr_and_stream_with_typing(
stream_engine: StreamEngine, consumer_record_factory
):
value = b"test"
async def getone(_):
return consumer_record_factory(value=value)
with mock.patch.multiple(
Consumer,
start=mock.DEFAULT,
subscribe=mock.DEFAULT,
getone=getone,
):
@stream_engine.stream("local--kstreams")
async def stream(cr: ConsumerRecord, stream: Stream):
assert cr.value == value
assert isinstance(stream, Stream)
await asyncio.sleep(0.1)
with contextlib.suppress(TimeoutErrorException):
# now it is possible to run a stream directly, so we need
# to stop the `forever` consumption
await asyncio.wait_for(stream.start(), timeout=0.1)
await stream.stop()
async def test_stream_all_typing(stream_engine: StreamEngine, consumer_record_factory):
topic_name = "local--kstreams"
value = b"test"
async def getone(_):
return consumer_record_factory(value=value)
with mock.patch.multiple(
Consumer,
start=mock.DEFAULT,
subscribe=mock.DEFAULT,
getone=getone,
):
@stream_engine.stream(topic_name)
async def stream(cr: ConsumerRecord, send: Send, stream: Stream):
assert cr.value == value
assert isinstance(stream, Stream)
assert send == stream_engine.send
await asyncio.sleep(0.1)
assert stream.consumer is None
assert stream.topics == [topic_name]
with contextlib.suppress(TimeoutErrorException):
# now it is possible to run a stream directly, so we need
# to stop the `forever` consumption
await asyncio.wait_for(stream.start(), timeout=0.1)
assert stream.consumer
Consumer.subscribe.assert_called_once_with(
topics=[topic_name], listener=stream.rebalance_listener, pattern=None
)
await stream.stop()
async def test_stream_all_typing_order_in_setup_type(
stream_engine: StreamEngine, consumer_record_factory
):
topic_name = "local--kstreams"
value = b"test"
async def getone(_):
return consumer_record_factory(value=value)
with mock.patch.multiple(
Consumer,
start=mock.DEFAULT,
subscribe=mock.DEFAULT,
getone=getone,
):
@stream_engine.stream(topic_name)
async def stream(stream: Stream, cr: ConsumerRecord, send: Send):
assert cr.value == value
assert isinstance(stream, Stream)
assert send == stream_engine.send
await asyncio.sleep(0.1)
assert stream.consumer is None
assert stream.topics == [topic_name]
with contextlib.suppress(TimeoutErrorException):
# now it is possible to run a stream directly, so we need
# to stop the `forever` consumption
await asyncio.wait_for(stream.start(), timeout=0.1)
assert stream.consumer
Consumer.subscribe.assert_called_once_with(
topics=[topic_name], listener=stream.rebalance_listener, pattern=None
)
await stream.stop()
async def test_stream_multiple_topics(stream_engine: StreamEngine):
topics = ["local--hello-kpn", "local--hello-kpn-2"]
with mock.patch.multiple(
Consumer,
start=mock.DEFAULT,
subscribe=mock.DEFAULT,
):
@stream_engine.stream(topics, name="my-stream")
async def stream(_): ...
assert stream.topics == topics
await stream.start()
Consumer.subscribe.assert_called_once_with(
topics=topics, listener=stream.rebalance_listener, pattern=None
)
async def test_stream_subscribe_topics_pattern(stream_engine: StreamEngine):
pattern = "^dev--customer-.*$"
with mock.patch.multiple(
Consumer,
start=mock.DEFAULT,
subscribe=mock.DEFAULT,
):
@stream_engine.stream(topics=pattern, subscribe_by_pattern=True)
async def stream(_): ...
assert stream.topics == [pattern]
assert stream.subscribe_by_pattern
await stream.start()
Consumer.subscribe.assert_called_once_with(
topics=None, listener=stream.rebalance_listener, pattern=pattern
)
async def test_stream_subscribe_topics_only_one_pattern(stream_engine: StreamEngine):
"""
We can use only one pattern, so we use the first one
"""
patterns = ["^dev--customer-.*$", "^acc--customer-.*$"]
with mock.patch.multiple(
Consumer,
start=mock.DEFAULT,
subscribe=mock.DEFAULT,
getone=mock.DEFAULT,
):
@stream_engine.stream(topics=patterns, subscribe_by_pattern=True)
async def stream(_): ...
assert stream.topics == patterns
assert stream.subscribe_by_pattern
await stream.start()
Consumer.subscribe.assert_called_once_with(
topics=None, listener=stream.rebalance_listener, pattern=patterns[0]
)
async def test_stream_custom_conf(stream_engine: StreamEngine):
@stream_engine.stream(
"local--hello-kpn",
name="stream-hello-kpn",
auto_offset_reset="earliest",
enable_auto_commit=False,
)
async def stream(_): ...
with (
mock.patch.multiple(Consumer, start=mock.DEFAULT, stop=mock.DEFAULT),
mock.patch.multiple(Producer, start=mock.DEFAULT, stop=mock.DEFAULT),
):
await stream_engine.start_streams()
# switch the current Task to the one running in background
await asyncio.sleep(0.1)
assert stream.consumer is not None
assert stream.consumer._auto_offset_reset == "earliest"
assert not stream.consumer._enable_auto_commit
async def test_stream_getmany(
stream_engine: StreamEngine, consumer_record_factory: Callable[..., ConsumerRecord]
):
topic_partition_crs = {
TopicPartition(topic="local--hello-kpn", partition=0): [
consumer_record_factory(offset=1),
consumer_record_factory(offset=2),
consumer_record_factory(offset=3),
]
}
save_to_db = mock.Mock()
@stream_engine.stream("local--hello-kpn")
async def stream(stream: Stream):
data = await stream.getmany(max_records=3)
save_to_db(data)
async def getmany(*args, **kwargs):
return topic_partition_crs
with mock.patch.multiple(Consumer, start=mock.DEFAULT, getmany=getmany):
await stream_engine.start_streams()
await asyncio.sleep(0.1)
save_to_db.assert_called_once_with(topic_partition_crs)
async def test_stream_decorator(stream_engine: StreamEngine):
topic = "local--hello-kpn"
@stream(topic)
async def streaming_fn(_):
pass
stream_engine.add_stream(streaming_fn)
with mock.patch.multiple(Consumer, start=mock.DEFAULT, stop=mock.DEFAULT):
with mock.patch.multiple(Producer, start=mock.DEFAULT, stop=mock.DEFAULT):
await stream_engine.start()
# switch the current Task to the one running in background
await asyncio.sleep(0.1)
Consumer.start.assert_awaited()
assert stream_engine._producer is not None
stream_engine._producer.start.assert_awaited()
await stream_engine.stop()
stream_engine._producer.stop.assert_awaited()
Consumer.stop.assert_awaited()
async def test_stream_decorates_properly(stream_engine: StreamEngine):
topic = "local--hello-kpn"
@stream(topic)
async def streaming_fn(_):
"""text from func"""
assert streaming_fn.__name__ == "streaming_fn"
assert streaming_fn.__doc__ == "text from func"
async def test_recreate_consumer_on_re_start_stream(
stream_engine: StreamEngine, consumer_record_factory
):
topic_name = "local--kstreams"
stream_name = "my-stream"
async def getone(_):
return consumer_record_factory()
with mock.patch.multiple(
Consumer,
start=mock.DEFAULT,
getone=getone,
):
@stream_engine.stream(topic_name, name=stream_name)
async def stream(my_stream):
async for cr in my_stream:
assert cr
break
await stream.start()
consumer = stream.consumer
await stream.stop()
await stream.start()
assert consumer is not stream.consumer
async def test_seek_to_initial_offsets_normal(
stream_engine: StreamEngine, consumer_record_factory
):
assignments: Set[TopicPartition] = set()
partition = 100
offset = 10
topic_name = "example_topic"
value = b"Hello world"
assignments.add(TopicPartition(topic=topic_name, partition=partition))
seek_mock = mock.Mock()
async def getone(_):
return consumer_record_factory(value=value)
with mock.patch.multiple(
Consumer,
assignment=lambda _: assignments,
seek=seek_mock,
start=mock.DEFAULT,
getone=getone,
):
@stream_engine.stream(
topic_name,
initial_offsets=[
TopicPartitionOffset(
topic=topic_name, partition=partition, offset=offset
)
],
)
async def stream(my_stream):
async for cr in my_stream:
assert cr.value == value
break
await stream.start()
# simulate a partitions assigned rebalance
assert stream.rebalance_listener is not None
await stream.rebalance_listener.on_partitions_assigned(assigned=assignments)
seek_mock.assert_called_once_with(
partition=TopicPartition(topic=topic_name, partition=partition),
offset=offset,
)
async def test_seek_to_initial_offsets_ignores_wrong_input(
stream_engine: StreamEngine, consumer_record_factory
):
offset = 100
partition = 100
topic_name = "example_topic"
wrong_topic = "different_topic"
value = b"Hello world"
wrong_partition = 1
assignments: Set[TopicPartition] = set()
assignments.add(TopicPartition(topic=topic_name, partition=partition))
seek_mock = mock.Mock()
async def getone(_):
return consumer_record_factory(value=value)
with mock.patch.multiple(
Consumer,
assignment=lambda _: assignments,
seek=seek_mock,
start=mock.DEFAULT,
getone=getone,
):
@stream_engine.stream(
topic_name,
initial_offsets=[
TopicPartitionOffset(
topic=wrong_topic, partition=partition, offset=offset
),
TopicPartitionOffset(
topic=topic_name, partition=wrong_partition, offset=offset
),
],
)
async def stream(my_stream):
async for cr in my_stream:
assert cr.value == value
break
await stream.start()
# simulate a partitions assigned rebalance
assert stream.rebalance_listener is not None
await stream.rebalance_listener.on_partitions_assigned(assigned=assignments)
seek_mock.assert_not_called()
async def test_stream_simple_di_works(
stream_engine: StreamEngine, consumer_record_factory
):
topic = "local--hello-kpn"
cr: ConsumerRecord = consumer_record_factory(topic=topic, value=b"test")
@stream_engine.stream(topic)
async def streaming_fn(cr: ConsumerRecord):
"""text from func"""
return cr.value
r = await streaming_fn.func(cr)
assert r == b"test"