01e4c41be4
* nxos_integration_tests: Removing obsolete provider parameter * nxos: removing support for local-nxapi plugin * nxos: removing LocalNxapi plugin implementation * nxos_nxapi: removing local plugin usage * REVERT - nxos: removing LocalNxapi plugin implementation * Addressing yamllint issues * Removing the condition on the debug messages * Restoring changes done to nxos_nxapi* tests * Retaining timeout of 500 on nxos_smoke test * Some cleanup * Addressing latest comments * Restoring the nxos_smoke and removing timeout from nxos_config and nxos_rollback
59 lines
1.1 KiB
YAML
59 lines
1.1 KiB
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_snmp_community sanity test"
|
|
|
|
- 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"
|