2020-03-09 10:11:07 +01:00
|
|
|
---
|
2020-09-25 08:01:17 +02:00
|
|
|
####################################################################
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
####################################################################
|
|
|
|
|
2022-08-05 21:31:34 +02:00
|
|
|
# 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
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
# Pre-test setup
|
|
|
|
- name: create a vpc
|
|
|
|
hwc_network_vpc:
|
|
|
|
cidr: "192.168.100.0/24"
|
|
|
|
name: "ansible_network_vpc_test"
|
|
|
|
state: present
|
|
|
|
register: vpc
|
|
|
|
- name: create a subnet
|
|
|
|
hwc_vpc_subnet:
|
|
|
|
gateway_ip: "192.168.100.32"
|
|
|
|
name: "ansible_network_subnet_test"
|
|
|
|
dhcp_enable: True
|
|
|
|
vpc_id: "{{ vpc.id }}"
|
|
|
|
cidr: "192.168.100.0/26"
|
|
|
|
state: present
|
|
|
|
register: subnet
|
|
|
|
- name: delete a port
|
|
|
|
hwc_vpc_port:
|
|
|
|
subnet_id: "{{ subnet.id }}"
|
|
|
|
ip_address: "192.168.100.33"
|
|
|
|
state: absent
|
|
|
|
#----------------------------------------------------------
|
|
|
|
- name: create a port (check mode)
|
|
|
|
hwc_vpc_port:
|
|
|
|
subnet_id: "{{ subnet.id }}"
|
|
|
|
ip_address: "192.168.100.33"
|
|
|
|
state: present
|
|
|
|
check_mode: yes
|
|
|
|
register: result
|
|
|
|
- name: assert changed is true
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- result is changed
|
|
|
|
#----------------------------------------------------------
|
|
|
|
- name: create a port
|
|
|
|
hwc_vpc_port:
|
|
|
|
subnet_id: "{{ subnet.id }}"
|
|
|
|
ip_address: "192.168.100.33"
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
- name: assert changed is true
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- result is changed
|
|
|
|
#----------------------------------------------------------
|
|
|
|
- name: create a port (idemponent)
|
|
|
|
hwc_vpc_port:
|
|
|
|
subnet_id: "{{ subnet.id }}"
|
|
|
|
ip_address: "192.168.100.33"
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
- name: idemponent
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- not result.changed
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
- name: create a port that already exists
|
|
|
|
hwc_vpc_port:
|
|
|
|
subnet_id: "{{ subnet.id }}"
|
|
|
|
ip_address: "192.168.100.33"
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
- name: assert changed is false
|
|
|
|
assert:
|
|
|
|
that:
|
2021-05-22 13:51:36 +02:00
|
|
|
- result is not failed
|
|
|
|
- result is not changed
|
2020-03-09 10:11:07 +01:00
|
|
|
#----------------------------------------------------------
|
|
|
|
- name: delete a port (check mode)
|
|
|
|
hwc_vpc_port:
|
|
|
|
subnet_id: "{{ subnet.id }}"
|
|
|
|
ip_address: "192.168.100.33"
|
|
|
|
state: absent
|
|
|
|
check_mode: yes
|
|
|
|
register: result
|
|
|
|
- name: assert changed is true
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- result is changed
|
|
|
|
#----------------------------------------------------------
|
|
|
|
- name: delete a port
|
|
|
|
hwc_vpc_port:
|
|
|
|
subnet_id: "{{ subnet.id }}"
|
|
|
|
ip_address: "192.168.100.33"
|
|
|
|
state: absent
|
|
|
|
register: result
|
|
|
|
- name: assert changed is true
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- result is changed
|
|
|
|
#----------------------------------------------------------
|
|
|
|
- name: delete a port (idemponent)
|
|
|
|
hwc_vpc_port:
|
|
|
|
subnet_id: "{{ subnet.id }}"
|
|
|
|
ip_address: "192.168.100.33"
|
|
|
|
state: absent
|
|
|
|
check_mode: yes
|
|
|
|
register: result
|
|
|
|
- name: idemponent
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- not result.changed
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
- name: delete a port that does not exist
|
|
|
|
hwc_vpc_port:
|
|
|
|
subnet_id: "{{ subnet.id }}"
|
|
|
|
ip_address: "192.168.100.33"
|
|
|
|
state: absent
|
|
|
|
register: result
|
|
|
|
- name: assert changed is false
|
|
|
|
assert:
|
|
|
|
that:
|
2021-05-22 13:51:36 +02:00
|
|
|
- result is not failed
|
|
|
|
- result is not changed
|
2020-03-09 10:11:07 +01:00
|
|
|
#---------------------------------------------------------
|
|
|
|
# Post-test teardown
|
|
|
|
- name: delete a subnet
|
|
|
|
hwc_vpc_subnet:
|
|
|
|
gateway_ip: "192.168.100.32"
|
|
|
|
name: "ansible_network_subnet_test"
|
|
|
|
dhcp_enable: True
|
|
|
|
vpc_id: "{{ vpc.id }}"
|
|
|
|
cidr: "192.168.100.0/26"
|
|
|
|
state: absent
|
|
|
|
register: subnet
|
|
|
|
- name: delete a vpc
|
|
|
|
hwc_network_vpc:
|
|
|
|
cidr: "192.168.100.0/24"
|
|
|
|
name: "ansible_network_vpc_test"
|
|
|
|
state: absent
|
|
|
|
register: vpc
|