mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
3.9 KiB
YAML
147 lines
3.9 KiB
YAML
---
|
|
# 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
|