summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collection
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/collection')
-rw-r--r--test/integration/targets/collection/aliases1
-rwxr-xr-xtest/integration/targets/collection/setup.sh29
-rwxr-xr-xtest/integration/targets/collection/update-ignore.py56
3 files changed, 86 insertions, 0 deletions
diff --git a/test/integration/targets/collection/aliases b/test/integration/targets/collection/aliases
new file mode 100644
index 0000000..136c05e
--- /dev/null
+++ b/test/integration/targets/collection/aliases
@@ -0,0 +1 @@
+hidden
diff --git a/test/integration/targets/collection/setup.sh b/test/integration/targets/collection/setup.sh
new file mode 100755
index 0000000..f1b33a5
--- /dev/null
+++ b/test/integration/targets/collection/setup.sh
@@ -0,0 +1,29 @@
+#!/usr/bin/env bash
+# Source this file from collection integration tests.
+#
+# It simplifies several aspects of collection testing:
+#
+# 1) Collection tests must be executed outside of the ansible source tree.
+# Otherwise ansible-test will test the ansible source instead of the test collection.
+# The temporary directory provided by ansible-test resides within the ansible source tree.
+#
+# 2) Sanity test ignore files for collections must be versioned based on the ansible-core version being used.
+# This script generates an ignore file with the correct filename for the current ansible-core version.
+#
+# 3) Sanity tests which are multi-version require an ignore entry per Python version.
+# This script replicates these ignore entries for each supported Python version based on the ignored path.
+
+set -eu -o pipefail
+
+export TEST_DIR
+export WORK_DIR
+
+TEST_DIR="$PWD"
+WORK_DIR="$(mktemp -d)"
+
+trap 'rm -rf "${WORK_DIR}"' EXIT
+
+cp -a "${TEST_DIR}/ansible_collections" "${WORK_DIR}"
+cd "${WORK_DIR}/ansible_collections/ns/col"
+
+"${TEST_DIR}/../collection/update-ignore.py"
diff --git a/test/integration/targets/collection/update-ignore.py b/test/integration/targets/collection/update-ignore.py
new file mode 100755
index 0000000..92a702c
--- /dev/null
+++ b/test/integration/targets/collection/update-ignore.py
@@ -0,0 +1,56 @@
+#!/usr/bin/env python
+"""Rewrite a sanity ignore file to expand Python versions for import ignores and write the file out with the correct Ansible version in the name."""
+
+import os
+import sys
+
+from ansible import release
+
+
+def main():
+ ansible_root = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(release.__file__))))
+ source_root = os.path.join(ansible_root, 'test', 'lib')
+
+ sys.path.insert(0, source_root)
+
+ from ansible_test._internal import constants
+
+ src_path = 'tests/sanity/ignore.txt'
+
+ if not os.path.exists(src_path):
+ print(f'Skipping updates on non-existent ignore file: {src_path}')
+ return
+
+ directory = os.path.dirname(src_path)
+ name, ext = os.path.splitext(os.path.basename(src_path))
+ major_minor = '.'.join(release.__version__.split('.')[:2])
+ dst_path = os.path.join(directory, f'{name}-{major_minor}{ext}')
+
+ with open(src_path) as src_file:
+ src_lines = src_file.read().splitlines()
+
+ dst_lines = []
+
+ for line in src_lines:
+ path, rule = line.split(' ')
+
+ if rule != 'import':
+ dst_lines.append(line)
+ continue
+
+ if path.startswith('plugins/module'):
+ python_versions = constants.SUPPORTED_PYTHON_VERSIONS
+ else:
+ python_versions = constants.CONTROLLER_PYTHON_VERSIONS
+
+ for python_version in python_versions:
+ dst_lines.append(f'{line}-{python_version}')
+
+ ignores = '\n'.join(dst_lines) + '\n'
+
+ with open(dst_path, 'w') as dst_file:
+ dst_file.write(ignores)
+
+
+if __name__ == '__main__':
+ main()