mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
docker_image, docker_image_facts, docker_volume: add basic integration tests (#47383)
* Add docker_image_facts tests. * Add basic integration test for docker_volume. * Add basic docker_image tests. * Only start test registry when tests are actually run (i.e. not on CentOS 6).
This commit is contained in:
parent
300db3af84
commit
f19ab56eb4
13 changed files with 353 additions and 0 deletions
4
test/integration/targets/docker_image_facts/aliases
Normal file
4
test/integration/targets/docker_image_facts/aliases
Normal file
|
@ -0,0 +1,4 @@
|
|||
shippable/posix/group2
|
||||
skip/osx
|
||||
skip/freebsd
|
||||
destructive
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
dependencies:
|
||||
- setup_docker
|
52
test/integration/targets/docker_image_facts/tasks/main.yml
Normal file
52
test/integration/targets/docker_image_facts/tasks/main.yml
Normal file
|
@ -0,0 +1,52 @@
|
|||
---
|
||||
- block:
|
||||
- name: Make sure image is not there
|
||||
docker_image:
|
||||
name: alpine:3.7
|
||||
state: absent
|
||||
|
||||
- name: Inspect a non-available image
|
||||
docker_image_facts:
|
||||
name: alpine:3.7
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.images|length == 0"
|
||||
|
||||
- name: Make sure images are there
|
||||
docker_image:
|
||||
name: "{{ item }}"
|
||||
pull: yes
|
||||
state: present
|
||||
loop:
|
||||
- "hello-world:latest"
|
||||
- "alpine:3.8"
|
||||
|
||||
- name: Inspect an available image
|
||||
docker_image_facts:
|
||||
name: hello-world:latest
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.images|length == 1"
|
||||
- "'hello-world:latest' in result.images[0].RepoTags"
|
||||
|
||||
- name: Inspect multiple images
|
||||
docker_image_facts:
|
||||
name:
|
||||
- "hello-world:latest"
|
||||
- "alpine:3.8"
|
||||
register: result
|
||||
|
||||
- debug: var=result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.images|length == 2"
|
||||
- "'hello-world:latest' in result.images[0].RepoTags"
|
||||
- "'alpine:3.8' in result.images[1].RepoTags"
|
||||
|
||||
# Skip for CentOS 6
|
||||
when: ansible_distribution != 'CentOS' or ansible_distribution_major_version|int > 6
|
Loading…
Add table
Add a link
Reference in a new issue