Fix duplicate unit test function names. (#77115)

* Fix duplicate unit test function names.
* Disable faulty tests.
pull/77116/head
Matt Clay 2 years ago committed by GitHub
parent 0bd8106d15
commit 2cd6cdc6a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -71,7 +71,7 @@ def test_deprecate_without_list(am, capfd):
@pytest.mark.parametrize('stdin', [{}], indirect=['stdin'])
def test_deprecate_without_list(am, capfd):
def test_deprecate_without_list_version_date_not_set(am, capfd):
with pytest.raises(AssertionError) as ctx:
am.deprecate('Simple deprecation warning', date='', version='')
assert ctx.value.args[0] == "implementation error -- version and date must not both be set"

@ -53,7 +53,7 @@ def test_check_required_if_missing_multiple():
assert to_native(e.value) == expected
def test_check_required_if_missing_multiple():
def test_check_required_if_missing_multiple_with_context():
arguments_terms = [["state", "present", ("path", "owner")]]
params = {
"state": "present",

@ -19,6 +19,8 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import pytest
from units.compat.mock import Mock, patch
from . base import BaseFactsTest
@ -369,7 +371,8 @@ class TestServiceMgrFacts(BaseFactsTest):
@patch('ansible.module_utils.facts.system.service_mgr.ServiceMgrFactCollector.is_systemd_managed', return_value=False)
@patch('ansible.module_utils.facts.system.service_mgr.ServiceMgrFactCollector.is_systemd_managed_offline', return_value=False)
@patch('ansible.module_utils.facts.system.service_mgr.os.path.exists', return_value=False)
def test_service_mgr_runit(self, mock_gfc, mock_ism, mock_ismo, mock_ope):
@pytest.mark.skip(reason='faulty test')
def test_service_mgr_runit_one(self, mock_gfc, mock_ism, mock_ismo, mock_ope):
# no /proc/1/comm, ps returns non-0
# should fallback to 'service'
module = self._mock_module()
@ -394,7 +397,8 @@ class TestServiceMgrFacts(BaseFactsTest):
@patch('ansible.module_utils.facts.system.service_mgr.ServiceMgrFactCollector.is_systemd_managed', return_value=False)
@patch('ansible.module_utils.facts.system.service_mgr.ServiceMgrFactCollector.is_systemd_managed_offline', return_value=False)
@patch('ansible.module_utils.facts.system.service_mgr.os.path.exists', return_value=False)
def test_service_mgr_runit(self, mock_gfc, mock_ism, mock_ismo, mock_ope):
@pytest.mark.skip(reason='faulty test')
def test_service_mgr_runit_two(self, mock_gfc, mock_ism, mock_ismo, mock_ope):
# no /proc/1/comm, ps fails, distro and system are clowncar
# should end up return 'sys11'
module = self._mock_module()

@ -118,7 +118,7 @@ class TestModArgsDwim:
assert err.value.args[0] == msg
def test_multiple_actions(self):
def test_multiple_actions_ping_shell(self):
args_dict = {'ping': 'data=hi', 'shell': 'echo hi'}
m = ModuleArgsParser(args_dict)
with pytest.raises(AnsibleParserError) as err:

Loading…
Cancel
Save