ca13e678ae
* Fix unit test parametrize order on Python 3.5. (cherry picked from commit53b230ca74
) * Fix ansible-test unit test execution. (#45772) * Fix ansible-test units requirements install. * Run unit tests as unprivileged user under Docker. (cherry picked from commit379a7f4f5a
) * Run unit tests in parallel. (#45812) (cherry picked from commitabe8e4c9e8
) * Minor fixes for unit test delegation. (cherry picked from commitbe199cfe90
) * add support for opening shell on remote Windows host (#43919) * add support for opening shell on remote Windows host * added arg completion and fix sanity check * remove uneeded arg (cherry picked from commit6ca4ea0c1f
) * Block network access for unit tests in docker. (cherry picked from commit99cac99cbc
) * Make ansible-test available in the bin directory. (#45876) (cherry picked from commitf3d1f9544b
) * Support comments in ansible-test flat files. (cherry picked from commit5a3000af19
) * Fix incorrect use of subprocess.CalledProcessError (#45890) (cherry picked from commit24dd87bd0a
) * Improve ansible-test match error handling. (cherry picked from commit2056c981ae
) * Improve error handling for docs-build test. (cherry picked from commit2148999048
) * Bug fixes and cleanup for ansible-test. (#45991) * Remove unused imports. * Clean up ConfigParser usage in ansible-test. * Fix bare except statements in ansible-test. * Miscellaneous cleanup from PyCharm inspections. * Enable pylint no-self-use for ansible-test. * Remove obsolete pylint ignores for Python 3.7. * Fix shellcheck issuers under newer shellcheck. * Use newer path for ansible-test. * Fix issues in code-smell tests. (cherry picked from commitac492476e5
) * Fix integration test library search path. This prevents tests from loading modules outside the source tree, which could result in testing the wrong module if a system-wide install is present, or custom modules exist. (cherry picked from commitd603cd41fe
) * Update default container to version 1.2.0. (cherry picked from commitd478a4c3f6
) (cherry picked from commit21c4eb8db5
) * Fix ansible-test docker python version handling. This removes the old name based version detection behavior and uses versions defined in the docker completion file instead, as the new containers do not follow the old naming scheme. (cherry picked from commit54937ba784
) * Reduce noise in docs-build test failures. (cherry picked from commit4085d01617
) * Fix ansible-test encoding issues for exceptions. (cherry picked from commit0d7a156319
) * Fix ansible-test multi-group smoke test handling. (#46363) * Fix ansible-test smoke tests across groups. * Fix ansible-test list arg defaults. * Fix ansible-test require and exclude delegation. * Fix detection of Windows specific changes. * Add minimal Windows testing for Python 3.7. (cherry picked from commite53390b3b1
) * Use default-test-container version 1.3.0. (cherry picked from commit6d9be66418
) * Add file exists check in integration-aliases test. (cherry picked from commit33a8be9109
) * Improve ansible-test environment checking between tests. (#46459) * Add unified diff output to environment validation. This makes it easier to see where the environment changed. * Compare Python interpreters by version to pip shebangs. This helps expose cases where pip executables use a different Python interpreter than is expected. * Query `pip.__version__` instead of using `pip --version`. This is a much faster way to query the pip version. It also more closely matches how we invoke pip within ansible-test. * Remove redundant environment scan between tests. This reuses the environment scan from the end of the previous test as the basis for comparison during the next test. (cherry picked from commit0dc7f38787
) * Add symlinks sanity test. (#46467) * Add symlinks sanity test. * Replace legacy test symlinks with actual content. * Remove dir symlink from template_jinja2_latest. * Update import test to use generated library dir. * Fix copy test symlink setup. (cherry picked from commite2b6047514
) * Fix parametrize warning in unit tests. (cherry picked from commit1a28898a00
) * Update MANIFEST.in (#46502) * Update MANIFEST.in: - Remove unnecessary prune. - Include files needed by tests. - Exclude botmeta sanity test. These changes permit sanity tests to pass on sdist output. (cherry picked from commitcbb49f66ec
) * Fix unit tests which modify the source tree. (#45763) * Fix CNOS unit test log usage. * Use temp dir for Galaxy unit tests. * Write to temp files in interfaces_file unit test. * Fix log placement in netapp_e_ldap unit test. (cherry picked from commit0686450cae
) * Fix ansible-test custom docker image traceback. (cherry picked from commit712ad9ed64
) * ansible-test: Create public key creating Windows targets (#43760) * ansible-test: Create public key creating Windows targets * Changed to always set SSH Key for Windows hosts (cherry picked from commitadc0efe10c
) * Fix and re-enable sts_assume_role integration tests (#46026) * Fix the STS assume role error message assertion when the role to assume does not exist. (cherry picked from commit18dc928e28
) * Fix ACI unit test on Python 3.7.0. The previous logic was only needed for pre-release versions of 3.7. (cherry picked from commitc0bf9815c9
) * Remove placeboify from unit tests that are not calling AWS (i.e. creating a recording) (#45754) (cherry picked from commit2167ce6cb6
) * Update sanity test ignore entries.
271 lines
8.5 KiB
Python
271 lines
8.5 KiB
Python
"""CloudStack plugin for integration tests."""
|
|
from __future__ import absolute_import, print_function
|
|
|
|
import json
|
|
import os
|
|
import re
|
|
import time
|
|
|
|
from lib.cloud import (
|
|
CloudProvider,
|
|
CloudEnvironment,
|
|
)
|
|
|
|
from lib.util import (
|
|
find_executable,
|
|
ApplicationError,
|
|
display,
|
|
SubprocessError,
|
|
is_shippable,
|
|
ConfigParser,
|
|
)
|
|
|
|
from lib.http import (
|
|
HttpClient,
|
|
HttpError,
|
|
urlparse,
|
|
)
|
|
|
|
from lib.docker_util import (
|
|
docker_run,
|
|
docker_rm,
|
|
docker_inspect,
|
|
docker_pull,
|
|
docker_network_inspect,
|
|
get_docker_container_id,
|
|
)
|
|
|
|
|
|
class CsCloudProvider(CloudProvider):
|
|
"""CloudStack cloud provider plugin. Sets up cloud resources before delegation."""
|
|
DOCKER_SIMULATOR_NAME = 'cloudstack-sim'
|
|
|
|
def __init__(self, args):
|
|
"""
|
|
:type args: TestConfig
|
|
"""
|
|
super(CsCloudProvider, self).__init__(args, config_extension='.ini')
|
|
|
|
# The simulator must be pinned to a specific version to guarantee CI passes with the version used.
|
|
self.image = 'quay.io/ansible/cloudstack-test-container:1.0.0'
|
|
self.container_name = ''
|
|
self.endpoint = ''
|
|
self.host = ''
|
|
self.port = 0
|
|
|
|
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
|
|
|
|
docker = find_executable('docker', required=False)
|
|
|
|
if docker:
|
|
return
|
|
|
|
skip = 'cloud/%s/' % self.platform
|
|
skipped = [target.name for target in targets if skip in target.aliases]
|
|
|
|
if skipped:
|
|
exclude.append(skip)
|
|
display.warning('Excluding tests marked "%s" which require the "docker" command or config (see "%s"): %s'
|
|
% (skip.rstrip('/'), self.config_template_path, ', '.join(skipped)))
|
|
|
|
def setup(self):
|
|
"""Setup the cloud resource before delegation and register a cleanup callback."""
|
|
super(CsCloudProvider, self).setup()
|
|
|
|
if self._use_static_config():
|
|
self._setup_static()
|
|
else:
|
|
self._setup_dynamic()
|
|
|
|
def get_remote_ssh_options(self):
|
|
"""Get any additional options needed when delegating tests to a remote instance via SSH.
|
|
:rtype: list[str]
|
|
"""
|
|
if self.managed:
|
|
return ['-R', '8888:localhost:8888']
|
|
|
|
return []
|
|
|
|
def get_docker_run_options(self):
|
|
"""Get any additional options needed when delegating tests to a docker container.
|
|
:rtype: list[str]
|
|
"""
|
|
if self.managed:
|
|
return ['--link', self.DOCKER_SIMULATOR_NAME]
|
|
|
|
return []
|
|
|
|
def cleanup(self):
|
|
"""Clean up the cloud resource and any temporary configuration files after tests complete."""
|
|
if self.container_name:
|
|
if is_shippable():
|
|
docker_rm(self.args, self.container_name)
|
|
elif not self.args.explain:
|
|
display.notice('Remember to run `docker rm -f %s` when finished testing.' % self.container_name)
|
|
|
|
super(CsCloudProvider, self).cleanup()
|
|
|
|
def _setup_static(self):
|
|
"""Configure CloudStack tests for use with static configuration."""
|
|
parser = ConfigParser()
|
|
parser.read(self.config_static_path)
|
|
|
|
self.endpoint = parser.get('cloudstack', 'endpoint')
|
|
|
|
parts = urlparse(self.endpoint)
|
|
|
|
self.host = parts.hostname
|
|
|
|
if not self.host:
|
|
raise ApplicationError('Could not determine host from endpoint: %s' % self.endpoint)
|
|
|
|
if parts.port:
|
|
self.port = parts.port
|
|
elif parts.scheme == 'http':
|
|
self.port = 80
|
|
elif parts.scheme == 'https':
|
|
self.port = 443
|
|
else:
|
|
raise ApplicationError('Could not determine port from endpoint: %s' % self.endpoint)
|
|
|
|
display.info('Read cs host "%s" and port %d from config: %s' % (self.host, self.port, self.config_static_path), verbosity=1)
|
|
|
|
self._wait_for_service()
|
|
|
|
def _setup_dynamic(self):
|
|
"""Create a CloudStack simulator using docker."""
|
|
config = self._read_config_template()
|
|
|
|
self.container_name = self.DOCKER_SIMULATOR_NAME
|
|
|
|
results = docker_inspect(self.args, self.container_name)
|
|
|
|
if results and not results[0]['State']['Running']:
|
|
docker_rm(self.args, self.container_name)
|
|
results = []
|
|
|
|
if results:
|
|
display.info('Using the existing CloudStack simulator docker container.', verbosity=1)
|
|
else:
|
|
display.info('Starting a new CloudStack simulator docker container.', verbosity=1)
|
|
docker_pull(self.args, self.image)
|
|
docker_run(self.args, self.image, ['-d', '-p', '8888:8888', '--name', self.container_name])
|
|
if not self.args.explain:
|
|
display.notice('The CloudStack simulator will probably be ready in 5 - 10 minutes.')
|
|
|
|
container_id = get_docker_container_id()
|
|
|
|
if container_id:
|
|
display.info('Running in docker container: %s' % container_id, verbosity=1)
|
|
self.host = self._get_simulator_address()
|
|
display.info('Found CloudStack simulator container address: %s' % self.host, verbosity=1)
|
|
else:
|
|
self.host = 'localhost'
|
|
|
|
self.port = 8888
|
|
self.endpoint = 'http://%s:%d' % (self.host, self.port)
|
|
|
|
self._wait_for_service()
|
|
|
|
if self.args.explain:
|
|
values = dict(
|
|
HOST=self.host,
|
|
PORT=str(self.port),
|
|
)
|
|
else:
|
|
credentials = self._get_credentials()
|
|
|
|
if self.args.docker:
|
|
host = self.DOCKER_SIMULATOR_NAME
|
|
else:
|
|
host = self.host
|
|
|
|
values = dict(
|
|
HOST=host,
|
|
PORT=str(self.port),
|
|
KEY=credentials['apikey'],
|
|
SECRET=credentials['secretkey'],
|
|
)
|
|
|
|
config = self._populate_config_template(config, values)
|
|
|
|
self._write_config(config)
|
|
|
|
def _get_simulator_address(self):
|
|
networks = docker_network_inspect(self.args, 'bridge')
|
|
|
|
try:
|
|
bridge = [network for network in networks if network['Name'] == 'bridge'][0]
|
|
containers = bridge['Containers']
|
|
container = [containers[container] for container in containers if containers[container]['Name'] == self.DOCKER_SIMULATOR_NAME][0]
|
|
return re.sub(r'/[0-9]+$', '', container['IPv4Address'])
|
|
except Exception:
|
|
display.error('Failed to process the following docker network inspect output:\n%s' %
|
|
json.dumps(networks, indent=4, sort_keys=True))
|
|
raise
|
|
|
|
def _wait_for_service(self):
|
|
"""Wait for the CloudStack service endpoint to accept connections."""
|
|
if self.args.explain:
|
|
return
|
|
|
|
client = HttpClient(self.args, always=True)
|
|
endpoint = self.endpoint
|
|
|
|
for _ in range(1, 30):
|
|
display.info('Waiting for CloudStack service: %s' % endpoint, verbosity=1)
|
|
|
|
try:
|
|
client.get(endpoint)
|
|
return
|
|
except SubprocessError:
|
|
pass
|
|
|
|
time.sleep(30)
|
|
|
|
raise ApplicationError('Timeout waiting for CloudStack service.')
|
|
|
|
def _get_credentials(self):
|
|
"""Wait for the CloudStack simulator to return credentials.
|
|
:rtype: dict[str, str]
|
|
"""
|
|
client = HttpClient(self.args, always=True)
|
|
endpoint = '%s/admin.json' % self.endpoint
|
|
|
|
for _ in range(1, 30):
|
|
display.info('Waiting for CloudStack credentials: %s' % endpoint, verbosity=1)
|
|
|
|
response = client.get(endpoint)
|
|
|
|
if response.status_code == 200:
|
|
try:
|
|
return response.json()
|
|
except HttpError as ex:
|
|
display.error(ex)
|
|
|
|
time.sleep(30)
|
|
|
|
raise ApplicationError('Timeout waiting for CloudStack credentials.')
|
|
|
|
|
|
class CsCloudEnvironment(CloudEnvironment):
|
|
"""CloudStack cloud environment plugin. Updates integration test environment after delegation."""
|
|
def configure_environment(self, env, cmd):
|
|
"""
|
|
:type env: dict[str, str]
|
|
:type cmd: list[str]
|
|
"""
|
|
changes = dict(
|
|
CLOUDSTACK_CONFIG=self.config_path,
|
|
)
|
|
|
|
env.update(changes)
|
|
|
|
cmd.append('-e')
|
|
cmd.append('cs_resource_prefix=%s' % self.resource_prefix)
|