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.2 KiB
YAML
59 lines
1.2 KiB
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_snmp_location sanity test"
|
|
|
|
- name: Setup - Remove snmp_location if configured
|
|
nxos_snmp_location: &remove
|
|
location: Test
|
|
state: absent
|
|
|
|
- block:
|
|
- name: Configure snmp location
|
|
nxos_snmp_location: &config
|
|
location: Testing
|
|
state: present
|
|
register: result
|
|
|
|
- assert: &true
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: Idempotence Check
|
|
nxos_snmp_location: *config
|
|
register: result
|
|
|
|
- assert: &false
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: Change snmp location
|
|
nxos_snmp_location: &config1
|
|
location: Test
|
|
state: present
|
|
register: result
|
|
|
|
- assert: *true
|
|
|
|
- name: Idempotence Check
|
|
nxos_snmp_location: *config1
|
|
register: result
|
|
|
|
- assert: *false
|
|
|
|
- name: remove snmp location
|
|
nxos_snmp_location: *remove
|
|
register: result
|
|
|
|
- assert: *true
|
|
|
|
- name: Remove Idempotence
|
|
nxos_snmp_location: *remove
|
|
register: result
|
|
|
|
- assert: *false
|
|
|
|
always:
|
|
- name: Cleanup
|
|
nxos_snmp_location: *remove
|
|
register: result
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos_snmp_location sanity test"
|