summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-galaxy-collection/tasks/unsupported_resolvelib.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ansible-galaxy-collection/tasks/unsupported_resolvelib.yml')
-rw-r--r--test/integration/targets/ansible-galaxy-collection/tasks/unsupported_resolvelib.yml44
1 files changed, 44 insertions, 0 deletions
diff --git a/test/integration/targets/ansible-galaxy-collection/tasks/unsupported_resolvelib.yml b/test/integration/targets/ansible-galaxy-collection/tasks/unsupported_resolvelib.yml
new file mode 100644
index 0000000..a208b29
--- /dev/null
+++ b/test/integration/targets/ansible-galaxy-collection/tasks/unsupported_resolvelib.yml
@@ -0,0 +1,44 @@
+- vars:
+ venv_cmd: "{{ ansible_python_interpreter ~ ' -m venv' }}"
+ venv_dest: "{{ galaxy_dir }}/test_resolvelib_{{ resolvelib_version }}"
+ block:
+ - name: install another version of resolvelib that is unsupported by ansible-galaxy
+ pip:
+ name: resolvelib
+ version: "{{ resolvelib_version }}"
+ state: present
+ virtualenv_command: "{{ venv_cmd }}"
+ virtualenv: "{{ venv_dest }}"
+ virtualenv_site_packages: True
+
+ - name: create test collection install directory - {{ test_name }}
+ file:
+ path: '{{ galaxy_dir }}/ansible_collections'
+ state: directory
+
+ - name: install simple collection from first accessible server (expected failure)
+ command: "ansible-galaxy collection install namespace1.name1 {{ galaxy_verbosity }}"
+ environment:
+ ANSIBLE_COLLECTIONS_PATH: '{{ galaxy_dir }}/ansible_collections'
+ PATH: "{{ venv_dest }}/bin:{{ ansible_env.PATH }}"
+ register: resolvelib_version_error
+ ignore_errors: yes
+
+ - assert:
+ that:
+ - resolvelib_version_error is failed
+ - resolvelib_version_error.stderr | regex_search(error)
+ vars:
+ error: "({{ import_error }}|{{ compat_error }})"
+ import_error: "Failed to import resolvelib"
+ compat_error: "ansible-galaxy requires resolvelib<{{major_minor_patch}},>={{major_minor_patch}}"
+ major_minor_patch: "[0-9]\\d*\\.[0-9]\\d*\\.[0-9]\\d*"
+
+ always:
+ - name: cleanup venv and install directory
+ file:
+ path: '{{ galaxy_dir }}/ansible_collections'
+ state: absent
+ loop:
+ - '{{ galaxy_dir }}/ansible_collections'
+ - '{{ venv_dest }}'