ansible/test/integration/targets/nxos_snmp_traps/tests/common/sanity.yaml
nkshrishail 01e4c41be4 nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068)
* 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
2020-01-08 13:43:23 +05:30

77 lines
1.5 KiB
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_snmp_traps sanity test"
- name: Setup - Remove snmp_traps if configured
nxos_snmp_traps: &remove
group: all
state: disabled
- block:
- name: Configure one snmp trap group
nxos_snmp_traps: &config
group: bridge
state: enabled
register: result
- assert: &true
that:
- "result.changed == true"
- name: Idempotence Check
nxos_snmp_traps: *config
register: result
- assert: &false
that:
- "result.changed == false"
- name: Remove snmp trap group
nxos_snmp_traps: &rem1
group: bridge
state: disabled
register: result
- assert: *true
- name: Idempotence Check
nxos_snmp_traps: *rem1
register: result
- assert: *false
- name: Configure all snmp trap groups
nxos_snmp_traps: &config1
group: all
state: enabled
register: result
- assert: *true
- block:
# On I2/I7, link command does not work properly
# On D1, callhome command does not work properly
# skip for these older platforms
- name: Idempotence Check
nxos_snmp_traps: *config1
register: result
- assert: *false
when: imagetag is not search("I2|I7|D1")
- name: Cleanup
nxos_snmp_traps: *remove
register: result
- assert: *true
- name: Cleanup Idempotence
nxos_snmp_traps: *remove
register: result
- assert: *false
always:
- name: Cleanup
nxos_snmp_traps: *remove
- debug: msg="END connection={{ ansible_connection }} nxos_snmp_traps sanity test"