2018-03-03 01:32:38 +01:00
|
|
|
"""Tower plugin for integration tests."""
|
2019-07-12 08:46:20 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2018-03-03 01:32:38 +01:00
|
|
|
|
|
|
|
import os
|
|
|
|
import time
|
|
|
|
|
2019-08-06 23:43:29 +02:00
|
|
|
from ..util import (
|
2018-03-03 01:32:38 +01:00
|
|
|
display,
|
|
|
|
ApplicationError,
|
|
|
|
SubprocessError,
|
2018-09-21 20:38:22 +02:00
|
|
|
ConfigParser,
|
2018-03-03 01:32:38 +01:00
|
|
|
)
|
|
|
|
|
2019-08-06 23:43:29 +02:00
|
|
|
from ..util_common import (
|
2019-07-11 07:00:34 +02:00
|
|
|
run_command,
|
|
|
|
)
|
|
|
|
|
2019-08-06 23:43:29 +02:00
|
|
|
from . import (
|
2018-03-03 01:32:38 +01:00
|
|
|
CloudProvider,
|
|
|
|
CloudEnvironment,
|
2019-03-01 03:25:49 +01:00
|
|
|
CloudEnvironmentConfig,
|
2018-03-03 01:32:38 +01:00
|
|
|
)
|
|
|
|
|
2019-08-06 23:43:29 +02:00
|
|
|
from ..core_ci import (
|
2018-03-03 01:32:38 +01:00
|
|
|
AnsibleCoreCI,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class TowerCloudProvider(CloudProvider):
|
|
|
|
"""Tower cloud provider plugin. Sets up cloud resources before delegation."""
|
|
|
|
def __init__(self, args):
|
|
|
|
"""
|
|
|
|
:type args: TestConfig
|
|
|
|
"""
|
2019-03-01 03:25:49 +01:00
|
|
|
super(TowerCloudProvider, self).__init__(args)
|
2018-03-03 01:32:38 +01:00
|
|
|
|
|
|
|
self.aci = None
|
|
|
|
self.version = ''
|
|
|
|
|
|
|
|
def filter(self, targets, exclude):
|
|
|
|
"""Filter out the cloud tests when the necessary config and resources are not available.
|
|
|
|
:type targets: tuple[TestTarget]
|
|
|
|
:type exclude: list[str]
|
|
|
|
"""
|
|
|
|
if os.path.isfile(self.config_static_path):
|
|
|
|
return
|
|
|
|
|
|
|
|
aci = get_tower_aci(self.args)
|
|
|
|
|
2020-04-26 03:55:39 +02:00
|
|
|
if aci.available:
|
2018-03-03 01:32:38 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
super(TowerCloudProvider, self).filter(targets, exclude)
|
|
|
|
|
|
|
|
def setup(self):
|
|
|
|
"""Setup the cloud resource before delegation and register a cleanup callback."""
|
|
|
|
super(TowerCloudProvider, self).setup()
|
|
|
|
|
|
|
|
if self._use_static_config():
|
|
|
|
self._setup_static()
|
|
|
|
else:
|
|
|
|
self._setup_dynamic()
|
|
|
|
|
|
|
|
def check_tower_version(self, fallback=None):
|
|
|
|
"""Check the Tower version being tested and determine the correct CLI version to use.
|
|
|
|
:type fallback: str | None
|
|
|
|
"""
|
|
|
|
tower_cli_version_map = {
|
|
|
|
'3.1.5': '3.1.8',
|
2018-04-25 19:53:04 +02:00
|
|
|
'3.2.3': '3.3.0',
|
2019-04-09 15:08:11 +02:00
|
|
|
'3.3.5': '3.3.3',
|
|
|
|
'3.4.3': '3.3.3',
|
2020-02-21 09:54:49 +01:00
|
|
|
'3.6.3': '3.3.8',
|
2018-03-03 01:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cli_version = tower_cli_version_map.get(self.version, fallback)
|
|
|
|
|
|
|
|
if not cli_version:
|
|
|
|
raise ApplicationError('Mapping to ansible-tower-cli version required for Tower version: %s' % self.version)
|
|
|
|
|
|
|
|
self._set_cloud_config('tower_cli_version', cli_version)
|
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
"""Clean up the cloud resource and any temporary configuration files after tests complete."""
|
|
|
|
# cleanup on success or failure is not yet supported due to how cleanup is called
|
|
|
|
if self.aci and self.args.remote_terminate == 'always':
|
|
|
|
self.aci.stop()
|
|
|
|
|
|
|
|
super(TowerCloudProvider, self).cleanup()
|
|
|
|
|
|
|
|
def _setup_static(self):
|
|
|
|
config = TowerConfig.parse(self.config_static_path)
|
|
|
|
|
|
|
|
self.version = config.version
|
|
|
|
self.check_tower_version()
|
|
|
|
|
|
|
|
def _setup_dynamic(self):
|
|
|
|
"""Request Tower credentials through the Ansible Core CI service."""
|
|
|
|
display.info('Provisioning %s cloud environment.' % self.platform, verbosity=1)
|
|
|
|
|
|
|
|
# temporary solution to allow version selection
|
2020-02-21 09:54:49 +01:00
|
|
|
self.version = os.environ.get('TOWER_VERSION', '3.6.3')
|
2018-03-03 01:32:38 +01:00
|
|
|
self.check_tower_version(os.environ.get('TOWER_CLI_VERSION'))
|
|
|
|
|
|
|
|
aci = get_tower_aci(self.args, self.version)
|
|
|
|
aci.start()
|
2019-08-01 18:16:00 +02:00
|
|
|
aci.wait()
|
2018-03-03 01:32:38 +01:00
|
|
|
|
|
|
|
connection = aci.get()
|
|
|
|
|
|
|
|
config = self._read_config_template()
|
|
|
|
|
|
|
|
if not self.args.explain:
|
|
|
|
self.aci = aci
|
|
|
|
|
|
|
|
values = dict(
|
|
|
|
VERSION=self.version,
|
|
|
|
HOST=connection.hostname,
|
2018-03-09 23:30:04 +01:00
|
|
|
USERNAME=connection.username,
|
|
|
|
PASSWORD=connection.password,
|
2018-03-03 01:32:38 +01:00
|
|
|
)
|
|
|
|
|
2019-09-17 06:01:37 +02:00
|
|
|
display.sensitive.add(values['PASSWORD'])
|
|
|
|
|
2018-03-03 01:32:38 +01:00
|
|
|
config = self._populate_config_template(config, values)
|
|
|
|
|
|
|
|
self._write_config(config)
|
|
|
|
|
|
|
|
|
|
|
|
class TowerCloudEnvironment(CloudEnvironment):
|
|
|
|
"""Tower cloud environment plugin. Updates integration test environment after delegation."""
|
|
|
|
def setup(self):
|
|
|
|
"""Setup which should be done once per environment instead of once per test target."""
|
|
|
|
self.setup_cli()
|
|
|
|
self.disable_pendo()
|
|
|
|
|
|
|
|
def setup_cli(self):
|
|
|
|
"""Install the correct Tower CLI for the version of Tower being tested."""
|
|
|
|
tower_cli_version = self._get_cloud_config('tower_cli_version')
|
|
|
|
|
|
|
|
display.info('Installing Tower CLI version: %s' % tower_cli_version)
|
|
|
|
|
2018-03-14 19:35:59 +01:00
|
|
|
cmd = self.args.pip_command + ['install', '--disable-pip-version-check', 'ansible-tower-cli==%s' % tower_cli_version]
|
2018-03-03 01:32:38 +01:00
|
|
|
|
|
|
|
run_command(self.args, cmd)
|
|
|
|
|
2020-02-13 19:13:05 +01:00
|
|
|
cmd = ['tower-cli', 'config', 'verify_ssl', 'false']
|
|
|
|
run_command(self.args, cmd, capture=True)
|
|
|
|
|
2018-03-09 23:30:04 +01:00
|
|
|
def disable_pendo(self):
|
|
|
|
"""Disable Pendo tracking."""
|
|
|
|
display.info('Disable Pendo tracking')
|
2018-03-03 01:32:38 +01:00
|
|
|
|
|
|
|
config = TowerConfig.parse(self.config_path)
|
|
|
|
|
2018-03-09 23:30:04 +01:00
|
|
|
# tower-cli does not recognize TOWER_ environment variables
|
|
|
|
cmd = ['tower-cli', 'setting', 'modify', 'PENDO_TRACKING_STATE', 'off',
|
|
|
|
'-h', config.host, '-u', config.username, '-p', config.password]
|
2018-03-03 01:32:38 +01:00
|
|
|
|
|
|
|
attempts = 60
|
|
|
|
|
2018-03-09 23:30:04 +01:00
|
|
|
while True:
|
2018-03-03 01:32:38 +01:00
|
|
|
attempts -= 1
|
|
|
|
|
2018-03-09 23:30:04 +01:00
|
|
|
try:
|
|
|
|
run_command(self.args, cmd, capture=True)
|
2018-03-03 01:32:38 +01:00
|
|
|
return
|
2018-03-09 23:30:04 +01:00
|
|
|
except SubprocessError as ex:
|
|
|
|
if not attempts:
|
|
|
|
raise ApplicationError('Timed out trying to disable Pendo tracking:\n%s' % ex)
|
2018-03-03 01:32:38 +01:00
|
|
|
|
|
|
|
time.sleep(5)
|
|
|
|
|
2019-03-01 03:25:49 +01:00
|
|
|
def get_environment_config(self):
|
|
|
|
"""
|
|
|
|
:rtype: CloudEnvironmentConfig
|
2018-03-03 01:32:38 +01:00
|
|
|
"""
|
|
|
|
config = TowerConfig.parse(self.config_path)
|
|
|
|
|
2019-03-01 03:25:49 +01:00
|
|
|
env_vars = config.environment
|
|
|
|
|
|
|
|
ansible_vars = dict((key.lower(), value) for key, value in env_vars.items())
|
|
|
|
|
|
|
|
return CloudEnvironmentConfig(
|
|
|
|
env_vars=env_vars,
|
|
|
|
ansible_vars=ansible_vars,
|
|
|
|
)
|
2018-03-03 01:32:38 +01:00
|
|
|
|
|
|
|
|
2019-07-12 22:17:20 +02:00
|
|
|
class TowerConfig:
|
2018-03-03 01:32:38 +01:00
|
|
|
"""Tower settings."""
|
|
|
|
def __init__(self, values):
|
|
|
|
self.version = values.get('version')
|
|
|
|
self.host = values.get('host')
|
|
|
|
self.username = values.get('username')
|
|
|
|
self.password = values.get('password')
|
|
|
|
|
|
|
|
if self.password:
|
|
|
|
display.sensitive.add(self.password)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def environment(self):
|
|
|
|
"""Tower settings as environment variables.
|
|
|
|
:rtype: dict[str, str]
|
|
|
|
"""
|
|
|
|
env = dict(
|
2018-03-15 19:52:56 +01:00
|
|
|
TOWER_VERSION=self.version,
|
2018-03-03 01:32:38 +01:00
|
|
|
TOWER_HOST=self.host,
|
|
|
|
TOWER_USERNAME=self.username,
|
|
|
|
TOWER_PASSWORD=self.password,
|
|
|
|
)
|
|
|
|
|
|
|
|
return env
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def parse(path):
|
|
|
|
"""
|
|
|
|
:type path: str
|
|
|
|
:rtype: TowerConfig
|
|
|
|
"""
|
2018-09-21 20:38:22 +02:00
|
|
|
parser = ConfigParser()
|
2018-03-03 01:32:38 +01:00
|
|
|
parser.read(path)
|
|
|
|
|
|
|
|
keys = (
|
|
|
|
'version',
|
|
|
|
'host',
|
|
|
|
'username',
|
|
|
|
'password',
|
|
|
|
)
|
|
|
|
|
2019-03-01 03:25:49 +01:00
|
|
|
values = dict((k, parser.get('default', k)) for k in keys)
|
2018-03-03 01:32:38 +01:00
|
|
|
config = TowerConfig(values)
|
|
|
|
|
2018-03-15 19:52:56 +01:00
|
|
|
missing = [k for k in keys if not values.get(k)]
|
|
|
|
|
|
|
|
if missing:
|
|
|
|
raise ApplicationError('Missing or empty Tower configuration value(s): %s' % ', '.join(missing))
|
|
|
|
|
2018-03-03 01:32:38 +01:00
|
|
|
return config
|
|
|
|
|
|
|
|
|
|
|
|
def get_tower_aci(args, version=None):
|
|
|
|
"""
|
|
|
|
:type args: EnvironmentConfig
|
|
|
|
:type version: str | None
|
|
|
|
:rtype: AnsibleCoreCI
|
|
|
|
"""
|
|
|
|
if version:
|
|
|
|
persist = True
|
|
|
|
else:
|
|
|
|
version = ''
|
|
|
|
persist = False
|
|
|
|
|
|
|
|
return AnsibleCoreCI(args, 'tower', version, persist=persist, stage=args.remote_stage, provider=args.remote_provider)
|