1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

onepassword lookup: fix unit tests (#6041)

Fix unit tests.
This commit is contained in:
Felix Fontein 2023-02-22 23:01:01 +01:00 committed by GitHub
parent e348d28559
commit a7e8e95b50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,19 +12,19 @@ from ansible_collections.community.general.plugins.lookup.onepassword import One
@pytest.mark.parametrize(
("args", "out", "expected_call_args", "expected"),
("args", "out", "expected_call_args", "expected_call_kwargs", "expected"),
(
([], "list of accounts", ["account", "get"], True,),
(["acme"], "list of accounts", ["account", "get", "--account", "acme.1password.com"], True,),
([], "", ["account", "list"], False,),
([], "list of accounts", ["account", "get"], {"ignore_errors": True}, True,),
(["acme"], "list of accounts", ["account", "get", "--account", "acme.1password.com"], {"ignore_errors": True}, True,),
([], "", ["account", "list"], {}, False,),
)
)
def test_assert_logged_in(mocker, args, out, expected_call_args, expected):
def test_assert_logged_in(mocker, args, out, expected_call_args, expected_call_kwargs, expected):
mocker.patch.object(OnePassCLIv2, "_run", return_value=[0, out, ""])
op_cli = OnePassCLIv2(*args)
result = op_cli.assert_logged_in()
op_cli._run.assert_called_with(expected_call_args)
op_cli._run.assert_called_with(expected_call_args, **expected_call_kwargs)
assert result == expected