[stable-1] Fix docker tests (#1398)

* Adjust version_added, re-place tests. (#34)

* Template docker test containers.

* Forgot to adjust test.
This commit is contained in:
Felix Fontein 2020-11-26 13:21:12 +01:00 committed by GitHub
commit e03431d9f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
55 changed files with 823 additions and 801 deletions

View file

@ -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', '>=')