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
|
import asyncio
import unittest
import reactivex
import reactivex.operators as ops
from reactivex.internal.exceptions import SequenceContainsNoElementsError
from reactivex.subject import Subject
from reactivex.testing import ReactiveTest
on_next = ReactiveTest.on_next
on_completed = ReactiveTest.on_completed
on_error = ReactiveTest.on_error
subscribe = ReactiveTest.subscribe
subscribed = ReactiveTest.subscribed
disposed = ReactiveTest.disposed
created = ReactiveTest.created
class TestToFuture(unittest.TestCase):
def test_await_success(self):
loop = asyncio.get_event_loop()
result = None
async def go():
nonlocal result
source = reactivex.return_value(42)
result = await source
loop.run_until_complete(go())
assert result == 42
def test_await_success_on_sequence(self):
loop = asyncio.get_event_loop()
result = None
async def go():
nonlocal result
source = reactivex.from_([40, 41, 42])
result = await source
loop.run_until_complete(go())
assert result == 42
def test_await_error(self):
loop = asyncio.get_event_loop()
error = Exception("error")
result = None
async def go():
nonlocal result
source = reactivex.throw(error)
try:
result = await source
except Exception as ex:
result = ex
loop.run_until_complete(go())
assert result == error
def test_await_empty_observable(self):
loop = asyncio.get_event_loop()
result = None
async def go():
nonlocal result
source = reactivex.empty()
result = await source
self.assertRaises(
SequenceContainsNoElementsError, loop.run_until_complete, go()
)
def test_await_with_delay(self):
loop = asyncio.get_event_loop()
result = None
async def go():
nonlocal result
source = reactivex.return_value(42).pipe(ops.delay(0.1))
result = await source
loop.run_until_complete(go())
assert result == 42
def test_cancel(self):
loop = asyncio.get_event_loop()
async def go():
source = reactivex.return_value(42)
fut = next(source.__await__())
# This used to raise an InvalidStateError before we got
# support for cancellation.
fut.cancel()
await fut
self.assertRaises(asyncio.CancelledError, loop.run_until_complete, go())
def test_dispose_on_cancel(self):
loop = asyncio.get_event_loop()
sub = Subject()
async def using_sub():
# Since the subject never completes, this await statement
# will never be complete either. We wait forever.
await reactivex.using(lambda: sub, lambda s: s)
async def go():
await asyncio.wait_for(using_sub(), 0.1)
self.assertRaises(asyncio.TimeoutError, loop.run_until_complete, go())
# When we cancel the future (due to the time-out), the future
# automatically disposes the underlying subject.
self.assertTrue(sub.is_disposed)
|