You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/ansible-galaxy-collection-scm/tasks/download.yml

49 lines
1.6 KiB
YAML

- name: create test download dir
file:
path: '{{ galaxy_dir }}/download'
state: directory
- name: download a git repository
command: >
ansible-galaxy collection download
git+https://github.com/ansible-collections/amazon.aws.git,37875c5b4ba5bf3cc43e07edf29f3432fd76def5
git+https://github.com/AlanCoding/awx.git#awx_collection,750c22a150d04eef1cb625fd4f83cce57949416c
--no-deps
args:
chdir: '{{ galaxy_dir }}/download'
register: download_collection
- name: check that the amazon.aws collection was downloaded
stat:
path: '{{ galaxy_dir }}/download/collections/amazon-aws-1.0.0.tar.gz'
register: download_collection_amazon_actual
- name: check that the awx.awx collection was downloaded
stat:
path: '{{ galaxy_dir }}/download/collections/awx-awx-0.0.1-devel.tar.gz'
register: download_collection_awx_actual
- assert:
that:
- '"Downloading collection ''amazon.aws:1.0.0'' to" in download_collection.stdout'
- '"Downloading collection ''awx.awx:0.0.1-devel'' to" in download_collection.stdout'
- download_collection_amazon_actual.stat.exists
- download_collection_awx_actual.stat.exists
- name: test the downloaded repository can be installed
command: 'ansible-galaxy collection install -r requirements.yml --no-deps'
args:
chdir: '{{ galaxy_dir }}/download/collections/'
- name: list installed collections
command: 'ansible-galaxy collection list'
register: installed_collections
- assert:
that:
- "'amazon.aws' in installed_collections.stdout"
- "'awx.awx' in installed_collections.stdout"
- include_tasks: ./empty_installed_collections.yml
when: cleanup