ansible/test/integration/targets/nxos_snmp_contact/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

61 lines
1.2 KiB
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_snmp_community sanity test"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
- name: Setup - Remove snmp_contact if configured
nxos_snmp_contact: &remove
contact: Test
state: absent
- block:
- name: Configure snmp contact
nxos_snmp_contact: &config
contact: Testing
state: present
register: result
- assert: &true
that:
- "result.changed == true"
- name: Idempotence Check
nxos_snmp_contact: *config
register: result
- assert: &false
that:
- "result.changed == false"
- name: Change snmp contact
nxos_snmp_contact: &config1
contact: Test
state: present
register: result
- assert: *true
- name: Idempotence Check
nxos_snmp_contact: *config1
register: result
- assert: *false
- name: Remove snmp contact
nxos_snmp_contact: *remove
register: result
- assert: *true
- name: Idempotence Check
nxos_snmp_contact: *remove
register: result
- assert: *false
always:
- name: Cleanup
nxos_snmp_contact: *remove
- debug: msg="END connection={{ ansible_connection }} nxos_snmp_community sanity test"