2020-03-09 10:11:07 +01:00
---
2020-09-25 09:04:59 +02:00
####################################################################
# WARNING: These are designed specifically for Ansible tests #
# and should not be used as examples of how to write Ansible roles #
####################################################################
2020-03-09 10:11:07 +01:00
- block :
- name : Make sure image is not there
docker_image :
2020-11-26 13:21:12 +01:00
name : "{{ docker_test_image_alpine_different }}"
2020-03-09 10:11:07 +01:00
state : absent
- name : Inspect a non-available image
docker_image_info :
2020-11-26 13:21:12 +01:00
name : "{{ docker_test_image_alpine_different }}"
2020-03-09 10:11:07 +01:00
register : result
- assert :
that :
- "result.images|length == 0"
- name : Make sure images are there
docker_image :
name : "{{ item }}"
source : pull
state : present
loop :
2020-12-15 20:20:43 +01:00
- "{{ docker_test_image_hello_world }}"
2020-11-26 13:21:12 +01:00
- "{{ docker_test_image_alpine }}"
2020-03-09 10:11:07 +01:00
- name : Inspect an available image
docker_image_info :
2020-12-15 20:20:43 +01:00
name : "{{ docker_test_image_hello_world }}"
2020-03-09 10:11:07 +01:00
register : result
- assert :
that :
- "result.images|length == 1"
2020-12-15 20:20:43 +01:00
- "docker_test_image_hello_world in result.images[0].RepoTags"
2020-03-09 10:11:07 +01:00
- name : Inspect multiple images
docker_image_info :
name :
2020-12-15 20:20:43 +01:00
- "{{ docker_test_image_hello_world }}"
2020-11-26 13:21:12 +01:00
- "{{ docker_test_image_alpine }}"
2020-03-09 10:11:07 +01:00
register : result
- debug : var=result
- assert :
that :
- "result.images|length == 2"
2020-12-15 20:20:43 +01:00
- "docker_test_image_hello_world in result.images[0].RepoTags"
2020-11-26 13:21:12 +01:00
- "docker_test_image_alpine in result.images[1].RepoTags"
2020-03-09 10:11:07 +01:00
when : docker_py_version is version('1.8.0', '>=') and docker_api_version is version('1.20', '>=')
- fail : msg="Too old docker / docker-py version to run docker_image_info tests!"
when : not(docker_py_version is version('1.8.0', '>=') and docker_api_version is version('1.20', '>=')) and (ansible_distribution != 'CentOS' or ansible_distribution_major_version|int > 6)