mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
puppet: using yaml-specified unit tests (#7193)
This commit is contained in:
parent
14bc13ba3c
commit
41bd07e372
2 changed files with 207 additions and 203 deletions
|
@ -12,214 +12,26 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
import json
|
|
||||||
|
|
||||||
from collections import namedtuple
|
|
||||||
from ansible_collections.community.general.plugins.modules import puppet
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
|
from ansible_collections.community.general.plugins.modules import puppet as module
|
||||||
ModuleTestCase = namedtuple("ModuleTestCase", ["id", "input", "output", "run_command_calls"])
|
from .cmd_runner_test_utils import CmdRunnerTestHelper
|
||||||
RunCmdCall = namedtuple("RunCmdCall", ["command", "environ", "rc", "out", "err"])
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
with open("tests/unit/plugins/modules/test_puppet.yaml", "r") as TEST_CASES:
|
||||||
def patch_get_bin_path(mocker):
|
helper = CmdRunnerTestHelper(module.main, test_cases=TEST_CASES)
|
||||||
|
patch_bin = helper.cmd_fixture
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize('patch_ansible_module, testcase',
|
||||||
|
helper.testcases_params, ids=helper.testcases_ids,
|
||||||
|
indirect=['patch_ansible_module'])
|
||||||
|
@pytest.mark.usefixtures('patch_ansible_module')
|
||||||
|
def test_module(mocker, capfd, patch_bin, testcase):
|
||||||
"""
|
"""
|
||||||
Function used for mocking AnsibleModule.get_bin_path
|
Run unit tests for test cases listed in TEST_CASES
|
||||||
"""
|
|
||||||
def mockie(self, path, *args, **kwargs):
|
|
||||||
return "/testbin/{0}".format(path)
|
|
||||||
mocker.patch("ansible.module_utils.basic.AnsibleModule.get_bin_path", mockie)
|
|
||||||
|
|
||||||
|
|
||||||
TEST_CASES = [
|
|
||||||
ModuleTestCase(
|
|
||||||
id="puppet_agent_plain",
|
|
||||||
input={},
|
|
||||||
output=dict(changed=False),
|
|
||||||
run_command_calls=[
|
|
||||||
RunCmdCall(
|
|
||||||
command=["/testbin/puppet", "config", "print", "agent_disabled_lockfile"],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="blah, anything",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
RunCmdCall(
|
|
||||||
command=[
|
|
||||||
"/testbin/timeout", "-s", "9", "30m", "/testbin/puppet", "agent", "--onetime", "--no-daemonize",
|
|
||||||
"--no-usecacheonfailure", "--no-splay", "--detailed-exitcodes", "--verbose", "--color", "0"
|
|
||||||
],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
ModuleTestCase(
|
|
||||||
id="puppet_agent_certname",
|
|
||||||
input={"certname": "potatobox"},
|
|
||||||
output=dict(changed=False),
|
|
||||||
run_command_calls=[
|
|
||||||
RunCmdCall(
|
|
||||||
command=["/testbin/puppet", "config", "print", "agent_disabled_lockfile"],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="blah, anything",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
RunCmdCall(
|
|
||||||
command=[
|
|
||||||
"/testbin/timeout", "-s", "9", "30m", "/testbin/puppet", "agent", "--onetime", "--no-daemonize",
|
|
||||||
"--no-usecacheonfailure", "--no-splay", "--detailed-exitcodes", "--verbose", "--color", "0", "--certname=potatobox"
|
|
||||||
],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
ModuleTestCase(
|
|
||||||
id="puppet_agent_tags_abc",
|
|
||||||
input={"tags": ["a", "b", "c"]},
|
|
||||||
output=dict(changed=False),
|
|
||||||
run_command_calls=[
|
|
||||||
RunCmdCall(
|
|
||||||
command=["/testbin/puppet", "config", "print", "agent_disabled_lockfile"],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="blah, anything",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
RunCmdCall(
|
|
||||||
command=[
|
|
||||||
"/testbin/timeout", "-s", "9", "30m", "/testbin/puppet", "agent", "--onetime", "--no-daemonize",
|
|
||||||
"--no-usecacheonfailure", "--no-splay", "--detailed-exitcodes", "--verbose", "--color", "0", "--tags", "a,b,c"
|
|
||||||
],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
ModuleTestCase(
|
|
||||||
id="puppet_agent_skip_tags_def",
|
|
||||||
input={"skip_tags": ["d", "e", "f"]},
|
|
||||||
output=dict(changed=False),
|
|
||||||
run_command_calls=[
|
|
||||||
RunCmdCall(
|
|
||||||
command=["/testbin/puppet", "config", "print", "agent_disabled_lockfile"],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="blah, anything",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
RunCmdCall(
|
|
||||||
command=[
|
|
||||||
"/testbin/timeout", "-s", "9", "30m", "/testbin/puppet", "agent", "--onetime", "--no-daemonize",
|
|
||||||
"--no-usecacheonfailure", "--no-splay", "--detailed-exitcodes", "--verbose", "--color", "0", "--skip_tags", "d,e,f"
|
|
||||||
],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
ModuleTestCase(
|
|
||||||
id="puppet_agent_noop_false",
|
|
||||||
input={"noop": False},
|
|
||||||
output=dict(changed=False),
|
|
||||||
run_command_calls=[
|
|
||||||
RunCmdCall(
|
|
||||||
command=["/testbin/puppet", "config", "print", "agent_disabled_lockfile"],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="blah, anything",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
RunCmdCall(
|
|
||||||
command=[
|
|
||||||
"/testbin/timeout", "-s", "9", "30m", "/testbin/puppet", "agent", "--onetime", "--no-daemonize",
|
|
||||||
"--no-usecacheonfailure", "--no-splay", "--detailed-exitcodes", "--verbose", "--color", "0", "--no-noop"
|
|
||||||
],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
ModuleTestCase(
|
|
||||||
id="puppet_agent_noop_true",
|
|
||||||
input={"noop": True},
|
|
||||||
output=dict(changed=False),
|
|
||||||
run_command_calls=[
|
|
||||||
RunCmdCall(
|
|
||||||
command=["/testbin/puppet", "config", "print", "agent_disabled_lockfile"],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="blah, anything",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
RunCmdCall(
|
|
||||||
command=[
|
|
||||||
"/testbin/timeout", "-s", "9", "30m", "/testbin/puppet", "agent", "--onetime", "--no-daemonize",
|
|
||||||
"--no-usecacheonfailure", "--no-splay", "--detailed-exitcodes", "--verbose", "--color", "0", "--noop"
|
|
||||||
],
|
|
||||||
environ={'environ_update': {'LANGUAGE': 'C', 'LC_ALL': 'C'}, 'check_rc': False},
|
|
||||||
rc=0,
|
|
||||||
out="",
|
|
||||||
err="",
|
|
||||||
),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
]
|
|
||||||
TEST_CASES_IDS = [item.id for item in TEST_CASES]
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("patch_ansible_module, testcase",
|
|
||||||
[[x.input, x] for x in TEST_CASES],
|
|
||||||
ids=TEST_CASES_IDS,
|
|
||||||
indirect=["patch_ansible_module"])
|
|
||||||
@pytest.mark.usefixtures("patch_ansible_module")
|
|
||||||
def test_puppet(mocker, capfd, patch_get_bin_path, testcase):
|
|
||||||
"""
|
|
||||||
Run unit tests for test cases listen in TEST_CASES
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
run_cmd_calls = testcase.run_command_calls
|
with helper(testcase, mocker, capfd) as testcase_context:
|
||||||
|
testcase_context.run()
|
||||||
# Mock function used for running commands first
|
|
||||||
call_results = [(x.rc, x.out, x.err) for x in run_cmd_calls]
|
|
||||||
mock_run_command = mocker.patch(
|
|
||||||
"ansible.module_utils.basic.AnsibleModule.run_command",
|
|
||||||
side_effect=call_results)
|
|
||||||
|
|
||||||
# Try to run test case
|
|
||||||
with pytest.raises(SystemExit):
|
|
||||||
puppet.main()
|
|
||||||
|
|
||||||
out, err = capfd.readouterr()
|
|
||||||
results = json.loads(out)
|
|
||||||
print("testcase =\n%s" % str(testcase))
|
|
||||||
print("results =\n%s" % results)
|
|
||||||
|
|
||||||
assert mock_run_command.call_count == len(run_cmd_calls)
|
|
||||||
if mock_run_command.call_count:
|
|
||||||
call_args_list = [(item[0][0], item[1]) for item in mock_run_command.call_args_list]
|
|
||||||
expected_call_args_list = [(item.command, item.environ) for item in run_cmd_calls]
|
|
||||||
print("call args list =\n%s" % call_args_list)
|
|
||||||
print("expected args list =\n%s" % expected_call_args_list)
|
|
||||||
assert call_args_list == expected_call_args_list
|
|
||||||
|
|
||||||
assert results.get("changed", False) == testcase.output["changed"]
|
|
||||||
if "failed" in testcase:
|
|
||||||
assert results.get("failed", False) == testcase.output["failed"]
|
|
||||||
if "msg" in testcase:
|
|
||||||
assert results.get("msg", "") == testcase.output["msg"]
|
|
||||||
|
|
192
tests/unit/plugins/modules/test_puppet.yaml
Normal file
192
tests/unit/plugins/modules/test_puppet.yaml
Normal file
|
@ -0,0 +1,192 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright (c) Alexei Znamensky (russoz@gmail.com)
|
||||||
|
# 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
|
||||||
|
|
||||||
|
---
|
||||||
|
- id: puppet_agent_plain
|
||||||
|
input: {}
|
||||||
|
output:
|
||||||
|
changed: false
|
||||||
|
run_command_calls:
|
||||||
|
- command: [/testbin/puppet, config, print, agent_disabled_lockfile]
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: "blah, anything"
|
||||||
|
err: ""
|
||||||
|
- command:
|
||||||
|
- /testbin/timeout
|
||||||
|
- -s
|
||||||
|
- "9"
|
||||||
|
- 30m
|
||||||
|
- /testbin/puppet
|
||||||
|
- agent
|
||||||
|
- --onetime
|
||||||
|
- --no-daemonize
|
||||||
|
- --no-usecacheonfailure
|
||||||
|
- --no-splay
|
||||||
|
- --detailed-exitcodes
|
||||||
|
- --verbose
|
||||||
|
- --color
|
||||||
|
- "0"
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: ""
|
||||||
|
err: ""
|
||||||
|
- id: puppet_agent_certname
|
||||||
|
input:
|
||||||
|
certname: potatobox
|
||||||
|
output:
|
||||||
|
changed: false
|
||||||
|
run_command_calls:
|
||||||
|
- command: [/testbin/puppet, config, print, agent_disabled_lockfile]
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: "blah, anything"
|
||||||
|
err: ""
|
||||||
|
- command:
|
||||||
|
- /testbin/timeout
|
||||||
|
- -s
|
||||||
|
- "9"
|
||||||
|
- 30m
|
||||||
|
- /testbin/puppet
|
||||||
|
- agent
|
||||||
|
- --onetime
|
||||||
|
- --no-daemonize
|
||||||
|
- --no-usecacheonfailure
|
||||||
|
- --no-splay
|
||||||
|
- --detailed-exitcodes
|
||||||
|
- --verbose
|
||||||
|
- --color
|
||||||
|
- "0"
|
||||||
|
- --certname=potatobox
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: ""
|
||||||
|
err: ""
|
||||||
|
- id: puppet_agent_tags_abc
|
||||||
|
input:
|
||||||
|
tags: [a, b, c]
|
||||||
|
output:
|
||||||
|
changed: false
|
||||||
|
run_command_calls:
|
||||||
|
- command: [/testbin/puppet, config, print, agent_disabled_lockfile]
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: "blah, anything"
|
||||||
|
err: ""
|
||||||
|
- command:
|
||||||
|
- /testbin/timeout
|
||||||
|
- -s
|
||||||
|
- "9"
|
||||||
|
- 30m
|
||||||
|
- /testbin/puppet
|
||||||
|
- agent
|
||||||
|
- --onetime
|
||||||
|
- --no-daemonize
|
||||||
|
- --no-usecacheonfailure
|
||||||
|
- --no-splay
|
||||||
|
- --detailed-exitcodes
|
||||||
|
- --verbose
|
||||||
|
- --color
|
||||||
|
- "0"
|
||||||
|
- --tags
|
||||||
|
- a,b,c
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: ""
|
||||||
|
err: ""
|
||||||
|
- id: puppet_agent_skip_tags_def
|
||||||
|
input:
|
||||||
|
skip_tags: [d, e, f]
|
||||||
|
output:
|
||||||
|
changed: false
|
||||||
|
run_command_calls:
|
||||||
|
- command: [/testbin/puppet, config, print, agent_disabled_lockfile]
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: "blah, anything"
|
||||||
|
err: ""
|
||||||
|
- command:
|
||||||
|
- /testbin/timeout
|
||||||
|
- -s
|
||||||
|
- "9"
|
||||||
|
- 30m
|
||||||
|
- /testbin/puppet
|
||||||
|
- agent
|
||||||
|
- --onetime
|
||||||
|
- --no-daemonize
|
||||||
|
- --no-usecacheonfailure
|
||||||
|
- --no-splay
|
||||||
|
- --detailed-exitcodes
|
||||||
|
- --verbose
|
||||||
|
- --color
|
||||||
|
- "0"
|
||||||
|
- --skip_tags
|
||||||
|
- d,e,f
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: ""
|
||||||
|
err: ""
|
||||||
|
- id: puppet_agent_noop_false
|
||||||
|
input:
|
||||||
|
noop: false
|
||||||
|
output:
|
||||||
|
changed: false
|
||||||
|
run_command_calls:
|
||||||
|
- command: [/testbin/puppet, config, print, agent_disabled_lockfile]
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: "blah, anything"
|
||||||
|
err: ""
|
||||||
|
- command:
|
||||||
|
- /testbin/timeout
|
||||||
|
- -s
|
||||||
|
- "9"
|
||||||
|
- 30m
|
||||||
|
- /testbin/puppet
|
||||||
|
- agent
|
||||||
|
- --onetime
|
||||||
|
- --no-daemonize
|
||||||
|
- --no-usecacheonfailure
|
||||||
|
- --no-splay
|
||||||
|
- --detailed-exitcodes
|
||||||
|
- --verbose
|
||||||
|
- --color
|
||||||
|
- "0"
|
||||||
|
- --no-noop
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: ""
|
||||||
|
err: ""
|
||||||
|
- id: puppet_agent_noop_true
|
||||||
|
input:
|
||||||
|
noop: true
|
||||||
|
output:
|
||||||
|
changed: false
|
||||||
|
run_command_calls:
|
||||||
|
- command: [/testbin/puppet, config, print, agent_disabled_lockfile]
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: "blah, anything"
|
||||||
|
err: ""
|
||||||
|
- command:
|
||||||
|
- /testbin/timeout
|
||||||
|
- -s
|
||||||
|
- "9"
|
||||||
|
- 30m
|
||||||
|
- /testbin/puppet
|
||||||
|
- agent
|
||||||
|
- --onetime
|
||||||
|
- --no-daemonize
|
||||||
|
- --no-usecacheonfailure
|
||||||
|
- --no-splay
|
||||||
|
- --detailed-exitcodes
|
||||||
|
- --verbose
|
||||||
|
- --color
|
||||||
|
- "0"
|
||||||
|
- --noop
|
||||||
|
environ: {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
|
||||||
|
rc: 0
|
||||||
|
out: ""
|
||||||
|
err: ""
|
Loading…
Reference in a new issue