4fe08441be
* Warn on tests used as filters * Update docs, add aliases for tests that fit more gramatically with test syntax * Fix rst formatting * Add successful filter, alias of success * Remove renamed_deprecation, it was overkill * Make directory alias for is_dir * Update tests to use proper jinja test syntax * Update additional documentation, living outside of YAML files, to reflect proper jinja test syntax * Add conversion script, porting guide updates, and changelog updates * Update newly added uses of tests as filters * No underscore variable * Convert recent tests as filter changes to win_stat * Fix some changes related to rebasing a few integration tests * Make tests_as_filters_warning explicitly accept the name of the test, instead of inferring the name * Add test for tests_as_filters_warning * Update tests as filters in newly added/modified tests * Address recent changes to several integration tests * Address recent changes in cs_vpc
205 lines
5.4 KiB
YAML
205 lines
5.4 KiB
YAML
---
|
|
- name: setup zone is absent
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
state: absent
|
|
register: zone
|
|
- name: verify setup zone absent
|
|
assert:
|
|
that:
|
|
- zone is successful
|
|
|
|
- name: test fail missing param
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
register: zone
|
|
ignore_errors: true
|
|
- name: verify test fail missing param
|
|
assert:
|
|
that:
|
|
- zone is failed
|
|
- "zone.msg == 'missing required arguments: dns1'"
|
|
|
|
- name: test create zone in check mode
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
dns1: 8.8.8.8
|
|
dns2: 8.8.4.4
|
|
network_type: basic
|
|
register: zone
|
|
check_mode: true
|
|
- name: verify test create zone in check mode
|
|
assert:
|
|
that:
|
|
- zone is successful
|
|
- zone is changed
|
|
|
|
- name: test create zone
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
dns1: 8.8.8.8
|
|
dns2: 8.8.4.4
|
|
network_type: basic
|
|
register: zone
|
|
- name: verify test create zone
|
|
assert:
|
|
that:
|
|
- zone is successful
|
|
- zone is changed
|
|
- zone.dns1 == "8.8.8.8"
|
|
- zone.dns2 == "8.8.4.4"
|
|
- zone.internal_dns1 == "8.8.8.8"
|
|
- zone.internal_dns2 == "8.8.4.4"
|
|
- zone.local_storage_enabled == false
|
|
- zone.network_type == "Basic"
|
|
- zone.zone_token != ""
|
|
- zone.securitygroups_enabled == true
|
|
- zone.dhcp_provider == "VirtualRouter"
|
|
|
|
- name: test create zone idempotency
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
dns1: 8.8.8.8
|
|
dns2: 8.8.4.4
|
|
network_type: basic
|
|
register: zone
|
|
- name: verify test create zone idempotency
|
|
assert:
|
|
that:
|
|
- zone is successful
|
|
- zone is not changed
|
|
- zone.dns1 == "8.8.8.8"
|
|
- zone.dns2 == "8.8.4.4"
|
|
- zone.internal_dns1 == "8.8.8.8"
|
|
- zone.internal_dns2 == "8.8.4.4"
|
|
- zone.local_storage_enabled == false
|
|
- zone.network_type == "Basic"
|
|
- zone.zone_token != ""
|
|
- zone.securitygroups_enabled == true
|
|
- zone.dhcp_provider == "VirtualRouter"
|
|
|
|
- name: test update zone in check mode
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
dns1: 8.8.8.8
|
|
dns2: 8.8.4.4
|
|
internal_dns1: 10.10.1.100
|
|
internal_dns2: 10.10.1.101
|
|
local_storage_enabled: true
|
|
network_type: basic
|
|
register: zone
|
|
check_mode: true
|
|
- name: verify test update zone in check mode
|
|
assert:
|
|
that:
|
|
- zone is successful
|
|
- zone is changed
|
|
- zone.dns1 == "8.8.8.8"
|
|
- zone.dns2 == "8.8.4.4"
|
|
- zone.internal_dns1 == "8.8.8.8"
|
|
- zone.internal_dns2 == "8.8.4.4"
|
|
- zone.local_storage_enabled == false
|
|
- zone.network_type == "Basic"
|
|
- zone.zone_token != ""
|
|
- zone.securitygroups_enabled == true
|
|
- zone.dhcp_provider == "VirtualRouter"
|
|
|
|
- name: test update zone
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
dns1: 8.8.8.8
|
|
dns2: 8.8.4.4
|
|
internal_dns1: 10.10.1.100
|
|
internal_dns2: 10.10.1.101
|
|
local_storage_enabled: true
|
|
network_type: basic
|
|
register: zone
|
|
- name: verify test update zone
|
|
assert:
|
|
that:
|
|
- zone is successful
|
|
- zone is changed
|
|
- zone.dns1 == "8.8.8.8"
|
|
- zone.dns2 == "8.8.4.4"
|
|
- zone.internal_dns1 == "10.10.1.100"
|
|
- zone.internal_dns2 == "10.10.1.101"
|
|
- zone.local_storage_enabled == true
|
|
- zone.network_type == "Basic"
|
|
- zone.zone_token != ""
|
|
- zone.securitygroups_enabled == true
|
|
- zone.dhcp_provider == "VirtualRouter"
|
|
|
|
- name: test update zone idempotency
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
dns1: 8.8.8.8
|
|
dns2: 8.8.4.4
|
|
internal_dns1: 10.10.1.100
|
|
internal_dns2: 10.10.1.101
|
|
local_storage_enabled: true
|
|
network_type: basic
|
|
register: zone
|
|
- name: verify test update zone idempotency
|
|
assert:
|
|
that:
|
|
- zone is successful
|
|
- zone is not changed
|
|
- zone.dns1 == "8.8.8.8"
|
|
- zone.dns2 == "8.8.4.4"
|
|
- zone.internal_dns1 == "10.10.1.100"
|
|
- zone.internal_dns2 == "10.10.1.101"
|
|
- zone.local_storage_enabled == true
|
|
- zone.network_type == "Basic"
|
|
- zone.zone_token != ""
|
|
- zone.securitygroups_enabled == true
|
|
- zone.dhcp_provider == "VirtualRouter"
|
|
|
|
- name: test absent zone in check mode
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
state: absent
|
|
register: zone
|
|
check_mode: true
|
|
- name: verify test absent zone in check mode
|
|
assert:
|
|
that:
|
|
- zone is successful
|
|
- zone is changed
|
|
- zone.dns1 == "8.8.8.8"
|
|
- zone.dns2 == "8.8.4.4"
|
|
- zone.internal_dns1 == "10.10.1.100"
|
|
- zone.internal_dns2 == "10.10.1.101"
|
|
- zone.local_storage_enabled == true
|
|
- zone.network_type == "Basic"
|
|
- zone.zone_token != ""
|
|
- zone.securitygroups_enabled == true
|
|
|
|
- name: test absent zone
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
state: absent
|
|
register: zone
|
|
- name: verify test absent zone
|
|
assert:
|
|
that:
|
|
- zone is successful
|
|
- zone is changed
|
|
- zone.dns1 == "8.8.8.8"
|
|
- zone.dns2 == "8.8.4.4"
|
|
- zone.internal_dns1 == "10.10.1.100"
|
|
- zone.internal_dns2 == "10.10.1.101"
|
|
- zone.local_storage_enabled == true
|
|
- zone.network_type == "Basic"
|
|
- zone.zone_token != ""
|
|
- zone.securitygroups_enabled == true
|
|
|
|
- name: test absent zone idempotency
|
|
cs_zone:
|
|
name: "{{ cs_resource_prefix }}-zone"
|
|
state: absent
|
|
register: zone
|
|
- name: verify test absent zone idempotency
|
|
assert:
|
|
that:
|
|
- zone is successful
|
|
- zone is not changed
|