forked from goodboy/tractor
1
0
Fork 0
tractor/tractor/testing/_tractor_test.py

55 lines
1.5 KiB
Python
Raw Normal View History

2018-11-26 16:20:53 +00:00
import inspect
from functools import partial, wraps
from .. import run
__all__ = ['tractor_test']
2018-11-26 16:20:53 +00:00
def tractor_test(fn):
"""
Use:
@tractor_test
async def test_whatever():
await ...
If fixtures:
- ``arb_addr`` (a socket addr tuple where arbiter is listening)
- ``loglevel`` (logging level passed to tractor internals)
- ``start_method`` (subprocess spawning backend)
are defined in the `pytest` fixture space they will be automatically
injected to tests declaring these funcargs.
2018-11-26 16:20:53 +00:00
"""
@wraps(fn)
2019-03-06 05:36:37 +00:00
def wrapper(
*args,
loglevel=None,
arb_addr=None,
start_method='trio_run_in_process',
2019-03-06 05:36:37 +00:00
**kwargs
):
2018-11-26 16:20:53 +00:00
# __tracebackhide__ = True
if 'arb_addr' in inspect.signature(fn).parameters:
# injects test suite fixture value to test as well
# as `run()`
2018-11-26 16:20:53 +00:00
kwargs['arb_addr'] = arb_addr
if 'loglevel' in inspect.signature(fn).parameters:
# allows test suites to define a 'loglevel' fixture
# that activates the internal logging
kwargs['loglevel'] = loglevel
2019-03-09 01:06:16 +00:00
if 'start_method' in inspect.signature(fn).parameters:
# set of subprocess spawning backends
2019-03-09 01:06:16 +00:00
kwargs['start_method'] = start_method
2018-11-26 16:20:53 +00:00
return run(
partial(fn, *args, **kwargs),
2019-03-06 05:36:37 +00:00
arbiter_addr=arb_addr,
loglevel=loglevel,
2019-03-09 01:06:16 +00:00
start_method=start_method,
)
2018-11-26 16:20:53 +00:00
return wrapper