Improve and fix tests (#36)

* Parameterize test images.

* Use different images, similar to ansible/ansible#72698.
This commit is contained in:
Felix Fontein
2020-11-23 21:48:46 +01:00
committed by GitHub
parent 1fa2c3b77d
commit 219c6b3a85
55 changed files with 804 additions and 778 deletions
@@ -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', '>=')