277a06f641
- Improve code reuse. - Add missing type hints, fix existing ones and convert them to PEP 484 style. - Add missing imports and clean up existing ones. - Add missing docstrings and clean up existing ones.
55 lines
1.6 KiB
Python
55 lines
1.6 KiB
Python
"""Vultr plugin for integration tests."""
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
from ..util import (
|
|
ConfigParser,
|
|
display,
|
|
)
|
|
|
|
from ..config import (
|
|
IntegrationConfig,
|
|
)
|
|
|
|
from . import (
|
|
CloudEnvironment,
|
|
CloudEnvironmentConfig,
|
|
CloudProvider,
|
|
)
|
|
|
|
|
|
class VultrCloudProvider(CloudProvider):
|
|
"""Checks if a configuration file has been passed or fixtures are going to be used for testing"""
|
|
def __init__(self, args): # type: (IntegrationConfig) -> None
|
|
super(VultrCloudProvider, self).__init__(args)
|
|
|
|
self.uses_config = True
|
|
|
|
def setup(self): # type: () -> None
|
|
"""Setup the cloud resource before delegation and register a cleanup callback."""
|
|
super(VultrCloudProvider, self).setup()
|
|
|
|
self._use_static_config()
|
|
|
|
|
|
class VultrCloudEnvironment(CloudEnvironment):
|
|
"""Updates integration test environment after delegation. Will setup the config file as parameter."""
|
|
def get_environment_config(self): # type: () -> CloudEnvironmentConfig
|
|
"""Return environment configuration for use in the test environment after delegation."""
|
|
parser = ConfigParser()
|
|
parser.read(self.config_path)
|
|
|
|
env_vars = dict(
|
|
VULTR_API_KEY=parser.get('default', 'key'),
|
|
)
|
|
|
|
display.sensitive.add(env_vars['VULTR_API_KEY'])
|
|
|
|
ansible_vars = dict(
|
|
vultr_resource_prefix=self.resource_prefix,
|
|
)
|
|
|
|
return CloudEnvironmentConfig(
|
|
env_vars=env_vars,
|
|
ansible_vars=ansible_vars,
|
|
)
|