mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-29 11:55:04 +00:00
Use FQCNs. (#1180)
This commit is contained in:
@@ -4,20 +4,20 @@
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
- name: Create random name prefix
|
||||
set_fact:
|
||||
ansible.builtin.set_fact:
|
||||
name_prefix: "vieux/sshfs"
|
||||
plugin_names: []
|
||||
|
||||
- debug:
|
||||
- ansible.builtin.debug:
|
||||
msg: "Using name prefix {{ name_prefix }}"
|
||||
|
||||
- name: Check whether /dev/fuse exists
|
||||
stat:
|
||||
ansible.builtin.stat:
|
||||
path: /dev/fuse
|
||||
register: dev_fuse_stat
|
||||
|
||||
- block:
|
||||
- include_tasks: run-test.yml
|
||||
- ansible.builtin.include_tasks: run-test.yml
|
||||
with_fileglob:
|
||||
- "tests/*.yml"
|
||||
loop_control:
|
||||
@@ -25,12 +25,12 @@
|
||||
|
||||
always:
|
||||
- name: "Make sure plugin is removed"
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ item }}"
|
||||
state: absent
|
||||
with_items: "{{ plugin_names }}"
|
||||
|
||||
when: docker_api_version is version('1.25', '>=') and dev_fuse_stat.stat.exists
|
||||
|
||||
- fail: msg="Too old docker / docker-py version to run docker_plugin tests!"
|
||||
- ansible.builtin.fail: msg="Too old docker / docker-py version to run docker_plugin tests!"
|
||||
when: not(docker_api_version is version('1.25', '>=')) and (ansible_distribution != 'CentOS' or ansible_distribution_major_version|int > 6)
|
||||
|
||||
@@ -4,4 +4,4 @@
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
- name: "Loading tasks from {{ test_name }}"
|
||||
include_tasks: "{{ test_name }}"
|
||||
ansible.builtin.include_tasks: "{{ test_name }}"
|
||||
|
||||
@@ -4,127 +4,127 @@
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
- name: Registering plugin name
|
||||
set_fact:
|
||||
ansible.builtin.set_fact:
|
||||
plugin_name: "{{ name_prefix }}"
|
||||
|
||||
- name: Registering container name
|
||||
set_fact:
|
||||
ansible.builtin.set_fact:
|
||||
plugin_names: "{{ plugin_names + [plugin_name] }}"
|
||||
|
||||
############ basic test ############
|
||||
####################################
|
||||
|
||||
- name: Create a plugin (check mode)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: present
|
||||
register: create_1_check
|
||||
check_mode: true
|
||||
|
||||
- name: Create a plugin
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: present
|
||||
register: create_1
|
||||
|
||||
- name: Create a plugin (Idempotent, check mode)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: present
|
||||
register: create_2_check
|
||||
check_mode: true
|
||||
|
||||
- name: Create a plugin (Idempotent)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: present
|
||||
register: create_2
|
||||
|
||||
- name: Enable a plugin (check mode)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: enable
|
||||
register: create_3_check
|
||||
check_mode: true
|
||||
|
||||
- name: Enable a plugin
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: enable
|
||||
register: create_3
|
||||
|
||||
- name: Enable a plugin (Idempotent, check mode)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: enable
|
||||
register: create_4_check
|
||||
check_mode: true
|
||||
|
||||
- name: Enable a plugin (Idempotent)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: enable
|
||||
register: create_4
|
||||
|
||||
- name: Disable a plugin (check mode)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: disable
|
||||
register: absent_1_check
|
||||
check_mode: true
|
||||
|
||||
- name: Disable a plugin
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: disable
|
||||
register: absent_1
|
||||
|
||||
- name: Disable a plugin (Idempotent, check mode)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: disable
|
||||
register: absent_2_check
|
||||
check_mode: true
|
||||
|
||||
- name: Disable a plugin (Idempotent)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: disable
|
||||
register: absent_2
|
||||
|
||||
- name: Remove a plugin (check mode)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: absent
|
||||
register: absent_3_check
|
||||
check_mode: true
|
||||
|
||||
- name: Remove a plugin
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: absent
|
||||
register: absent_3
|
||||
|
||||
- name: Remove a plugin (Idempotent, check mode)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: absent
|
||||
register: absent_4_check
|
||||
check_mode: true
|
||||
|
||||
- name: Remove a plugin (Idempotent)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: absent
|
||||
register: absent_4
|
||||
|
||||
- name: Cleanup
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: absent
|
||||
force_remove: true
|
||||
|
||||
- assert:
|
||||
- ansible.builtin.assert:
|
||||
that:
|
||||
- create_1_check is changed
|
||||
- create_1 is changed
|
||||
@@ -147,7 +147,7 @@
|
||||
########################################
|
||||
|
||||
- name: Install a plugin with options
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
plugin_options:
|
||||
DEBUG: '1'
|
||||
@@ -155,7 +155,7 @@
|
||||
register: create_1
|
||||
|
||||
- name: Install a plugin with options (idempotent)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
plugin_options:
|
||||
DEBUG: '1'
|
||||
@@ -163,7 +163,7 @@
|
||||
register: create_2
|
||||
|
||||
- name: Install a plugin with different options
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
plugin_options:
|
||||
DEBUG: '0'
|
||||
@@ -171,7 +171,7 @@
|
||||
register: update_1
|
||||
|
||||
- name: Install a plugin with different options (idempotent)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
plugin_options:
|
||||
DEBUG: '0'
|
||||
@@ -179,12 +179,12 @@
|
||||
register: update_2
|
||||
|
||||
- name: Cleanup
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
state: absent
|
||||
force_remove: true
|
||||
|
||||
- assert:
|
||||
- ansible.builtin.assert:
|
||||
that:
|
||||
- create_1 is changed
|
||||
- create_2 is not changed
|
||||
|
||||
@@ -4,67 +4,67 @@
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
- name: Register plugin name and alias
|
||||
set_fact:
|
||||
ansible.builtin.set_fact:
|
||||
plugin_name: "{{ name_prefix }}"
|
||||
alias: "test"
|
||||
|
||||
- name: Create a plugin with an alias
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
alias: "{{ alias }}"
|
||||
state: present
|
||||
register: create_1
|
||||
|
||||
- name: Create a plugin with an alias (Idempotent)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
alias: "{{ alias }}"
|
||||
state: present
|
||||
register: create_2
|
||||
|
||||
- name: Enable a plugin with an alias
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
alias: "{{ alias }}"
|
||||
state: enable
|
||||
register: create_3
|
||||
|
||||
- name: Enable a plugin with an alias (Idempotent)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
alias: "{{ alias }}"
|
||||
state: enable
|
||||
register: create_4
|
||||
|
||||
- name: Disable a plugin with an alias
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
alias: "{{ alias }}"
|
||||
state: disable
|
||||
register: absent_1
|
||||
|
||||
- name: Disable a plugin with an alias (Idempotent)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
alias: "{{ alias }}"
|
||||
state: disable
|
||||
register: absent_2
|
||||
|
||||
- name: Remove a plugin with an alias
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
alias: "{{ alias }}"
|
||||
state: absent
|
||||
register: absent_3
|
||||
|
||||
- name: Remove a plugin with an alias (Idempotent)
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
alias: "{{ alias }}"
|
||||
state: absent
|
||||
register: absent_4
|
||||
|
||||
- assert:
|
||||
- ansible.builtin.assert:
|
||||
that:
|
||||
- create_1 is changed
|
||||
- create_2 is not changed
|
||||
@@ -76,7 +76,7 @@
|
||||
- absent_4 is not changed
|
||||
|
||||
- name: Cleanup plugin with an alias
|
||||
docker_plugin:
|
||||
community.docker.docker_plugin:
|
||||
plugin_name: "{{ plugin_name }}"
|
||||
alias: "{{ alias }}"
|
||||
state: absent
|
||||
|
||||
Reference in New Issue
Block a user