1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-25 21:22:44 +00:00

Reformat everything.

This commit is contained in:
Felix Fontein 2025-11-01 12:08:41 +01:00
parent 3f2213791a
commit 340ff8586d
1008 changed files with 61301 additions and 58309 deletions

View file

@ -11,15 +11,35 @@ import pytest
TESTED_MODULE = macports.__name__
QUERY_PORT_TEST_CASES = [
pytest.param('', False, False, id='Not installed'),
pytest.param(' git @2.29.2_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28', True, False, id='Installed but not active'),
pytest.param(' git @2.29.2_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28 (active)', True, True, id='Installed and active'),
pytest.param(''' git @2.29.2_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28
pytest.param("", False, False, id="Not installed"),
pytest.param(
" git @2.29.2_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28",
True,
False,
id="Installed but not active",
),
pytest.param(
" git @2.29.2_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28 (active)",
True,
True,
id="Installed and active",
),
pytest.param(
""" git @2.29.2_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28
git @2.28.1_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28
''', True, False, id='2 versions installed, neither active'),
pytest.param(''' git @2.29.2_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28 (active)
""",
True,
False,
id="2 versions installed, neither active",
),
pytest.param(
""" git @2.29.2_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28 (active)
git @2.28.1_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28
''', True, True, id='2 versions installed, one active'),
""",
True,
True,
id="2 versions installed, one active",
),
]
@ -27,8 +47,8 @@ QUERY_PORT_TEST_CASES = [
def test_macports_query_port(mocker, run_cmd_return_val, present_expected, active_expected):
module = mocker.Mock()
run_command = mocker.Mock()
run_command.return_value = (0, run_cmd_return_val, '')
run_command.return_value = (0, run_cmd_return_val, "")
module.run_command = run_command
assert macports.query_port(module, 'port', 'git', state="present") == present_expected
assert macports.query_port(module, 'port', 'git', state="active") == active_expected
assert macports.query_port(module, "port", "git", state="present") == present_expected
assert macports.query_port(module, "port", "git", state="active") == active_expected