ansible/test/integration/targets/nxos_snmp_user/tests/common/sanity.yaml
saichint c822292347 Integration Tests only: add static route, snmp_user, snapshot and hsrp it cases (#28933)
* add static route and hsrp it cases

* add snmp_user and snapshot it

* password strength correction

* fix typo

* add compare snapshot as it is fixed in the code now

* skip snapshot tests for titanium

* titanium and nxapi conditions added
2017-10-26 11:27:55 -04:00

41 lines
866 B
YAML

---
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_snmp_user sanity test"
- name: Create snmp user
nxos_snmp_user: &create
user: ntc
group: network-operator
authentication: md5
pwd: N$tOpe%1
privacy: HelloU$er1
encrypt: true
provider: "{{ connection }}"
register: result
- assert: &true
that:
- "result.changed == true"
- name: delete snmp user
nxos_snmp_user: &remove
user: ntc
group: network-operator
authentication: md5
pwd: Testing1%
privacy: HelloU$er1
encrypt: true
state: absent
provider: "{{ connection }}"
register: result
- assert: *true
- name: "Remove Idempotence"
nxos_snmp_user: *remove
register: result
- assert: &false
that:
- "result.changed == false"
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_snmp_user sanity test"