mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
44679e71a2
* Extract common functionality. * Refactor duplicated code into module_utils. * Fixed ansible-test issues. * Address review comments. * Revert changes to consul_acl. It uses deprecated APIs disabled since Consul 1.11 (which is EOL), don't bother updating the module anymore. * Remove unused code. * Merge token into default doc fragment. * JSON all the way down. * extract validation tests into custom file and prep for requests removal. * Removed dependency on requests. * Initial test for consul_kv. * fixup license headers. * Revert changes to consul.py since it utilizes python-consul. * Disable the lookup test for now. * Fix python 2.7 support. * Address review comments. * Address review comments. * Addec changelog fragment. * Mark ConsulModule as private.
130 lines
3.1 KiB
YAML
130 lines
3.1 KiB
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: list sessions
|
|
consul_session:
|
|
state: list
|
|
token: "{{ consul_management_token }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- result is changed
|
|
- "'sessions' in result"
|
|
|
|
- name: create a session
|
|
consul_session:
|
|
state: present
|
|
name: testsession
|
|
token: "{{ consul_management_token }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- result is changed
|
|
- result['name'] == 'testsession'
|
|
- "'session_id' in result"
|
|
|
|
- set_fact:
|
|
session_id: "{{ result['session_id'] }}"
|
|
|
|
- name: list sessions after creation
|
|
consul_session:
|
|
state: list
|
|
token: "{{ consul_management_token }}"
|
|
register: result
|
|
|
|
- set_fact:
|
|
session_count: "{{ result['sessions'] | length }}"
|
|
|
|
- assert:
|
|
that:
|
|
- result is changed
|
|
# selectattr not available on Jinja 2.2 provided by CentOS 6
|
|
# hence the two following tasks (set_fact/assert) are used
|
|
# - (result['sessions'] | selectattr('ID', 'match', '^' ~ session_id ~ '$') | first)['Name'] == 'testsession'
|
|
|
|
- name: search created session
|
|
set_fact:
|
|
test_session_found: true
|
|
loop: "{{ result['sessions'] }}"
|
|
when: "item.get('ID') == session_id and item.get('Name') == 'testsession'"
|
|
|
|
- name: ensure session was created
|
|
assert:
|
|
that:
|
|
- test_session_found|default(false)
|
|
|
|
- name: fetch info about a session
|
|
consul_session:
|
|
state: info
|
|
id: '{{ session_id }}'
|
|
token: "{{ consul_management_token }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- result is changed
|
|
|
|
- name: ensure 'id' parameter is required when state=info
|
|
consul_session:
|
|
state: info
|
|
name: test
|
|
token: "{{ consul_management_token }}"
|
|
register: result
|
|
ignore_errors: true
|
|
|
|
- assert:
|
|
that:
|
|
- result is failed
|
|
|
|
- name: delete a session
|
|
consul_session:
|
|
state: absent
|
|
id: '{{ session_id }}'
|
|
token: "{{ consul_management_token }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- result is changed
|
|
|
|
- name: list sessions after deletion
|
|
consul_session:
|
|
state: list
|
|
token: "{{ consul_management_token }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- result is changed
|
|
# selectattr and equalto not available on Jinja 2.2 provided by CentOS 6
|
|
# hence the two following tasks (command/assert) are used
|
|
# - (result['sessions'] | selectattr('ID', 'equalto', session_id) | list | length) == 0
|
|
|
|
- name: search deleted session
|
|
command: echo 'session found'
|
|
loop: "{{ result['sessions'] }}"
|
|
when: "item.get('ID') == session_id and item.get('Name') == 'testsession'"
|
|
register: search_deleted
|
|
|
|
- name: ensure session was deleted
|
|
assert:
|
|
that:
|
|
- search_deleted is skipped # each iteration is skipped
|
|
- search_deleted is not changed # and then unchanged
|
|
|
|
- name: ensure session can be created with a ttl
|
|
consul_session:
|
|
state: present
|
|
name: session-with-ttl
|
|
ttl: 180 # sec
|
|
token: "{{ consul_management_token }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- result is changed
|
|
- result['ttl'] == 180
|