summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_snmp_traps/tests/common/sanity.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_snmp_traps/tests/common/sanity.yaml')
-rw-r--r--test/integration/targets/nxos_snmp_traps/tests/common/sanity.yaml77
1 files changed, 0 insertions, 77 deletions
diff --git a/test/integration/targets/nxos_snmp_traps/tests/common/sanity.yaml b/test/integration/targets/nxos_snmp_traps/tests/common/sanity.yaml
deleted file mode 100644
index c035e2992c..0000000000
--- a/test/integration/targets/nxos_snmp_traps/tests/common/sanity.yaml
+++ /dev/null
@@ -1,77 +0,0 @@
----
-- 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"