55 lines
1.3 KiB
Python
55 lines
1.3 KiB
Python
import pkg_resources
|
|
import pytest
|
|
|
|
from bonobo import __version__, get_examples_path
|
|
from bonobo.commands import entrypoint
|
|
|
|
|
|
def runner_entrypoint(*args):
|
|
return entrypoint(list(args))
|
|
|
|
|
|
def runner_module(*args):
|
|
return entrypoint(list(args))
|
|
|
|
|
|
all_runners = pytest.mark.parametrize('runner', [runner_entrypoint, runner_module])
|
|
|
|
|
|
def test_entrypoint():
|
|
commands = {}
|
|
|
|
for command in pkg_resources.iter_entry_points('bonobo.commands'):
|
|
commands[command.name] = command
|
|
|
|
assert 'init' in commands
|
|
assert 'run' in commands
|
|
assert 'version' in commands
|
|
|
|
|
|
@all_runners
|
|
def test_no_command(runner, capsys):
|
|
with pytest.raises(SystemExit):
|
|
runner()
|
|
_, err = capsys.readouterr()
|
|
assert 'error: the following arguments are required: command' in err
|
|
|
|
|
|
@all_runners
|
|
def test_run(runner, capsys):
|
|
runner('run', '--quiet', get_examples_path('types/strings.py'))
|
|
out, err = capsys.readouterr()
|
|
out = out.split('\n')
|
|
assert out[0].startswith('Foo ')
|
|
assert out[1].startswith('Bar ')
|
|
assert out[2].startswith('Baz ')
|
|
|
|
|
|
@all_runners
|
|
def test_version(runner, capsys):
|
|
runner('version')
|
|
out, err = capsys.readouterr()
|
|
out = out.strip()
|
|
assert out.startswith('bonobo ')
|
|
assert out.endswith(__version__)
|