moulinette/test/test_actionsmap.py

309 lines
9.8 KiB
Python
Raw Normal View History

import pytest
from moulinette.actionsmap import (
CommentParameter,
AskParameter,
2019-12-28 16:31:23 +01:00
PasswordParameter,
PatternParameter,
RequiredParameter,
2019-12-28 16:31:23 +01:00
ExtraArgumentParser,
2019-11-25 17:21:13 +01:00
ActionsMap,
)
2019-12-28 16:31:23 +01:00
from moulinette.core import MoulinetteError
from moulinette import m18n, Moulinette
@pytest.fixture
def iface():
class DummyInterface:
def prompt():
pass
return DummyInterface()
def test_comment_parameter_bad_bool_value(iface, caplog):
comment = CommentParameter(iface)
2019-11-25 17:21:13 +01:00
assert comment.validate(True, "a") == "a"
assert any("expecting a non-empty string" in message for message in caplog.messages)
def test_comment_parameter_bad_empty_string(iface, caplog):
comment = CommentParameter(iface)
2019-11-25 17:21:13 +01:00
assert comment.validate("", "a") == "a"
assert any("expecting a non-empty string" in message for message in caplog.messages)
def test_comment_parameter_bad_type(iface):
comment = CommentParameter(iface)
with pytest.raises(TypeError):
2019-11-25 17:21:13 +01:00
comment.validate({}, "b")
2019-12-28 16:31:23 +01:00
def test_ask_parameter_str_value(iface, caplog):
ask = AskParameter(iface)
assert ask.validate("a", "a") == "a"
assert not len(caplog.messages)
def test_ask_parameter_bad_bool_value(iface, caplog):
ask = AskParameter(iface)
2019-11-25 17:21:13 +01:00
assert ask.validate(True, "a") == "a"
assert any("expecting a non-empty string" in message for message in caplog.messages)
def test_ask_parameter_bad_empty_string(iface, caplog):
ask = AskParameter(iface)
2019-11-25 17:21:13 +01:00
assert ask.validate("", "a") == "a"
assert any("expecting a non-empty string" in message for message in caplog.messages)
def test_ask_parameter_bad_type(iface):
ask = AskParameter(iface)
with pytest.raises(TypeError):
2019-11-25 17:21:13 +01:00
ask.validate({}, "b")
2019-12-28 16:31:23 +01:00
def test_ask_parameter(iface, mocker):
ask = AskParameter(iface)
arg = ask("foobar", "a", "a")
assert arg == "a"
from moulinette.core import Moulinette18n
2020-01-02 16:41:21 +01:00
Moulinette._interface = iface
2020-01-02 16:41:21 +01:00
mocker.patch.object(Moulinette18n, "n", return_value="awesome_test")
mocker.patch.object(iface, "prompt", return_value="awesome_test")
2019-12-28 16:31:23 +01:00
arg = ask("foobar", "a", None)
assert arg == "awesome_test"
def test_password_parameter(iface, mocker):
ask = PasswordParameter(iface)
arg = ask("foobar", "a", "a")
assert arg == "a"
from moulinette.core import Moulinette18n
2020-01-02 16:41:21 +01:00
Moulinette._interface = iface
2020-01-02 16:41:21 +01:00
mocker.patch.object(Moulinette18n, "n", return_value="awesome_test")
mocker.patch.object(iface, "prompt", return_value="awesome_test")
2019-12-28 16:31:23 +01:00
arg = ask("foobar", "a", None)
assert arg == "awesome_test"
def test_pattern_parameter_bad_str_value(iface, caplog):
pattern = PatternParameter(iface)
2019-11-25 17:21:13 +01:00
assert pattern.validate("", "a") == ["", "pattern_not_match"]
assert any("expecting a list" in message for message in caplog.messages)
2019-11-25 17:21:13 +01:00
@pytest.mark.parametrize(
"iface", [[], ["pattern_alone"], ["pattern", "message", "extra stuff"]]
)
def test_pattern_parameter_bad_list_len(iface):
pattern = PatternParameter(iface)
with pytest.raises(TypeError):
2019-11-25 17:21:13 +01:00
pattern.validate(iface, "a")
2019-12-28 16:31:23 +01:00
def test_pattern_parameter(iface, caplog, mocker):
pattern = PatternParameter(iface)
arg = pattern(["foo", "foobar"], "foo_name", "foo_value")
assert arg == "foo_value"
error = "error_message"
mocker.patch("moulinette.Moulinette18n.n", return_value=error)
with pytest.raises(MoulinetteError) as exception:
pattern(["foo", "message"], "foo_name", "not_match")
translation = m18n.g("invalid_argument", argument="foo_name", error=error)
expected_msg = translation.format(argument="foo_name", error=error)
assert expected_msg in str(exception)
assert any("doesn't match pattern" in message for message in caplog.messages)
def test_required_paremeter(iface):
required = RequiredParameter(iface)
arg = required(True, "a", "a")
assert arg == "a"
assert required.validate(True, "a")
assert not required.validate(False, "a")
def test_required_paremeter_bad_type(iface):
required = RequiredParameter(iface)
with pytest.raises(TypeError):
required.validate("a", "a")
with pytest.raises(TypeError):
required.validate(1, "a")
with pytest.raises(TypeError):
required.validate([], "a")
with pytest.raises(TypeError):
required.validate({}, "a")
def test_required_paremeter_missing_value(iface, caplog):
required = RequiredParameter(iface)
with pytest.raises(MoulinetteError) as exception:
2019-11-25 17:21:13 +01:00
required(True, "a", "")
2019-12-28 16:31:23 +01:00
translation = m18n.g("argument_required", argument="a")
expected_msg = translation.format(argument="a")
assert expected_msg in str(exception)
assert any("is required" in message for message in caplog.messages)
def test_actions_map_unknown_authenticator(monkeypatch, tmp_path):
2021-06-13 18:51:13 +02:00
from moulinette.interfaces.api import ActionsMapParser
2021-08-27 18:44:39 +02:00
2021-06-13 18:51:13 +02:00
amap = ActionsMap(ActionsMapParser())
with pytest.raises(MoulinetteError) as exception:
amap.get_authenticator("unknown")
assert "No module named" in str(exception)
2019-12-28 16:31:23 +01:00
def test_extra_argument_parser_add_argument(iface):
extra_argument_parse = ExtraArgumentParser(iface)
extra_argument_parse.add_argument("Test", "foo", {"ask": "lol"})
assert "Test" in extra_argument_parse._extra_params
assert "foo" in extra_argument_parse._extra_params["Test"]
assert "ask" in extra_argument_parse._extra_params["Test"]["foo"]
assert extra_argument_parse._extra_params["Test"]["foo"]["ask"] == "lol"
extra_argument_parse = ExtraArgumentParser(iface)
extra_argument_parse.add_argument("_global", "foo", {"ask": "lol"})
assert "_global" in extra_argument_parse._extra_params
assert "foo" in extra_argument_parse._extra_params["_global"]
assert "ask" in extra_argument_parse._extra_params["_global"]["foo"]
assert extra_argument_parse._extra_params["_global"]["foo"]["ask"] == "lol"
2019-12-28 16:31:23 +01:00
def test_extra_argument_parser_add_argument_bad_arg(iface):
extra_argument_parse = ExtraArgumentParser(iface)
with pytest.raises(MoulinetteError) as exception:
extra_argument_parse.add_argument("_global", "foo", {"ask": 1})
2019-12-28 16:31:23 +01:00
2021-12-24 01:18:03 +01:00
expected_msg = "unable to validate extra parameter '{}' for argument '{}': {}".format(
2021-01-25 18:51:40 +01:00
"ask",
"foo",
"parameter value must be a string, got 1",
)
2019-12-28 16:31:23 +01:00
assert expected_msg in str(exception)
extra_argument_parse = ExtraArgumentParser(iface)
extra_argument_parse.add_argument("_global", "foo", {"error": 1})
2019-12-28 16:31:23 +01:00
assert "_global" in extra_argument_parse._extra_params
assert "foo" in extra_argument_parse._extra_params["_global"]
assert not len(extra_argument_parse._extra_params["_global"]["foo"])
2019-12-28 16:31:23 +01:00
def test_extra_argument_parser_parse_args(iface, mocker):
extra_argument_parse = ExtraArgumentParser(iface)
extra_argument_parse.add_argument("_global", "foo", {"ask": "lol"})
extra_argument_parse.add_argument("_global", "foo2", {"ask": "lol2"})
2020-01-02 16:41:21 +01:00
extra_argument_parse.add_argument(
"_global", "bar", {"password": "lul", "ask": "lul"}
2020-01-02 16:41:21 +01:00
)
2019-12-28 16:31:23 +01:00
2020-01-02 16:41:21 +01:00
args = extra_argument_parse.parse_args(
"_global", {"foo": 1, "foo2": ["a", "b", {"foobar": True}], "bar": "rab"}
2020-01-02 16:41:21 +01:00
)
2019-12-28 16:31:23 +01:00
assert "foo" in args
assert args["foo"] == 1
assert "foo2" in args
assert args["foo2"] == ["a", "b", {"foobar": True}]
assert "bar" in args
assert args["bar"] == "rab"
def test_actions_map_api():
from moulinette.interfaces.api import ActionsMapParser
parser = ActionsMapParser()
amap = ActionsMap(parser)
2019-12-28 16:31:23 +01:00
2021-06-13 18:51:13 +02:00
assert amap.main_namespace == "moulitest"
assert amap.default_authentication == "dummy"
2020-01-02 16:41:21 +01:00
assert ("GET", "/test-auth/default") in amap.parser.routes
assert ("POST", "/test-auth/subcat/post") in amap.parser.routes
2019-12-28 16:31:23 +01:00
assert parser.auth_method(None, ("GET", "/test-auth/default")) == "dummy"
assert parser.auth_method(None, ("GET", "/test-auth/only-api")) == "dummy"
assert parser.auth_method(None, ("GET", "/test-auth/only-cli")) is None
2019-12-28 16:31:23 +01:00
2021-01-20 05:35:35 +01:00
def test_actions_map_import_error(mocker):
2019-12-28 16:31:23 +01:00
from moulinette.interfaces.api import ActionsMapParser
2020-05-01 14:00:10 +02:00
amap = ActionsMap(ActionsMapParser())
2019-12-28 16:31:23 +01:00
from moulinette.core import MoulinetteLock
2020-01-02 16:41:21 +01:00
mocker.patch.object(MoulinetteLock, "_is_son_of", return_value=False)
2019-12-28 16:31:23 +01:00
2020-05-12 19:13:30 +02:00
orig_import = __import__
def import_mock(name, globals={}, locals={}, fromlist=[], level=-1):
if name == "moulitest.testauth":
mocker.stopall()
2021-01-25 18:51:40 +01:00
raise ImportError("Yoloswag")
2020-05-12 19:13:30 +02:00
return orig_import(name, globals, locals, fromlist, level)
2021-01-20 05:35:35 +01:00
mocker.patch("builtins.__import__", side_effect=import_mock)
2019-12-28 16:31:23 +01:00
with pytest.raises(MoulinetteError) as exception:
2020-01-02 16:41:21 +01:00
amap.process({}, timeout=30, route=("GET", "/test-auth/none"))
2019-12-28 16:31:23 +01:00
2021-12-24 01:18:03 +01:00
expected_msg = "unable to load function {: }.{} because: {}".format(
2021-01-25 18:51:40 +01:00
"moulitest",
"testauth_none",
"Yoloswag",
)
2019-12-28 16:31:23 +01:00
assert expected_msg in str(exception)
def test_actions_map_cli():
from moulinette.interfaces.cli import ActionsMapParser
import argparse
2020-01-02 16:41:21 +01:00
top_parser = argparse.ArgumentParser(add_help=False)
top_parser.add_argument(
2020-01-02 16:41:21 +01:00
"--debug",
action="store_true",
default=False,
help="Log and print debug messages",
)
parser = ActionsMapParser(top_parser=top_parser)
amap = ActionsMap(parser)
2020-01-02 16:41:21 +01:00
2021-06-13 18:51:13 +02:00
assert amap.main_namespace == "moulitest"
assert amap.default_authentication == "dummy"
2020-01-02 16:41:21 +01:00
assert "testauth" in amap.parser._subparsers.choices
assert "none" in amap.parser._subparsers.choices["testauth"]._actions[1].choices
assert "subcat" in amap.parser._subparsers.choices["testauth"]._actions[1].choices
assert (
"default"
in amap.parser._subparsers.choices["testauth"]
._actions[1]
.choices["subcat"]
._actions[1]
.choices
)
2019-12-28 16:31:23 +01:00
assert parser.auth_method(["testauth", "default"]) == "dummy"
assert parser.auth_method(["testauth", "only-api"]) is None
assert parser.auth_method(["testauth", "only-cli"]) == "dummy"