2018-06-07 04:29:17 +00:00
|
|
|
"""
|
|
|
|
Actor model API testing
|
|
|
|
"""
|
2018-06-12 19:23:58 +00:00
|
|
|
import time
|
2018-06-19 15:49:25 +00:00
|
|
|
from functools import partial
|
2018-06-12 19:23:58 +00:00
|
|
|
|
2018-06-07 04:29:17 +00:00
|
|
|
import pytest
|
2018-06-12 19:23:58 +00:00
|
|
|
import trio
|
2018-07-05 23:49:21 +00:00
|
|
|
import tractor
|
2018-06-07 04:29:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def us_symbols():
|
|
|
|
return ['TSLA', 'AAPL', 'CGC', 'CRON']
|
|
|
|
|
|
|
|
|
2018-06-12 19:23:58 +00:00
|
|
|
@pytest.mark.trio
|
|
|
|
async def test_no_arbitter():
|
|
|
|
"""An arbitter must be established before any nurseries
|
|
|
|
can be created.
|
|
|
|
|
|
|
|
(In other words ``tractor.run`` must be used instead of ``trio.run`` as is
|
|
|
|
done by the ``pytest-trio`` plugin.)
|
|
|
|
"""
|
|
|
|
with pytest.raises(RuntimeError):
|
2018-06-19 15:49:25 +00:00
|
|
|
with tractor.open_nursery():
|
2018-06-12 19:23:58 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
2018-06-19 15:49:25 +00:00
|
|
|
def test_local_actor_async_func():
|
2018-06-12 19:23:58 +00:00
|
|
|
"""Verify a simple async function in-process.
|
|
|
|
"""
|
2018-06-19 15:49:25 +00:00
|
|
|
nums = []
|
|
|
|
|
|
|
|
async def print_loop():
|
|
|
|
# arbiter is started in-proc if dne
|
|
|
|
assert tractor.current_actor().is_arbiter
|
|
|
|
|
2018-06-12 19:23:58 +00:00
|
|
|
for i in range(10):
|
2018-06-19 15:49:25 +00:00
|
|
|
nums.append(i)
|
2018-06-12 19:23:58 +00:00
|
|
|
await trio.sleep(0.1)
|
|
|
|
|
|
|
|
start = time.time()
|
|
|
|
tractor.run(print_loop)
|
2018-06-19 15:49:25 +00:00
|
|
|
|
2018-06-12 19:23:58 +00:00
|
|
|
# ensure the sleeps were actually awaited
|
|
|
|
assert time.time() - start >= 1
|
2018-06-19 15:49:25 +00:00
|
|
|
assert nums == list(range(10))
|
|
|
|
|
|
|
|
|
|
|
|
# NOTE: this func must be defined at module level in order for the
|
|
|
|
# interal pickling infra of the forkserver to work
|
|
|
|
async def spawn(is_arbiter):
|
|
|
|
statespace = {'doggy': 10, 'kitty': 4}
|
|
|
|
namespaces = ['piker.brokers.core']
|
|
|
|
|
|
|
|
await trio.sleep(0.1)
|
|
|
|
actor = tractor.current_actor()
|
|
|
|
assert actor.is_arbiter == is_arbiter
|
|
|
|
|
|
|
|
# arbiter should always have an empty statespace as it's redundant
|
2018-06-27 15:45:21 +00:00
|
|
|
assert actor.statespace == statespace
|
2018-06-19 15:49:25 +00:00
|
|
|
|
|
|
|
if actor.is_arbiter:
|
|
|
|
async with tractor.open_nursery() as nursery:
|
|
|
|
# forks here
|
|
|
|
portal = await nursery.start_actor(
|
|
|
|
'sub-actor',
|
|
|
|
main=partial(spawn, False),
|
|
|
|
statespace=statespace,
|
|
|
|
rpc_module_paths=namespaces,
|
|
|
|
)
|
|
|
|
assert len(nursery._children) == 1
|
2018-07-05 19:33:02 +00:00
|
|
|
assert portal.channel.uid in tractor.current_actor()._peers
|
2018-06-19 15:49:25 +00:00
|
|
|
else:
|
|
|
|
return 10
|
|
|
|
|
|
|
|
|
|
|
|
def test_local_arbiter_subactor_global_state():
|
|
|
|
statespace = {'doggy': 10, 'kitty': 4}
|
|
|
|
tractor.run(
|
|
|
|
spawn,
|
|
|
|
True,
|
|
|
|
name='arbiter',
|
|
|
|
statespace=statespace,
|
|
|
|
)
|
2018-06-12 19:23:58 +00:00
|
|
|
|
|
|
|
|
2018-07-05 19:33:02 +00:00
|
|
|
async def rx_price_quotes_from_brokerd(us_symbols):
|
2018-06-07 04:29:17 +00:00
|
|
|
"""Verify we can spawn a daemon actor and retrieve streamed price data.
|
|
|
|
"""
|
2018-06-12 19:23:58 +00:00
|
|
|
async with tractor.find_actor('brokerd') as portals:
|
2018-06-19 15:49:25 +00:00
|
|
|
if not portals:
|
2018-06-12 19:23:58 +00:00
|
|
|
# only one per host address, spawns an actor if None
|
2018-06-19 15:49:25 +00:00
|
|
|
async with tractor.open_nursery() as nursery:
|
2018-06-07 04:29:17 +00:00
|
|
|
# no brokerd actor found
|
|
|
|
portal = await nursery.start_actor(
|
|
|
|
'brokerd',
|
2018-06-19 15:49:25 +00:00
|
|
|
rpc_module_paths=['piker.brokers.core'],
|
2018-06-07 04:29:17 +00:00
|
|
|
statespace={
|
|
|
|
'brokers2tickersubs': {},
|
|
|
|
'clients': {},
|
|
|
|
'dtasks': set()
|
|
|
|
},
|
2018-06-12 19:23:58 +00:00
|
|
|
main=None, # don't start a main func - use rpc
|
2018-06-07 04:29:17 +00:00
|
|
|
)
|
|
|
|
|
2018-06-19 15:49:25 +00:00
|
|
|
# gotta expose in a broker agnostic way...
|
|
|
|
# retrieve initial symbol data
|
|
|
|
# sd = await portal.run(
|
|
|
|
# 'piker.brokers.core', 'symbol_data', symbols=us_symbols)
|
|
|
|
# assert list(sd.keys()) == us_symbols
|
|
|
|
|
|
|
|
gen = await portal.run(
|
|
|
|
'piker.brokers.core',
|
|
|
|
'_test_price_stream',
|
|
|
|
broker='robinhood',
|
|
|
|
symbols=us_symbols,
|
|
|
|
)
|
|
|
|
# it'd sure be nice to have an asyncitertools here...
|
|
|
|
async for quotes in gen:
|
|
|
|
assert quotes
|
|
|
|
for key in quotes:
|
|
|
|
assert key in us_symbols
|
|
|
|
break
|
|
|
|
# terminate far-end async-gen
|
|
|
|
# await gen.asend(None)
|
|
|
|
# break
|
|
|
|
|
|
|
|
# stop all spawned subactors
|
|
|
|
await nursery.cancel()
|
|
|
|
|
|
|
|
# arbitter is cancelled here due to `find_actors()` internals
|
|
|
|
# (which internally uses `get_arbiter` which kills its channel
|
|
|
|
# server scope on exit)
|
2018-07-05 19:33:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_rx_price_quotes_from_brokerd(us_symbols):
|
|
|
|
tractor.run(
|
|
|
|
rx_price_quotes_from_brokerd,
|
|
|
|
us_symbols,
|
|
|
|
name='arbiter',
|
|
|
|
)
|