borgmatic/tests/unit/commands/test_completions.py

125 lines
4.0 KiB
Python
Raw Normal View History

from argparse import Action
2023-05-06 18:16:45 +00:00
from collections import namedtuple
from typing import Tuple
import pytest
2023-05-06 22:50:37 +00:00
from borgmatic.commands import completion as module
2023-05-06 18:16:45 +00:00
OptionType = namedtuple('OptionType', ['file', 'choice', 'unknown_required'])
TestCase = Tuple[Action, OptionType]
test_data: list[TestCase] = [
(Action('--flag', 'flag'), OptionType(file=False, choice=False, unknown_required=False)),
*(
(
Action('--flag', 'flag', metavar=metavar),
OptionType(file=True, choice=False, unknown_required=False),
)
for metavar in ('FILENAME', 'PATH')
),
(
Action('--flag', dest='config_paths'),
OptionType(file=True, choice=False, unknown_required=False),
),
(
Action('--flag', 'flag', metavar='OTHER'),
OptionType(file=False, choice=False, unknown_required=False),
),
(
Action('--flag', 'flag', choices=['a', 'b']),
OptionType(file=False, choice=True, unknown_required=False),
),
(
Action('--flag', 'flag', choices=['a', 'b'], type=str),
OptionType(file=False, choice=True, unknown_required=True),
),
(
Action('--flag', 'flag', choices=None),
OptionType(file=False, choice=False, unknown_required=False),
),
(
Action('--flag', 'flag', required=True),
OptionType(file=False, choice=False, unknown_required=True),
),
*(
(
Action('--flag', 'flag', nargs=nargs),
OptionType(file=False, choice=False, unknown_required=True),
)
for nargs in ('+', '*')
),
*(
(
Action('--flag', 'flag', metavar=metavar),
OptionType(file=False, choice=False, unknown_required=True),
)
for metavar in ('PATTERN', 'KEYS', 'N')
),
*(
(
Action('--flag', 'flag', type=type, default=None),
OptionType(file=False, choice=False, unknown_required=True),
)
for type in (int, str)
),
(
Action('--flag', 'flag', type=int, default=1),
OptionType(file=False, choice=False, unknown_required=False),
),
(
Action('--flag', 'flag', type=str, required=True, metavar='PATH'),
OptionType(file=True, choice=False, unknown_required=True),
),
(
Action('--flag', 'flag', type=str, required=True, metavar='PATH', default='/dev/null'),
OptionType(file=True, choice=False, unknown_required=True),
),
(
Action('--flag', 'flag', type=str, required=False, metavar='PATH', default='/dev/null'),
OptionType(file=True, choice=False, unknown_required=False),
),
]
2023-05-06 18:16:45 +00:00
@pytest.mark.parametrize('action, option_type', test_data)
def test_has_file_options_detects_file_options(action: Action, option_type: OptionType):
2023-05-06 22:50:37 +00:00
assert module.has_file_options(action) == option_type.file
2023-05-06 17:56:54 +00:00
2023-05-06 18:16:45 +00:00
@pytest.mark.parametrize('action, option_type', test_data)
def test_has_choice_options_detects_choice_options(action: Action, option_type: OptionType):
2023-05-06 22:50:37 +00:00
assert module.has_choice_options(action) == option_type.choice
2023-05-06 17:56:54 +00:00
2023-05-06 18:16:45 +00:00
@pytest.mark.parametrize('action, option_type', test_data)
2023-05-06 17:56:54 +00:00
def test_has_unknown_required_param_options_detects_unknown_required_param_options(
2023-05-06 18:16:45 +00:00
action: Action, option_type: OptionType
2023-05-06 17:56:54 +00:00
):
2023-05-06 22:50:37 +00:00
assert module.has_unknown_required_param_options(action) == option_type.unknown_required
2023-05-06 18:16:45 +00:00
@pytest.mark.parametrize('action, option_type', test_data)
def test_has_exact_options_detects_exact_options(action: Action, option_type: OptionType):
2023-05-06 22:50:37 +00:00
assert module.has_exact_options(action) == (True in option_type)
@pytest.mark.parametrize('action, option_type', test_data)
2023-05-06 22:56:50 +00:00
def test_exact_options_completion_produces_reasonable_completions(
action: Action, option_type: OptionType
):
2023-05-06 22:50:37 +00:00
completion = module.exact_options_completion(action)
2023-05-06 22:49:07 +00:00
if True in option_type:
assert completion.startswith('\ncomplete -c borgmatic')
else:
assert completion == ''
2023-05-06 18:51:35 +00:00
2023-05-06 22:46:15 +00:00
def test_dedent_strip_as_tuple_does_not_raise():
2023-05-06 22:50:37 +00:00
module.dedent_strip_as_tuple(
2023-05-06 18:51:35 +00:00
'''
a
b
'''
)