mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 10:40:32 -07:00
Some checks failed
EOL CI / EOL Sanity (Ⓐ2.15) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py2.7) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/3/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Has been cancelled
import-galaxy / Test to import built collection artifact with Galaxy importer (push) Has been cancelled
Verify REUSE / check (push) Has been cancelled
* Replace compat with equivalent from community.internal_test_tools. * Replace mock with equivalent from community.internal_test_tools.
69 lines
2 KiB
Python
69 lines
2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# (c) 2024, Alexei Znamensky <russoz@gmail.com>
|
|
# Copyright (c) 2024 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_collections.community.internal_test_tools.tests.unit.compat.mock import MagicMock
|
|
|
|
import pytest
|
|
|
|
from ansible_collections.community.general.plugins.module_utils import deps
|
|
|
|
|
|
@pytest.fixture
|
|
def module():
|
|
m = MagicMock()
|
|
m.fail_json.side_effect = RuntimeError
|
|
return m
|
|
|
|
|
|
def test_wrong_name(module):
|
|
with deps.declare("sys") as sys_dep:
|
|
import sys # noqa: F401, pylint: disable=unused-import
|
|
|
|
with pytest.raises(KeyError):
|
|
deps.validate(module, "wrong_name")
|
|
|
|
|
|
def test_fail_potatoes(module):
|
|
with deps.declare("potatoes", reason="Must have potatoes") as potatoes_dep:
|
|
import potatoes_that_will_never_be_there # noqa: F401, pylint: disable=unused-import
|
|
|
|
with pytest.raises(RuntimeError):
|
|
deps.validate(module)
|
|
|
|
assert potatoes_dep.failed is True
|
|
assert potatoes_dep.message.startswith("Failed to import the required Python library")
|
|
|
|
|
|
def test_sys(module):
|
|
with deps.declare("sys") as sys_dep:
|
|
import sys # noqa: F401, pylint: disable=unused-import
|
|
|
|
deps.validate(module)
|
|
|
|
assert sys_dep.failed is False
|
|
|
|
|
|
def test_multiple(module):
|
|
with deps.declare("mpotatoes", reason="Must have mpotatoes"):
|
|
import potatoes_that_will_never_be_there # noqa: F401, pylint: disable=unused-import
|
|
|
|
with deps.declare("msys", reason="Must have msys"):
|
|
import sys # noqa: F401, pylint: disable=unused-import
|
|
|
|
deps.validate(module, "msys")
|
|
deps.validate(module, "-mpotatoes")
|
|
|
|
with pytest.raises(RuntimeError):
|
|
deps.validate(module)
|
|
|
|
with pytest.raises(RuntimeError):
|
|
deps.validate(module, "-msys")
|
|
|
|
with pytest.raises(RuntimeError):
|
|
deps.validate(module, "mpotatoes")
|