ansible/test/integration/targets/nxos_udld/tests/common/sanity.yaml
Nathaniel Case 483df13626 Fixing issues with httpapi (#40388)
* I seem to have forgotten the back half of tests

* Set http timeout from persistent_command_timeout

* Tweak URL generation and provide URL on error

* Push var_options to connection process

* Don't wait forever if coming from persistent

* Don't send the entire contents of variables to ansible-connection
2018-05-21 15:58:35 +01:00

94 lines
1.8 KiB
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_udld sanity test"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
- set_fact: udld_run="true"
- set_fact: udld_run="false"
when: ((platform is search('N9K-F')) and (imagetag and (imagetag is version_compare('F3', 'lt'))))
- set_fact: udld_run="false"
when: titanium
- block:
- name: "Enable feature udld"
nxos_feature:
feature: udld
state: enabled
- name: Configure udld
nxos_udld: &conf1
aggressive: enabled
msg_time: 20
register: result
- assert: &true
that:
- "result.changed == true"
- name: "Check Idempotence"
nxos_udld: *conf1
register: result
- assert: &false
that:
- "result.changed == false"
- name: Reset udld
nxos_udld:
reset: True
- name: Configure udld2
nxos_udld: &conf2
aggressive: disabled
register: result
- assert: *true
- name: "Check Idempotence"
nxos_udld: *conf2
register: result
- assert: *false
- name: Configure udld3
nxos_udld: &conf3
msg_time: default
register: result
- assert: *true
- name: "Check Idempotence"
nxos_udld: *conf3
register: result
- assert: *false
- name: Configure udld again
nxos_udld: *conf1
register: result
- assert: *true
- name: Remove udld config
nxos_udld: &conf4
state: absent
register: result
- assert: *true
- name: "Check Idempotence"
nxos_udld: *conf4
register: result
- assert: *false
when: udld_run
always:
- name: "Disable udld"
nxos_feature:
feature: udld
state: disabled
ignore_errors: yes
- debug: msg="END connection={{ ansible_connection }} nxos_udld sanity test"