mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-23 04:24:00 -07:00
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.17) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.17+py3.10) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.17+py3.12) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.17+py3.7) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.17+alpine319+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.17+alpine319+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.17+alpine319+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.17+fedora39+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.17+fedora39+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.17+fedora39+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.17+ubuntu2004+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.17+ubuntu2004+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.17+ubuntu2004+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run
* Adjust all __future__ imports: for i in $(grep -REl "__future__.*absolute_import" plugins/ tests/); do sed -e 's/from __future__ import .*/from __future__ import annotations/g' -i $i; done * Remove all UTF-8 encoding specifications for Python source files: for i in $(grep -REl '[-][*]- coding: utf-8 -[*]-' plugins/ tests/); do sed -e '/^# -\*- coding: utf-8 -\*-/d' -i $i; done * Remove __metaclass__ = type: for i in $(grep -REl '__metaclass__ = type' plugins/ tests/); do sed -e '/^__metaclass__ = type/d' -i $i; done
74 lines
2.5 KiB
Python
74 lines
2.5 KiB
Python
#
|
|
# Copyright (c) 2019, Bojan Vitnik <bvitnik@mainstream.rs>
|
|
# 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 annotations
|
|
|
|
|
|
import sys
|
|
import importlib
|
|
import pytest
|
|
|
|
from .FakeAnsibleModule import FakeAnsibleModule
|
|
|
|
|
|
@pytest.fixture
|
|
def fake_ansible_module(request):
|
|
"""Returns fake AnsibleModule with fake module params."""
|
|
if hasattr(request, 'param'):
|
|
return FakeAnsibleModule(request.param)
|
|
else:
|
|
params = {
|
|
"hostname": "somehost",
|
|
"username": "someuser",
|
|
"password": "somepwd",
|
|
"validate_certs": True,
|
|
}
|
|
|
|
return FakeAnsibleModule(params)
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def XenAPI():
|
|
"""Imports and returns fake XenAPI module."""
|
|
|
|
# Import of fake XenAPI module is wrapped by fixture so that it does not
|
|
# affect other unit tests which could potentially also use XenAPI module.
|
|
|
|
# First we use importlib.import_module() to import the module and assign
|
|
# it to a local symbol.
|
|
fake_xenapi = importlib.import_module('ansible_collections.community.general.tests.unit.plugins.modules.FakeXenAPI')
|
|
|
|
# Now we populate Python module cache with imported fake module using the
|
|
# original module name (XenAPI). That way, any 'import XenAPI' statement
|
|
# will just load already imported fake module from the cache.
|
|
sys.modules['XenAPI'] = fake_xenapi
|
|
|
|
return fake_xenapi
|
|
|
|
|
|
@pytest.fixture
|
|
def xenserver_guest_info(XenAPI):
|
|
"""Imports and returns xenserver_guest_info module."""
|
|
|
|
# Since we are wrapping fake XenAPI module inside a fixture, all modules
|
|
# that depend on it have to be imported inside a test function. To make
|
|
# this easier to handle and remove some code repetition, we wrap the import
|
|
# of xenserver_guest_info module with a fixture.
|
|
from ansible_collections.community.general.plugins.modules import xenserver_guest_info
|
|
|
|
return xenserver_guest_info
|
|
|
|
|
|
@pytest.fixture
|
|
def xenserver_guest_powerstate(XenAPI):
|
|
"""Imports and returns xenserver_guest_powerstate module."""
|
|
|
|
# Since we are wrapping fake XenAPI module inside a fixture, all modules
|
|
# that depend on it have to be imported inside a test function. To make
|
|
# this easier to handle and remove some code repetition, we wrap the import
|
|
# of xenserver_guest_powerstate module with a fixture.
|
|
from ansible_collections.community.general.plugins.modules import xenserver_guest_powerstate
|
|
|
|
return xenserver_guest_powerstate
|