Fix ansible-test target dependency issues. (#50908)

* Log dependencies at verbosity level 4.

This makes it easier to debug target dependency issues.

* Scan symlinks for target dependencies.

Some test targets use symlinks to files in other test targets.
These dependencies were previously undetected. This could result in
changes made to dependencies without triggering the dependent tests.

* Track missing target deps with `needs/target/*`.

Some existing test targets have untracked dependencies on other
test targets. This can result in changes to those dependencies
not triggering their dependent tests, resulting in test failures
after a PR is merged.

This PR adds the appropriate `needs/target/*` aliases to track
those dependencies, along with appropriate processing in
ansible-test to handle the new aliases.

* Scan meta dependencies in script targets.

Script targets are often former role targets which were converted
to allow custom invocations of ansible-playbook. These targets still
have their meta dependencies, but they were not being detected.

This could result in changes to dependencies not triggering the
targets which depend on them.
pull/50915/head
Matt Clay 5 years ago committed by GitHub
parent 8c5b2048de
commit 7b4bc572de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1 +1,2 @@
shippable/posix/group3
needs/target/binary_modules

@ -1,3 +1,4 @@
shippable/windows/group1
shippable/windows/smoketest
windows
needs/target/binary_modules

@ -1,3 +1,4 @@
windows
shippable/windows/group1
shippable/windows/smoketest
needs/target/connection

@ -1,3 +1,4 @@
windows
shippable/windows/group1
shippable/windows/smoketest
needs/target/connection

@ -1,2 +1,3 @@
shippable/posix/group2
destructive
needs/target/setup_openssl

@ -1,2 +1,3 @@
needs/root
shippable/posix/group2
needs/target/template

@ -12,6 +12,7 @@ import sys
from lib.util import (
ApplicationError,
display,
read_lines_without_comments,
)
@ -342,6 +343,8 @@ def analyze_integration_target_dependencies(integration_targets):
:type integration_targets: list[IntegrationTarget]
:rtype: dict[str,set[str]]
"""
real_target_root = os.path.realpath('test/integration/targets') + '/'
role_targets = [t for t in integration_targets if t.type == 'role']
hidden_role_target_names = set(t.name for t in role_targets if 'hidden/' in t.aliases)
@ -352,9 +355,37 @@ def analyze_integration_target_dependencies(integration_targets):
for setup_target_name in target.setup_always + target.setup_once:
dependencies[setup_target_name].add(target.name)
# handle target dependencies
for target in integration_targets:
for need_target in target.needs_target:
dependencies[need_target].add(target.name)
# handle symlink dependencies between targets
# this use case is supported, but discouraged
for target in integration_targets:
for root, _dummy, file_names in os.walk(target.path):
for name in file_names:
path = os.path.join(root, name)
if not os.path.islink(path):
continue
real_link_path = os.path.realpath(path)
if not real_link_path.startswith(real_target_root):
continue
link_target = real_link_path[len(real_target_root):].split('/')[0]
if link_target == target.name:
continue
dependencies[link_target].add(target.name)
# intentionally primitive analysis of role meta to avoid a dependency on pyyaml
for role_target in role_targets:
meta_dir = os.path.join(role_target.path, 'meta')
# script based targets are scanned as they may execute a playbook with role dependencies
for target in integration_targets:
meta_dir = os.path.join(target.path, 'meta')
if not os.path.isdir(meta_dir):
continue
@ -375,7 +406,7 @@ def analyze_integration_target_dependencies(integration_targets):
for hidden_target_name in hidden_role_target_names:
if hidden_target_name in meta_line:
dependencies[hidden_target_name].add(role_target.name)
dependencies[hidden_target_name].add(target.name)
while True:
changes = 0
@ -393,6 +424,17 @@ def analyze_integration_target_dependencies(integration_targets):
if not changes:
break
for target_name in sorted(dependencies):
consumers = dependencies[target_name]
if not consumers:
continue
display.info('%s:' % target_name, verbosity=4)
for consumer in sorted(consumers):
display.info(' %s' % consumer, verbosity=4)
return dependencies
@ -608,6 +650,7 @@ class IntegrationTarget(CompletionTarget):
self.setup_once = tuple(sorted(set(g.split('/')[2] for g in groups if g.startswith('setup/once/'))))
self.setup_always = tuple(sorted(set(g.split('/')[2] for g in groups if g.startswith('setup/always/'))))
self.needs_target = tuple(sorted(set(g.split('/')[2] for g in groups if g.startswith('needs/target/'))))
class TargetPatternsNotMatched(ApplicationError):

Loading…
Cancel
Save