2022-06-04 09:13:53 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2022-08-08 23:23:08 +02:00
|
|
|
# Copyright (c) Alexei Znamensky (russoz@gmail.com)
|
2022-08-05 12:28:29 +02:00
|
|
|
# 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
|
2022-06-04 09:13:53 +02:00
|
|
|
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2023-09-02 13:30:15 +02:00
|
|
|
from ansible_collections.community.general.plugins.modules import gconftool2_info
|
|
|
|
from .cmd_runner_test_utils import CmdRunnerTestHelper
|
2022-06-04 09:13:53 +02:00
|
|
|
|
|
|
|
|
2023-09-02 13:30:15 +02:00
|
|
|
with open("tests/unit/plugins/modules/test_gconftool2_info.yaml", "r") as TEST_CASES:
|
|
|
|
helper = CmdRunnerTestHelper(gconftool2_info.main, test_cases=TEST_CASES)
|
|
|
|
patch_bin = helper.cmd_fixture
|
2022-06-04 09:13:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('patch_ansible_module, testcase',
|
2023-09-02 13:30:15 +02:00
|
|
|
helper.testcases_params, ids=helper.testcases_ids,
|
2022-06-04 09:13:53 +02:00
|
|
|
indirect=['patch_ansible_module'])
|
|
|
|
@pytest.mark.usefixtures('patch_ansible_module')
|
2023-09-02 13:30:15 +02:00
|
|
|
def test_module(mocker, capfd, patch_bin, testcase):
|
2022-06-04 09:13:53 +02:00
|
|
|
"""
|
2023-09-02 13:30:15 +02:00
|
|
|
Run unit tests for test cases listed in TEST_CASES
|
2022-06-04 09:13:53 +02:00
|
|
|
"""
|
|
|
|
|
2023-09-02 13:30:15 +02:00
|
|
|
with helper(testcase, mocker, capfd) as testcase_context:
|
|
|
|
testcase_context.run()
|