1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/docker_image/tasks/main.yml
Felix Fontein f19ab56eb4 docker_image, docker_image_facts, docker_volume: add basic integration tests (#47383)
* Add docker_image_facts tests.

* Add basic integration test for docker_volume.

* Add basic docker_image tests.

* Only start test registry when tests are actually run (i.e. not on CentOS 6).
2018-10-26 10:51:41 +10:00

51 lines
1.4 KiB
YAML

---
- name: Create random name prefix and test registry name
set_fact:
name_prefix: "{{ 'ansible-test-%0x' % ((2**32) | random) }}"
registry_name: "{{ 'ansible-test-registry-%0x' % ((2**32) | random) }}"
- name: Create image and container list
set_fact:
inames: []
cnames:
- "{{ registry_name }}"
- debug:
msg: "Using name prefix {{ name_prefix }} and test registry name {{ registry_name }}"
- block:
- name: Start test registry
docker_container:
name: "{{ registry_name }}"
image: registry:2.6.1
ports: 5000
- name: Get registry URL
set_fact:
registry_address: "localhost:{{ docker_container.NetworkSettings.Ports['5000/tcp'].0.HostPort }}"
- debug: msg="Registry available under {{ registry_address }}"
- include_tasks: run-test.yml
with_fileglob:
- "tests/*.yml"
always:
- name: "Make sure all images are removed"
docker_image:
name: "{{ item }}"
state: absent
with_items: "{{ inames }}"
- name: "Get registry logs"
command: "docker logs {{ registry_name }}"
register: registry_logs
- name: "Printing registry logs"
debug: var=registry_logs.stdout_lines
- name: "Make sure all containers are removed"
docker_container:
name: "{{ item }}"
state: absent
stop_timeout: 1
with_items: "{{ cnames }}"
# Skip for CentOS 6
when: ansible_distribution != 'CentOS' or ansible_distribution_major_version|int > 6