Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ansible-test unit test execution. #45772

Merged
merged 2 commits into from
Sep 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions test/runner/lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,13 @@ def __init__(self, args):

self.collect_only = args.collect_only # type: bool

self.requirements_mode = args.requirements_mode if 'requirements_mode' in args else ''

if self.requirements_mode == 'only':
self.requirements = True
elif self.requirements_mode == 'skip':
self.requirements = False


class CoverageConfig(EnvironmentConfig):
"""Configuration for the coverage command."""
Expand Down
23 changes: 23 additions & 0 deletions test/runner/lib/delegation.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,29 @@ def delegate_docker(args, exclude, require, integration_targets):
if isinstance(args, UnitsConfig) and not args.python:
cmd += ['--python', 'default']

# run unit tests unprivileged to prevent stray writes to the source tree
if isinstance(args, UnitsConfig):
writable_dirs = [
'/root/ansible/lib/ansible.egg-info',
'/root/ansible/.pytest_cache',
]

docker_exec(args, test_id, ['mkdir', '-p'] + writable_dirs)
docker_exec(args, test_id, ['chmod', '777'] + writable_dirs)

docker_exec(args, test_id, ['find', '/root/ansible/test/results/', '-type', 'd', '-exec', 'chmod', '777', '{}', '+'])

docker_exec(args, test_id, ['chmod', '755', '/root'])
docker_exec(args, test_id, ['chmod', '644', '/root/ansible/%s' % args.metadata_path])

docker_exec(args, test_id, ['useradd', 'pytest', '--create-home'])

docker_exec(args, test_id, cmd + ['--requirements-mode', 'only'], options=cmd_options)

cmd += ['--requirements-mode', 'skip']

cmd_options += ['--user', 'pytest']

try:
docker_exec(args, test_id, cmd, options=cmd_options)
finally:
Expand Down
19 changes: 15 additions & 4 deletions test/runner/lib/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import textwrap
import functools
import pipes
import sys
import hashlib

import lib.pytar
Expand Down Expand Up @@ -49,6 +50,8 @@
raw_command,
get_coverage_path,
get_available_port,
generate_pip_command,
find_python,
)

from lib.docker_util import (
Expand Down Expand Up @@ -148,9 +151,10 @@ def create_shell_command(command):
return cmd


def install_command_requirements(args):
def install_command_requirements(args, python_version=None):
"""
:type args: EnvironmentConfig
:type python_version: str | None
"""
generate_egg_info(args)

Expand All @@ -168,7 +172,10 @@ def install_command_requirements(args):
if args.junit:
packages.append('junit-xml')

pip = args.pip_command
if not python_version:
python_version = args.python_version

pip = generate_pip_command(find_python(python_version))

commands = [generate_pip_install(pip, args.command, packages=packages)]

Expand Down Expand Up @@ -1133,15 +1140,16 @@ def command_units(args):
if args.delegate:
raise Delegate(require=changes)

install_command_requirements(args)

version_commands = []

for version in SUPPORTED_PYTHON_VERSIONS:
# run all versions unless version given, in which case run only that version
if args.python and version != args.python_version:
continue

if args.requirements_mode != 'skip':
install_command_requirements(args, version)

env = ansible_environment(args)

cmd = [
Expand All @@ -1167,6 +1175,9 @@ def command_units(args):

version_commands.append((version, cmd, env))

if args.requirements_mode == 'only':
sys.exit()

for version, command, env in version_commands:
display.info('Unit test with Python %s' % version)

Expand Down
4 changes: 4 additions & 0 deletions test/runner/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,10 @@ def parse_args():
action='store_true',
help='collect tests but do not execute them')

units.add_argument('--requirements-mode',
choices=('only', 'skip'),
help=argparse.SUPPRESS)

add_extra_docker_options(units, integration=False)

sanity = subparsers.add_parser('sanity',
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ passenv =

[pytest]
xfail_strict = true
cache_dir = .pytest_cache

[flake8]
# These are things that the devs don't agree make the code more readable
Expand Down