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/tests/integration/targets/hwc_vpc_security_group/tasks/main.yml

88 lines
2.6 KiB
YAML
Raw Normal View History

2020-03-09 10:11:07 +01: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
# Pre-test setup
- name: delete a security group
hwc_vpc_security_group:
name: "ansible_network_security_group_test"
state: absent
#----------------------------------------------------------
- name: create a security group (check mode)
hwc_vpc_security_group:
name: "ansible_network_security_group_test"
state: present
check_mode: yes
register: result
- name: assert changed is true
assert:
that:
- not result.id
- result.changed
#----------------------------------------------------------
- name: create a security group
hwc_vpc_security_group:
name: "ansible_network_security_group_test"
state: present
register: result
- name: assert changed is true
assert:
that:
result is changed
#----------------------------------------------------------
- name: create a security group (idemponent)
hwc_vpc_security_group:
name: "ansible_network_security_group_test"
state: present
check_mode: yes
register: idemponent
- name: idemponent
assert:
that:
- not result.changed
# ----------------------------------------------------------------------------
- name: create a security group that already exists
hwc_vpc_security_group:
name: "ansible_network_security_group_test"
state: present
register: result
- name: assert changed is false
assert:
that:
- result is not failed
- result is not changed
2020-03-09 10:11:07 +01:00
#----------------------------------------------------------
- name: delete a security group (check mode)
hwc_vpc_security_group:
name: "ansible_network_security_group_test"
state: absent
check_mode: yes
register: result
- name: assert changed is true
assert:
that:
result is changed
#----------------------------------------------------------
- name: delete a security group
hwc_vpc_security_group:
name: "ansible_network_security_group_test"
state: absent
register: result
- name: assert changed is true
assert:
that:
result is changed
# ----------------------------------------------------------------------------
- name: delete a security group that does not exist
hwc_vpc_security_group:
name: "ansible_network_security_group_test"
state: absent
register: result
- name: assert changed is false
assert:
that:
- result is not failed
- result is not changed