summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-galaxy-collection-scm/tasks/download.yml
blob: 6b52bd1dd2187f776d9664b2b1941f6b972534b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
- 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