mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-29 11:55:04 +00:00
Improve and fix tests (#36)
* Parameterize test images. * Use different images, similar to ansible/ansible#72698.
This commit is contained in:
@@ -7,12 +7,12 @@
|
||||
- block:
|
||||
- name: Make sure image is not there
|
||||
docker_image:
|
||||
name: alpine:3.7
|
||||
name: "{{ docker_test_image_alpine_different }}"
|
||||
state: absent
|
||||
|
||||
- name: Inspect a non-available image
|
||||
docker_image_info:
|
||||
name: alpine:3.7
|
||||
name: "{{ docker_test_image_alpine_different }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
@@ -25,24 +25,24 @@
|
||||
source: pull
|
||||
state: present
|
||||
loop:
|
||||
- "hello-world:latest"
|
||||
- "alpine:3.8"
|
||||
- "{{ docker_test_image_hello_world }}:latest"
|
||||
- "{{ docker_test_image_alpine }}"
|
||||
|
||||
- name: Inspect an available image
|
||||
docker_image_info:
|
||||
name: hello-world:latest
|
||||
name: "{{ docker_test_image_hello_world }}:latest"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.images|length == 1"
|
||||
- "'hello-world:latest' in result.images[0].RepoTags"
|
||||
- "(docker_test_image_hello_world ~ ':latest') in result.images[0].RepoTags"
|
||||
|
||||
- name: Inspect multiple images
|
||||
docker_image_info:
|
||||
name:
|
||||
- "hello-world:latest"
|
||||
- "alpine:3.8"
|
||||
- "{{ docker_test_image_hello_world }}:latest"
|
||||
- "{{ docker_test_image_alpine }}"
|
||||
register: result
|
||||
|
||||
- debug: var=result
|
||||
@@ -50,8 +50,8 @@
|
||||
- assert:
|
||||
that:
|
||||
- "result.images|length == 2"
|
||||
- "'hello-world:latest' in result.images[0].RepoTags"
|
||||
- "'alpine:3.8' in result.images[1].RepoTags"
|
||||
- "(docker_test_image_hello_world ~ ':latest') in result.images[0].RepoTags"
|
||||
- "docker_test_image_alpine in result.images[1].RepoTags"
|
||||
|
||||
when: docker_py_version is version('1.8.0', '>=') and docker_api_version is version('1.20', '>=')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user