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
|
import pytest
import asyncio
import operator
from aiostream import stream, pipe
from aiostream.test_utils import assert_run, event_loop, add_resource
# Pytest fixtures
assert_run, event_loop
@pytest.mark.asyncio
async def test_aggregate(assert_run, event_loop):
with event_loop.assert_cleanup():
xs = stream.range(5) | add_resource.pipe(1) | pipe.accumulate()
await assert_run(xs, [0, 1, 3, 6, 10])
with event_loop.assert_cleanup():
xs = (
stream.range(2, 4)
| add_resource.pipe(1)
| pipe.accumulate(func=operator.mul, initializer=2)
)
await assert_run(xs, [2, 4, 12])
with event_loop.assert_cleanup():
xs = stream.range(0) | add_resource.pipe(1) | pipe.accumulate()
await assert_run(xs, [])
async def sleepmax(x, y):
return await asyncio.sleep(1, result=max(x, y))
with event_loop.assert_cleanup():
xs = stream.range(3) | add_resource.pipe(1) | pipe.accumulate(sleepmax)
await assert_run(xs, [0, 1, 2])
assert event_loop.steps == [1] * 3
@pytest.mark.asyncio
async def test_reduce(assert_run, event_loop):
with event_loop.assert_cleanup():
xs = stream.range(5) | add_resource.pipe(1) | pipe.reduce(min)
await assert_run(xs, [0])
with event_loop.assert_cleanup():
xs = stream.range(5) | add_resource.pipe(1) | pipe.reduce(max)
await assert_run(xs, [4])
with event_loop.assert_cleanup():
xs = stream.range(0) | add_resource.pipe(1) | pipe.reduce(max)
await assert_run(xs, [], IndexError("Index out of range"))
@pytest.mark.asyncio
async def test_list(assert_run, event_loop):
with event_loop.assert_cleanup():
xs = stream.range(3) | add_resource.pipe(1) | pipe.list()
# The same list object is yielded at each step
await assert_run(xs, [[0, 1, 2], [0, 1, 2], [0, 1, 2], [0, 1, 2]])
with event_loop.assert_cleanup():
xs = stream.range(0) | add_resource.pipe(1) | pipe.list()
await assert_run(xs, [[]])
|