mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-23 12:19:15 +00:00
Unflatmap community.general (#5461)
* Move files. * Update imports and references. * Move wrongly placed files. * Reverse redirects, deprecate long → short name redirects. * Simplify contribution guidelines for new modules. * Rewrite BOTMETA. * Add changelog fragment. * Fix ignore.txt files.
This commit is contained in:
parent
2b0bebc8fc
commit
b531ecdc9b
1033 changed files with 4802 additions and 1989 deletions
36
tests/unit/plugins/modules/test_macports.py
Normal file
36
tests/unit/plugins/modules/test_macports.py
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# Copyright (c) Ansible project
|
||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from ansible.module_utils import basic
|
||||
from ansible_collections.community.general.plugins.modules import macports
|
||||
|
||||
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
|
||||
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)
|
||||
git @2.28.1_0+credential_osxkeychain+diff_highlight+doc+pcre+perl5_28
|
||||
''', True, True, id='2 versions installed, one active'),
|
||||
]
|
||||
|
||||
|
||||
@pytest.mark.parametrize("run_cmd_return_val, present_expected, active_expected", 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, '')
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue