ansible/test/runner/lib/ansible_util.py

102 lines
2.7 KiB
Python
Raw Normal View History

"""Miscellaneous utility functions and classes specific to ansible cli tools."""
from __future__ import absolute_import, print_function
2019-06-05 07:08:23 +02:00
import json
import os
from lib.constants import (
SOFT_RLIMIT_NOFILE,
)
2017-10-04 20:36:53 +02:00
from lib.util import (
common_environment,
2019-06-05 07:08:23 +02:00
display,
find_python,
run_command,
2017-10-04 20:36:53 +02:00
ApplicationError,
INSTALL_ROOT,
2017-10-04 20:36:53 +02:00
)
from lib.config import (
IntegrationConfig,
2019-06-05 07:08:23 +02:00
EnvironmentConfig,
2017-10-04 20:36:53 +02:00
)
2019-06-05 07:08:23 +02:00
CHECK_YAML_VERSIONS = {}
def ansible_environment(args, color=True, ansible_config=None):
"""
:type args: CommonConfig
:type color: bool
:type ansible_config: str | None
:rtype: dict[str, str]
"""
env = common_environment()
path = env['PATH']
ansible_path = os.path.join(INSTALL_ROOT, 'bin')
if not path.startswith(ansible_path + os.path.pathsep):
path = ansible_path + os.path.pathsep + path
if ansible_config:
pass
elif isinstance(args, IntegrationConfig):
ansible_config = os.path.join(INSTALL_ROOT, 'test/integration/%s.cfg' % args.command)
2017-10-04 20:36:53 +02:00
else:
ansible_config = os.path.join(INSTALL_ROOT, 'test/%s/ansible.cfg' % args.command)
2017-10-04 20:36:53 +02:00
if not args.explain and not os.path.exists(ansible_config):
2017-10-04 20:36:53 +02:00
raise ApplicationError('Configuration not found: %s' % ansible_config)
ansible = dict(
ANSIBLE_PYTHON_MODULE_RLIMIT_NOFILE=str(SOFT_RLIMIT_NOFILE),
ANSIBLE_FORCE_COLOR='%s' % 'true' if args.color and color else 'false',
ANSIBLE_DEPRECATION_WARNINGS='false',
ANSIBLE_HOST_KEY_CHECKING='false',
ANSIBLE_RETRY_FILES_ENABLED='false',
2017-10-04 20:36:53 +02:00
ANSIBLE_CONFIG=os.path.abspath(ansible_config),
ANSIBLE_LIBRARY='/dev/null',
PYTHONPATH=os.path.join(INSTALL_ROOT, 'lib'),
PAGER='/bin/cat',
PATH=path,
)
env.update(ansible)
if args.debug:
env.update(dict(
ANSIBLE_DEBUG='true',
ANSIBLE_LOG_PATH=os.path.abspath('test/results/logs/debug.log'),
))
return env
2019-06-05 07:08:23 +02:00
def check_pyyaml(args, version):
"""
:type args: EnvironmentConfig
:type version: str
"""
if version in CHECK_YAML_VERSIONS:
return
python = find_python(version)
stdout, _dummy = run_command(args, [python, os.path.join(INSTALL_ROOT, 'test/runner/yamlcheck.py')], capture=True)
2019-06-05 07:08:23 +02:00
if args.explain:
return
CHECK_YAML_VERSIONS[version] = result = json.loads(stdout)
yaml = result['yaml']
cloader = result['cloader']
if not yaml:
display.warning('PyYAML is not installed for interpreter: %s' % python)
elif not cloader:
display.warning('PyYAML will be slow due to installation without libyaml support for interpreter: %s' % python)