tag off long-running azure_rm_virtualnetworkgateway tests
This commit is contained in:
parent
6fff8e1d7e
commit
837ea4b39f
1 changed files with 102 additions and 64 deletions
|
@ -1,82 +1,120 @@
|
||||||
|
# FIXME: needs minimal tests (check mode?) that can run quickly, VNG creation takes > 20min
|
||||||
|
|
||||||
- name: Prepare random number
|
- name: Prepare random number
|
||||||
set_fact:
|
set_fact:
|
||||||
vnetname: "vnet{{ resource_group | hash('md5') | truncate(7, True, '') }}{{ 1000 | random }}"
|
vnetname: "vnet{{ resource_group | hash('md5') | truncate(7, True, '') }}{{ 1000 | random }}"
|
||||||
vngname: "vng{{ resource_group | hash('md5') | truncate(7, True, '') }}{{ 1000 | random }}"
|
vngname: "vng{{ resource_group | hash('md5') | truncate(7, True, '') }}{{ 1000 | random }}"
|
||||||
|
|
||||||
- name: Create virtual network
|
- name: Create virtual network gateway without bgp settings (check mode)
|
||||||
azure_rm_virtualnetwork:
|
check_mode: yes
|
||||||
resource_group: "{{ resource_group }}"
|
azure_rm_virtualnetworkgateway:
|
||||||
name: "{{ vnetname }}"
|
resource_group: "{{ resource_group }}"
|
||||||
address_prefixes: "10.0.0.0/16"
|
name: "{{ vngname }}"
|
||||||
|
ip_configurations:
|
||||||
|
- name: testipconfig
|
||||||
|
private_ip_allocation_method: Dynamic
|
||||||
|
public_ip_address_name: testPublicIP
|
||||||
|
virtual_network: "{{ vnetname }}"
|
||||||
|
tags:
|
||||||
|
common: "xyz"
|
||||||
|
register: output
|
||||||
|
|
||||||
- name: Add subnet
|
- assert:
|
||||||
azure_rm_subnet:
|
that: output.changed
|
||||||
|
|
||||||
|
- name: long-running virtualnetworkgateway tests [run with `--tags long_run,untagged` to enable]
|
||||||
|
tags: [long_run, never]
|
||||||
|
block:
|
||||||
|
- name: Create virtual network
|
||||||
|
azure_rm_virtualnetwork:
|
||||||
|
resource_group: "{{ resource_group }}"
|
||||||
|
name: "{{ vnetname }}"
|
||||||
|
address_prefixes: "10.0.0.0/16"
|
||||||
|
|
||||||
|
- name: Add subnet
|
||||||
|
azure_rm_subnet:
|
||||||
|
resource_group: "{{ resource_group }}"
|
||||||
|
name: GatewaySubnet
|
||||||
|
address_prefix: "10.0.2.0/24"
|
||||||
|
virtual_network: "{{ vnetname }}"
|
||||||
|
|
||||||
|
- name: Create public IP address
|
||||||
|
azure_rm_publicipaddress:
|
||||||
|
resource_group: "{{ resource_group }}"
|
||||||
|
allocation_method: Dynamic
|
||||||
|
name: testPublicIP
|
||||||
|
|
||||||
|
- name: Create virtual network gateway without bgp settings
|
||||||
|
azure_rm_virtualnetworkgateway:
|
||||||
resource_group: "{{ resource_group }}"
|
resource_group: "{{ resource_group }}"
|
||||||
name: GatewaySubnet
|
name: "{{ vngname }}"
|
||||||
address_prefix: "10.0.2.0/24"
|
ip_configurations:
|
||||||
|
- name: testipconfig
|
||||||
|
private_ip_allocation_method: Dynamic
|
||||||
|
public_ip_address_name: testPublicIP
|
||||||
virtual_network: "{{ vnetname }}"
|
virtual_network: "{{ vnetname }}"
|
||||||
|
tags:
|
||||||
|
common: "xyz"
|
||||||
|
register: output
|
||||||
|
|
||||||
- name: Create public IP address
|
- assert:
|
||||||
azure_rm_publicipaddress:
|
that: output.changed
|
||||||
|
|
||||||
|
- name: Create virtual network gateway without bgp settings
|
||||||
|
azure_rm_virtualnetworkgateway:
|
||||||
resource_group: "{{ resource_group }}"
|
resource_group: "{{ resource_group }}"
|
||||||
allocation_method: Dynamic
|
name: "{{ vngname }}"
|
||||||
name: testPublicIP
|
ip_configurations:
|
||||||
|
- name: testipconfig
|
||||||
|
private_ip_allocation_method: Dynamic
|
||||||
|
public_ip_address_name: testPublicIP
|
||||||
|
virtual_network: "{{ vnetname }}"
|
||||||
|
tags:
|
||||||
|
common: "xyz"
|
||||||
|
register: output
|
||||||
|
|
||||||
- name: Create virtual network gateway without bgp settings
|
- assert:
|
||||||
azure_rm_virtualnetworkgateway:
|
that: output.changed
|
||||||
resource_group: "{{ resource_group }}"
|
|
||||||
name: "{{ vngname }}"
|
|
||||||
ip_configurations:
|
|
||||||
- name: testipconfig
|
|
||||||
private_ip_allocation_method: Dynamic
|
|
||||||
public_ip_address_name: testPublicIP
|
|
||||||
virtual_network: "{{ vnetname }}"
|
|
||||||
tags:
|
|
||||||
common: "xyz"
|
|
||||||
register: output
|
|
||||||
|
|
||||||
- assert:
|
- name: Create virtual network gateway without bgp settings - idempotent
|
||||||
that: output.changed
|
azure_rm_virtualnetworkgateway:
|
||||||
|
resource_group: "{{ resource_group }}"
|
||||||
|
name: "{{ vngname }}"
|
||||||
|
ip_configurations:
|
||||||
|
- name: testipconfig
|
||||||
|
private_ip_allocation_method: Dynamic
|
||||||
|
public_ip_address_name: testPublicIP
|
||||||
|
virtual_network: "{{ vnetname }}"
|
||||||
|
tags:
|
||||||
|
common: "xyz"
|
||||||
|
register: output
|
||||||
|
|
||||||
- name: Create virtual network gateway without bgp settings - idempotent
|
- assert:
|
||||||
azure_rm_virtualnetworkgateway:
|
that: not output.changed
|
||||||
resource_group: "{{ resource_group }}"
|
|
||||||
name: "{{ vngname }}"
|
|
||||||
ip_configurations:
|
|
||||||
- name: testipconfig
|
|
||||||
private_ip_allocation_method: Dynamic
|
|
||||||
public_ip_address_name: testPublicIP
|
|
||||||
virtual_network: "{{ vnetname }}"
|
|
||||||
tags:
|
|
||||||
common: "xyz"
|
|
||||||
register: output
|
|
||||||
|
|
||||||
- assert:
|
- name: Update virtual network gateway
|
||||||
that: not output.changed
|
azure_rm_virtualnetworkgateway:
|
||||||
|
resource_group: "{{ resource_group }}"
|
||||||
|
name: "{{ vngname }}"
|
||||||
|
ip_configurations:
|
||||||
|
- name: testipconfig
|
||||||
|
private_ip_allocation_method: Dynamic
|
||||||
|
public_ip_address_name: testPublicIP
|
||||||
|
virtual_network: "{{ vnetname }}"
|
||||||
|
tags:
|
||||||
|
common: "mno"
|
||||||
|
register: output
|
||||||
|
- assert:
|
||||||
|
that: output.changed
|
||||||
|
|
||||||
- name: Update virtual network gateway
|
- name: Delete virtual network gateway
|
||||||
azure_rm_virtualnetworkgateway:
|
azure_rm_virtualnetworkgateway:
|
||||||
resource_group: "{{ resource_group }}"
|
resource_group: "{{ resource_group }}"
|
||||||
name: "{{ vngname }}"
|
name: "{{ vngname }}"
|
||||||
ip_configurations:
|
state: absent
|
||||||
- name: testipconfig
|
register: output
|
||||||
private_ip_allocation_method: Dynamic
|
- assert:
|
||||||
public_ip_address_name: testPublicIP
|
that: output.changed
|
||||||
virtual_network: "{{ vnetname }}"
|
|
||||||
tags:
|
|
||||||
common: "mno"
|
|
||||||
register: output
|
|
||||||
- assert:
|
|
||||||
that: output.changed
|
|
||||||
|
|
||||||
- name: Delete virtual network gateway
|
|
||||||
azure_rm_virtualnetworkgateway:
|
|
||||||
resource_group: "{{ resource_group }}"
|
|
||||||
name: "{{ vngname }}"
|
|
||||||
state: absent
|
|
||||||
register: output
|
|
||||||
- assert:
|
|
||||||
that: output.changed
|
|
||||||
|
|
||||||
- name: Delete virtual network gateway - idempotent
|
- name: Delete virtual network gateway - idempotent
|
||||||
azure_rm_virtualnetworkgateway:
|
azure_rm_virtualnetworkgateway:
|
||||||
|
|
Loading…
Reference in a new issue