d651bda123
* Initial move of `test/runner/` content. `test/runner/lib/` -> `test/lib/ansible_test/_internal/` `test/runner/` -> `test/lib/ansible_test/_internal/data/` * Initial move of `test/sanity/` content. `test/sanity/` -> `test/lib/ansible_test/_internal/data/sanity/` (except `test/sanity/ignore.txt`) * Initial move of `test/units/pytest/` content. `test/units/pytest/` -> `test/lib/ansible_test/_internal/data/pytest/` * Follow-up move of `test/runner/unit/` content. `test/lib/ansible_test/_internal/data/unit/` -> `test/lib/ansible_test/tests/unit/` * Initial move of `ansible.cfg` content. `test/units/ansible.cfg` -> `test/lib/ansible_test/_internal/data/units/ansible.cfg` `test/env/ansible.cfg` -> `test/lib/ansible_test/_internal/data/env/ansible.cfg` * Follow-up move of `data` directory. `test/lib/ansible_test/_internal/data/` -> `test/lib/ansible_test/_data/` * Update import statements. * Add missing __init__.py for unit tests. * Fix path references and miscellaneous issues.
64 lines
1.8 KiB
Python
64 lines
1.8 KiB
Python
"""OpenNebula plugin for integration tests."""
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
from . import (
|
|
CloudProvider,
|
|
CloudEnvironment,
|
|
CloudEnvironmentConfig,
|
|
)
|
|
|
|
from ..util import (
|
|
display,
|
|
ConfigParser,
|
|
)
|
|
|
|
|
|
class OpenNebulaCloudProvider(CloudProvider):
|
|
"""Checks if a configuration file has been passed or fixtures are going to be used for testing"""
|
|
|
|
def filter(self, targets, exclude):
|
|
""" no need to filter modules, they can either run from config file or from fixtures"""
|
|
|
|
def setup(self):
|
|
"""Setup the cloud resource before delegation and register a cleanup callback."""
|
|
super(OpenNebulaCloudProvider, self).setup()
|
|
|
|
if not self._use_static_config():
|
|
self._setup_dynamic()
|
|
|
|
def _setup_dynamic(self):
|
|
display.info('No config file provided, will run test from fixtures')
|
|
|
|
config = self._read_config_template()
|
|
values = dict(
|
|
URL="http://localhost/RPC2",
|
|
USERNAME='oneadmin',
|
|
PASSWORD='onepass',
|
|
FIXTURES='true',
|
|
REPLAY='true',
|
|
)
|
|
config = self._populate_config_template(config, values)
|
|
self._write_config(config)
|
|
|
|
|
|
class OpenNebulaCloudEnvironment(CloudEnvironment):
|
|
"""
|
|
Updates integration test environment after delegation. Will setup the config file as parameter.
|
|
"""
|
|
def get_environment_config(self):
|
|
"""
|
|
:rtype: CloudEnvironmentConfig
|
|
"""
|
|
parser = ConfigParser()
|
|
parser.read(self.config_path)
|
|
|
|
ansible_vars = dict(
|
|
resource_prefix=self.resource_prefix,
|
|
)
|
|
|
|
ansible_vars.update(dict(parser.items('default')))
|
|
|
|
return CloudEnvironmentConfig(
|
|
ansible_vars=ansible_vars,
|
|
)
|