mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
146
tests/integration/targets/hwc_vpc_peering_connect/tasks/main.yml
Normal file
146
tests/integration/targets/hwc_vpc_peering_connect/tasks/main.yml
Normal file
|
@ -0,0 +1,146 @@
|
|||
---
|
||||
# Pre-test setup
|
||||
- name: create a vpc
|
||||
hwc_network_vpc:
|
||||
cidr: "192.168.0.0/16"
|
||||
name: "ansible_network_vpc_test_local"
|
||||
state: present
|
||||
register: vpc1
|
||||
- name: create a vpc
|
||||
hwc_network_vpc:
|
||||
cidr: "192.168.0.0/16"
|
||||
name: "ansible_network_vpc_test_peering"
|
||||
state: present
|
||||
register: vpc2
|
||||
- name: delete a peering connect
|
||||
hwc_vpc_peering_connect:
|
||||
local_vpc_id: "{{ vpc1.id }}"
|
||||
name: "ansible_network_peering_test"
|
||||
peering_vpc:
|
||||
vpc_id: "{{ vpc2.id }}"
|
||||
state: absent
|
||||
#----------------------------------------------------------
|
||||
- name: create a peering connect (check mode)
|
||||
hwc_vpc_peering_connect:
|
||||
local_vpc_id: "{{ vpc1.id }}"
|
||||
name: "ansible_network_peering_test"
|
||||
peering_vpc:
|
||||
vpc_id: "{{ vpc2.id }}"
|
||||
state: present
|
||||
check_mode: yes
|
||||
register: result
|
||||
- name: assert changed is true
|
||||
assert:
|
||||
that:
|
||||
- not result.id
|
||||
- result.changed
|
||||
#----------------------------------------------------------
|
||||
- name: create a peering connect
|
||||
hwc_vpc_peering_connect:
|
||||
local_vpc_id: "{{ vpc1.id }}"
|
||||
name: "ansible_network_peering_test"
|
||||
peering_vpc:
|
||||
vpc_id: "{{ vpc2.id }}"
|
||||
state: present
|
||||
register: result
|
||||
- name: assert changed is true
|
||||
assert:
|
||||
that:
|
||||
result is changed
|
||||
#----------------------------------------------------------
|
||||
- name: create a peering connect (idemponent)
|
||||
hwc_vpc_peering_connect:
|
||||
local_vpc_id: "{{ vpc1.id }}"
|
||||
name: "ansible_network_peering_test"
|
||||
peering_vpc:
|
||||
vpc_id: "{{ vpc2.id }}"
|
||||
state: present
|
||||
check_mode: yes
|
||||
register: result
|
||||
- name: idemponent
|
||||
assert:
|
||||
that:
|
||||
- not result.changed
|
||||
# ----------------------------------------------------------------------------
|
||||
- name: create a peering connect that already exists
|
||||
hwc_vpc_peering_connect:
|
||||
local_vpc_id: "{{ vpc1.id }}"
|
||||
name: "ansible_network_peering_test"
|
||||
peering_vpc:
|
||||
vpc_id: "{{ vpc2.id }}"
|
||||
state: present
|
||||
register: result
|
||||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- result.failed == 0
|
||||
- result.changed == false
|
||||
#----------------------------------------------------------
|
||||
- name: delete a peering connect (check mode)
|
||||
hwc_vpc_peering_connect:
|
||||
local_vpc_id: "{{ vpc1.id }}"
|
||||
name: "ansible_network_peering_test"
|
||||
peering_vpc:
|
||||
vpc_id: "{{ vpc2.id }}"
|
||||
state: absent
|
||||
check_mode: yes
|
||||
register: result
|
||||
- name: assert changed is true
|
||||
assert:
|
||||
that:
|
||||
result is changed
|
||||
#----------------------------------------------------------
|
||||
- name: delete a peering connect
|
||||
hwc_vpc_peering_connect:
|
||||
local_vpc_id: "{{ vpc1.id }}"
|
||||
name: "ansible_network_peering_test"
|
||||
peering_vpc:
|
||||
vpc_id: "{{ vpc2.id }}"
|
||||
state: absent
|
||||
register: result
|
||||
- name: assert changed is true
|
||||
assert:
|
||||
that:
|
||||
result is changed
|
||||
#----------------------------------------------------------
|
||||
- name: delete a peering connect (idemponent)
|
||||
hwc_vpc_peering_connect:
|
||||
local_vpc_id: "{{ vpc1.id }}"
|
||||
name: "ansible_network_peering_test"
|
||||
peering_vpc:
|
||||
vpc_id: "{{ vpc2.id }}"
|
||||
state: absent
|
||||
check_mode: yes
|
||||
register: result
|
||||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- not result.changed
|
||||
# ----------------------------------------------------------------------------
|
||||
- name: delete a peering connect that does not exist
|
||||
hwc_vpc_peering_connect:
|
||||
local_vpc_id: "{{ vpc1.id }}"
|
||||
name: "ansible_network_peering_test"
|
||||
peering_vpc:
|
||||
vpc_id: "{{ vpc2.id }}"
|
||||
state: absent
|
||||
register: result
|
||||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- result.failed == 0
|
||||
- result.changed == false
|
||||
#---------------------------------------------------------
|
||||
# Post-test teardown
|
||||
- name: delete a vpc
|
||||
hwc_network_vpc:
|
||||
cidr: "192.168.0.0/16"
|
||||
name: "ansible_network_vpc_test_peering"
|
||||
state: absent
|
||||
register: vpc2
|
||||
- name: delete a vpc
|
||||
hwc_network_vpc:
|
||||
cidr: "192.168.0.0/16"
|
||||
name: "ansible_network_vpc_test_local"
|
||||
state: absent
|
||||
register: vpc1
|
Loading…
Add table
Add a link
Reference in a new issue