1
0
Fork 0
mirror of https://github.com/shouptech/synthale.git synced 2026-02-03 15:39:45 +00:00

Print version option

This commit is contained in:
Emma 2019-01-02 11:55:12 -07:00
parent 673be27b46
commit 3eecc2cec3
4 changed files with 60 additions and 18 deletions

View file

@ -39,7 +39,7 @@ setup(
],
entry_points='''
[console_scripts]
synthale=synthale.cli:main
synthale=synthale.cli:cli
''',
classifiers=[
'Development Status :: 4 - Beta',

View file

@ -14,3 +14,5 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
VERSION = '0.0.1'

View file

@ -15,12 +15,32 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import platform
import click
from synthale import VERSION
from synthale.recipes import load_file, load_all_files, write_recipes
@click.command()
@click.group()
def cli():
"""Synthale converts BeerXML files to markdown.
Copyright (C) 2019 Mike Shoup"""
pass
@cli.command()
def version():
"""Print version and exit."""
click.echo(
'Synthale version: {}\n'
'Python version: {}'.format(VERSION, platform.python_version())
)
@cli.command()
@click.option(
'--vol-unit', '-v',
type=click.Choice(('gallons', 'liters')),
@ -47,7 +67,7 @@ from synthale.recipes import load_file, load_all_files, write_recipes
)
@click.argument('input_path')
@click.argument('output_path')
def main(
def generate(
input_path,
output_path,
vol_unit,

View file

@ -15,24 +15,27 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import platform
from click.testing import CliRunner
import pytest
from synthale.cli import main
from synthale import VERSION
from synthale.cli import cli
def test_main_help():
"""Test the help output of the main CLI command."""
def test_cli_help():
"""Test the help output of the cli CLI command."""
runner = CliRunner()
result = runner.invoke(main, ['--help'])
result = runner.invoke(cli, ['generate', '--help'])
assert 'INPUT_PATH' in result.output
assert 'OUTPUT_PATH' in result.output
def test_main_directory(tmpdir, md_recipes):
def test_cli_directory(tmpdir, md_recipes):
"""Test command where input is a directory."""
runner = CliRunner()
result = runner.invoke(main, ['tests/recipes', str(tmpdir)])
result = runner.invoke(cli, ['generate', 'tests/recipes', str(tmpdir)])
assert result.exit_code == 0
assert result.output.startswith(
@ -44,10 +47,14 @@ def test_main_directory(tmpdir, md_recipes):
assert path.read() == recipe.markdown
def test_main_file(tmpdir):
def test_cli_file(tmpdir):
"""Test command where input is a file."""
runner = CliRunner()
result = runner.invoke(main, ['tests/recipes/weizen.xml', str(tmpdir)])
result = runner.invoke(cli, [
'generate',
'tests/recipes/weizen.xml',
str(tmpdir)
])
assert result.exit_code == 0
assert result.output.startswith(
@ -72,16 +79,29 @@ def test_main_file(tmpdir):
('--temp-unit', 'fahrenheit', '| 152.0 °F |'),
('--temp-unit', 'celsius', '| 66.7 °C |')
))
def test_main_units(tmpdir, option, flag, expected):
def test_cli_units(tmpdir, option, flag, expected):
"""Test units options."""
runner = CliRunner()
result = runner.invoke(
main, [option, flag, 'tests/recipes/coffee-stout.xml', str(tmpdir)]
)
result = runner.invoke(cli, [
'generate',
option,
flag,
'tests/recipes/coffee-stout.xml',
str(tmpdir)
])
assert result.exit_code == 0
path = tmpdir.join('coffee_stout.md')
result = path.read()
print(result)
assert expected in result
assert expected in path.read()
def test_cli_version():
"""Test version output."""
runner = CliRunner()
result = runner.invoke(cli, ['version'])
assert result.exit_code == 0
assert result.output.startswith(
'Synthale version: {}\n'
'Python version: {}'.format(VERSION, platform.python_version())
)