mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-05 13:44:24 -07:00
[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:
parent
ab94b0ace0
commit
e03431d9f6
55 changed files with 823 additions and 801 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', '>=')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue