ansible/test/integration/targets/nxos_udld/tests/common/sanity.yaml
Matt Martz 4fe08441be 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
2017-11-27 17:58:08 -05:00

67 lines
1.4 KiB
YAML

---
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_udld sanity test"
- set_fact: udld_run="true"
- set_fact: udld_run="false"
when: (( platform is search('N9K-F')) and (imagetag and ( imagetag is version('F3', 'lt'))))
- set_fact: udld_run="false"
when: titanium
- block:
- name: "Enable feature udld"
nxos_feature:
feature: udld
state: enabled
provider: "{{ connection }}"
- name: Reset udld
nxos_udld:
reset: True
provider: "{{ connection }}"
- name: Ensure udld agg mode is globally disabled and msg time is 20
nxos_udld: &conf1
aggressive: disabled
msg_time: 20
provider: "{{ connection }}"
register: result
- assert: &true
that:
- "result.changed == true"
- name: "Conf1 Idempotence"
nxos_udld: *conf1
register: result
- assert: &false
that:
- "result.changed == false"
- name: Ensure udld agg mode is globally enabled and msg time is 15
nxos_udld: &conf2
aggressive: enabled
msg_time: 15
provider: "{{ connection }}"
register: result
- assert: *true
- name: "conf2 Idempotence"
nxos_udld: *conf2
register: result
- assert: *false
when: udld_run
always:
- name: "Disable udld"
nxos_feature:
feature: udld
state: disabled
provider: "{{ connection }}"
ignore_errors: yes
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_udld sanity test"