--- #################################################################### # WARNING: These are designed specifically for Ansible tests # # and should not be used as examples of how to write Ansible roles # #################################################################### # 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 # 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: - result is not failed - result is not changed #---------------------------------------------------------- - 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: - result is not failed - result is not changed #--------------------------------------------------------- # 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