Deprecate tests used as filters (#32361)

* 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
This commit is contained in:
Matt Martz 2017-11-27 16:58:08 -06:00 committed by ansibot
commit 4fe08441be
349 changed files with 4086 additions and 3844 deletions

View file

@ -14,7 +14,7 @@
- name: verify setup network
assert:
that:
- net|success
- net is successful
- net.name == "net_nic"
- name: setup instance
@ -29,7 +29,7 @@
- name: verify setup instance
assert:
that:
- instance|success
- instance is successful
- instance.name == "instance-nic-vm"
- instance.state == "Stopped"
@ -48,7 +48,7 @@
- name: verify setup network 2
assert:
that:
- net|success
- net is successful
- net.name == "net_nic2"
- name: setup nic
@ -61,7 +61,7 @@
- name: verify test create nic
assert:
that:
- nic|success
- nic is successful
- nic.ip_address == "10.100.124.42"
- nic.netmask == "255.255.255.0"
- nic.network == "net_nic2"
@ -80,7 +80,7 @@
- name: verify setup remove secondary ip
assert:
that:
- sip|success
- sip is successful
- name: test add secondary ip in check mode
cs_instance_nic_secondaryip:
@ -93,8 +93,8 @@
- name: verify test add secondary ip in check mode
assert:
that:
- sip|success
- sip|changed
- sip is successful
- sip is changed
- sip.network == "net_nic2"
- sip.vm == "instance-nic-vm"
- sip.zone == "{{ cs_common_zone_adv }}"
@ -109,8 +109,8 @@
- name: verify test add secondary ip
assert:
that:
- sip|success
- sip|changed
- sip is successful
- sip is changed
- sip.vm_guest_ip == "10.100.124.43"
- sip.network == "net_nic2"
- sip.vm == "instance-nic-vm"
@ -126,8 +126,8 @@
- name: verify test add secondary ip idempotence
assert:
that:
- sip|success
- not sip|changed
- sip is successful
- sip is not changed
- sip.vm_guest_ip == "10.100.124.43"
- sip.network == "net_nic2"
- sip.vm == "instance-nic-vm"
@ -145,8 +145,8 @@
- name: verify test remove secondary ip in check mode
assert:
that:
- sip|success
- sip|changed
- sip is successful
- sip is changed
- sip.vm_guest_ip == "10.100.124.43"
- sip.network == "net_nic2"
- sip.vm == "instance-nic-vm"
@ -163,8 +163,8 @@
- name: verify test remove secondary ip
assert:
that:
- sip|success
- sip|changed
- sip is successful
- sip is changed
- sip.vm_guest_ip == "10.100.124.43"
- sip.network == "net_nic2"
- sip.vm == "instance-nic-vm"
@ -181,8 +181,8 @@
- name: verify test remove secondary ip idempotence
assert:
that:
- sip|success
- not sip|changed
- sip is successful
- sip is not changed
- sip.network == "net_nic2"
- sip.vm == "instance-nic-vm"
- sip.zone == "{{ cs_common_zone_adv }}"
@ -195,7 +195,7 @@
- name: verify cleanup instance
assert:
that:
- instance|success
- instance is successful
- name: cleanup network
cs_network:
@ -206,7 +206,7 @@
- name: verify cleanup network
assert:
that:
- net|success
- net is successful
- name: cleanup network 2
cs_network:
@ -217,4 +217,4 @@
- name: verify cleanup network 2
assert:
that:
- net|success
- net is successful