mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
update tests
This commit is contained in:
parent
0e083ad600
commit
2b2f24449f
1 changed files with 184 additions and 0 deletions
184
tests/test_parse_args.py
Normal file
184
tests/test_parse_args.py
Normal file
|
@ -0,0 +1,184 @@
|
||||||
|
from jrnl.cli import parse_args
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
import shlex
|
||||||
|
|
||||||
|
|
||||||
|
def cli_as_dict(str):
|
||||||
|
cli = shlex.split(str)
|
||||||
|
args = parse_args(cli)
|
||||||
|
return vars(args)
|
||||||
|
|
||||||
|
|
||||||
|
def expected_args(**kwargs):
|
||||||
|
default_args = {
|
||||||
|
"contains": None,
|
||||||
|
"debug": False,
|
||||||
|
"decrypt": False,
|
||||||
|
"delete": False,
|
||||||
|
"diagnostic": False,
|
||||||
|
"edit": False,
|
||||||
|
"encrypt": False,
|
||||||
|
"end_date": None,
|
||||||
|
"excluded": [],
|
||||||
|
"export": False,
|
||||||
|
"import_": False,
|
||||||
|
"input": False,
|
||||||
|
"limit": None,
|
||||||
|
"ls": False,
|
||||||
|
"on_date": None,
|
||||||
|
"output": False,
|
||||||
|
"short": False,
|
||||||
|
"starred": False,
|
||||||
|
"start_date": None,
|
||||||
|
"strict": False,
|
||||||
|
"tags": False,
|
||||||
|
"text": [],
|
||||||
|
"version": False,
|
||||||
|
}
|
||||||
|
return {**default_args, **kwargs}
|
||||||
|
|
||||||
|
|
||||||
|
def test_empty():
|
||||||
|
assert cli_as_dict("") == expected_args()
|
||||||
|
|
||||||
|
|
||||||
|
def test_contains_alone():
|
||||||
|
assert cli_as_dict("-contains whatever") == expected_args(contains="whatever")
|
||||||
|
|
||||||
|
|
||||||
|
def test_debug_alone():
|
||||||
|
assert cli_as_dict("--debug") == expected_args(debug=True)
|
||||||
|
assert cli_as_dict("-d") == expected_args(debug=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_delete_alone():
|
||||||
|
assert cli_as_dict("--delete") == expected_args(delete=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_diagnostic_alone():
|
||||||
|
assert cli_as_dict("--diagnostic") == expected_args(diagnostic=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_edit_alone():
|
||||||
|
assert cli_as_dict("--edit") == expected_args(edit=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_encrypt_alone():
|
||||||
|
assert cli_as_dict("--encrypt 'test.txt'") == expected_args(encrypt="test.txt")
|
||||||
|
|
||||||
|
|
||||||
|
def test_end_date_alone():
|
||||||
|
expected = expected_args(end_date="2020-01-01")
|
||||||
|
assert expected == cli_as_dict("-until 2020-01-01")
|
||||||
|
assert expected == cli_as_dict("-to 2020-01-01")
|
||||||
|
|
||||||
|
|
||||||
|
def test_not_alone():
|
||||||
|
assert cli_as_dict("-not test") == expected_args(excluded=["test"])
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.xfail
|
||||||
|
def test_not_multiple_alone():
|
||||||
|
assert cli_as_dict("-not one -not two") == expected_args(excluded=["one", "two"])
|
||||||
|
assert cli_as_dict("-not one -not two -not three") == expected_args(
|
||||||
|
excluded=["one", "two", "three"]
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def test_export_alone():
|
||||||
|
assert cli_as_dict("--export json") == expected_args(export="json")
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.xfail
|
||||||
|
def test_export_defaults_to_jrnl():
|
||||||
|
assert cli_as_dict("--export") == expected_args(import_="jrnl")
|
||||||
|
|
||||||
|
|
||||||
|
def test_import_alone():
|
||||||
|
assert cli_as_dict("--import jrnl") == expected_args(import_="jrnl")
|
||||||
|
|
||||||
|
|
||||||
|
def test_import_defaults_to_jrnl():
|
||||||
|
assert cli_as_dict("--import") == expected_args(import_="jrnl")
|
||||||
|
|
||||||
|
|
||||||
|
def test_input_flag_alone():
|
||||||
|
assert cli_as_dict("-i test.txt") == expected_args(input="test.txt")
|
||||||
|
assert cli_as_dict("-i 'lorem ipsum.txt'") == expected_args(input="lorem ipsum.txt")
|
||||||
|
|
||||||
|
|
||||||
|
def test_output_flag_alone():
|
||||||
|
assert cli_as_dict("-o test.txt") == expected_args(output="test.txt")
|
||||||
|
assert cli_as_dict("-o 'lorem ipsum.txt'") == expected_args(
|
||||||
|
output="lorem ipsum.txt"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def test_limit_alone():
|
||||||
|
assert cli_as_dict("-n 5") == expected_args(limit=5)
|
||||||
|
assert cli_as_dict("-n 999") == expected_args(limit=999)
|
||||||
|
|
||||||
|
|
||||||
|
def test_limit_shorthand_alone():
|
||||||
|
assert cli_as_dict("-5") == expected_args(limit=5)
|
||||||
|
assert cli_as_dict("-999") == expected_args(limit=999)
|
||||||
|
|
||||||
|
|
||||||
|
def test_list_alone():
|
||||||
|
assert cli_as_dict("-ls") == expected_args(ls=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_on_date_alone():
|
||||||
|
assert cli_as_dict("-on 'saturday'") == expected_args(on_date="saturday")
|
||||||
|
|
||||||
|
|
||||||
|
def test_short_alone():
|
||||||
|
assert cli_as_dict("--short") == expected_args(short=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_starred_alone():
|
||||||
|
assert cli_as_dict("-starred") == expected_args(starred=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_start_date_alone():
|
||||||
|
assert cli_as_dict("-from 2020-01-01") == expected_args(start_date="2020-01-01")
|
||||||
|
assert cli_as_dict("-from 'January 1st'") == expected_args(start_date="January 1st")
|
||||||
|
|
||||||
|
|
||||||
|
def test_and_alone():
|
||||||
|
assert cli_as_dict("-and") == expected_args(strict=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_tags_alone():
|
||||||
|
assert cli_as_dict("--tags") == expected_args(tags=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_text_alone():
|
||||||
|
assert cli_as_dict("lorem ipsum dolor sit amet") == expected_args(
|
||||||
|
text=["lorem", "ipsum", "dolor", "sit", "amet"]
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def test_version_alone():
|
||||||
|
assert cli_as_dict("--version") == expected_args(version=True)
|
||||||
|
|
||||||
|
|
||||||
|
# @see https://github.com/jrnl-org/jrnl/issues/520
|
||||||
|
@pytest.mark.xfail
|
||||||
|
def test_and_ordering():
|
||||||
|
result = expected_args(strict=True, text=["second", "@oldtag", "@newtag"])
|
||||||
|
assert result == cli_as_dict("-and second @oldtag @newtag")
|
||||||
|
assert result == cli_as_dict("second @oldtag @newtag -and")
|
||||||
|
assert result == cli_as_dict("second -and @oldtag @newtag")
|
||||||
|
assert result == cli_as_dict("second @oldtag -and @newtag")
|
||||||
|
|
||||||
|
|
||||||
|
# @see https://github.com/jrnl-org/jrnl/issues/520
|
||||||
|
@pytest.mark.xfail
|
||||||
|
def test_edit_ordering():
|
||||||
|
result = expected_args(edit=True, text=["second", "@oldtag", "@newtag"])
|
||||||
|
assert result == cli_as_dict("--edit second @oldtag @newtag")
|
||||||
|
assert result == cli_as_dict("second @oldtag @newtag --edit")
|
||||||
|
assert result == cli_as_dict("second --edit @oldtag @newtag")
|
||||||
|
assert result == cli_as_dict("second @oldtag --edit @newtag")
|
Loading…
Add table
Reference in a new issue