mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
d7e55db99b
* Replaced ".changed ==" with "is [not] changed". Same for failed * Mr Quote refused to go
81 lines
2.5 KiB
YAML
81 lines
2.5 KiB
YAML
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
- name: delete a smn topic
|
|
hwc_smn_topic:
|
|
identity_endpoint: "{{ identity_endpoint }}"
|
|
user: "{{ user }}"
|
|
password: "{{ password }}"
|
|
domain: "{{ domain }}"
|
|
project: "{{ project }}"
|
|
region: "{{ region }}"
|
|
name: "ansible_smn_topic_test"
|
|
state: absent
|
|
#----------------------------------------------------------
|
|
- name: create a smn topic
|
|
hwc_smn_topic:
|
|
identity_endpoint: "{{ identity_endpoint }}"
|
|
user: "{{ user }}"
|
|
password: "{{ password }}"
|
|
domain: "{{ domain }}"
|
|
project: "{{ project }}"
|
|
region: "{{ region }}"
|
|
name: "ansible_smn_topic_test"
|
|
state: present
|
|
register: result
|
|
- name: assert changed is true
|
|
assert:
|
|
that:
|
|
- result is changed
|
|
# ----------------------------------------------------------------------------
|
|
- name: create a smn topic that already exists
|
|
hwc_smn_topic:
|
|
identity_endpoint: "{{ identity_endpoint }}"
|
|
user: "{{ user }}"
|
|
password: "{{ password }}"
|
|
domain: "{{ domain }}"
|
|
project: "{{ project }}"
|
|
region: "{{ region }}"
|
|
name: "ansible_smn_topic_test"
|
|
state: present
|
|
register: result
|
|
- name: assert changed is false
|
|
assert:
|
|
that:
|
|
- result is not failed
|
|
- result is not changed
|
|
#----------------------------------------------------------
|
|
- name: delete a smn topic
|
|
hwc_smn_topic:
|
|
identity_endpoint: "{{ identity_endpoint }}"
|
|
user: "{{ user }}"
|
|
password: "{{ password }}"
|
|
domain: "{{ domain }}"
|
|
project: "{{ project }}"
|
|
region: "{{ region }}"
|
|
name: "ansible_smn_topic_test"
|
|
state: absent
|
|
register: result
|
|
- name: assert changed is true
|
|
assert:
|
|
that:
|
|
- result is changed
|
|
# ----------------------------------------------------------------------------
|
|
- name: delete a smn topic that does not exist
|
|
hwc_smn_topic:
|
|
identity_endpoint: "{{ identity_endpoint }}"
|
|
user: "{{ user }}"
|
|
password: "{{ password }}"
|
|
domain: "{{ domain }}"
|
|
project: "{{ project }}"
|
|
region: "{{ region }}"
|
|
name: "ansible_smn_topic_test"
|
|
state: absent
|
|
register: result
|
|
- name: assert changed is false
|
|
assert:
|
|
that:
|
|
- result is not failed
|
|
- result is not changed
|