mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-27 00:37:18 +00:00
* allow to use one application for multiple repositories * update tests * handle None append argument everywhere * rewrite repository definition logic * drop optional flags from docs * support of new schema in systemd units * add migration docs and ability to migrate tree automatically * use repostory id instead * verbose multiarchitectureerror * object path support for s3 sync * fix tests after rebase
55 lines
1.6 KiB
Python
55 lines
1.6 KiB
Python
import argparse
|
|
|
|
from pytest_mock import MockerFixture
|
|
|
|
from ahriman.application.ahriman import _parser
|
|
from ahriman.application.handlers import Help
|
|
from ahriman.core.configuration import Configuration
|
|
|
|
|
|
def _default_args(args: argparse.Namespace) -> argparse.Namespace:
|
|
"""
|
|
default arguments for these test cases
|
|
|
|
Args:
|
|
args(argparse.Namespace): command line arguments fixture
|
|
|
|
Returns:
|
|
argparse.Namespace: generated arguments for these test cases
|
|
"""
|
|
args.parser = _parser
|
|
args.command = None
|
|
return args
|
|
|
|
|
|
def test_run(args: argparse.Namespace, configuration: Configuration, mocker: MockerFixture) -> None:
|
|
"""
|
|
must run command
|
|
"""
|
|
args = _default_args(args)
|
|
parse_mock = mocker.patch("argparse.ArgumentParser.parse_args")
|
|
|
|
_, repository_id = configuration.check_loaded()
|
|
Help.run(args, repository_id, configuration, report=False)
|
|
parse_mock.assert_called_once_with(["--help"])
|
|
|
|
|
|
def test_run_command(args: argparse.Namespace, configuration: Configuration, mocker: MockerFixture) -> None:
|
|
"""
|
|
must run command for specific subcommand
|
|
"""
|
|
args = _default_args(args)
|
|
args.command = "aur-search"
|
|
parse_mock = mocker.patch("argparse.ArgumentParser.parse_args")
|
|
|
|
_, repository_id = configuration.check_loaded()
|
|
Help.run(args, repository_id, configuration, report=False)
|
|
parse_mock.assert_called_once_with(["aur-search", "--help"])
|
|
|
|
|
|
def test_disallow_multi_architecture_run() -> None:
|
|
"""
|
|
must not allow multi architecture run
|
|
"""
|
|
assert not Help.ALLOW_MULTI_ARCHITECTURE_RUN
|