ansible/test/integration/targets/nxos_nxapi/tests/cli/disable.yaml
Trishna Guha 290b1651ae
fix nxos_nxapi test (#34972)
* Remove nxos_nxapi config test as config param is deprecated and removed

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>

* fix nxos_nxapi disable test

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-01-17 10:14:20 +05:30

34 lines
605 B
YAML

---
- debug: msg="START cli/disable.yaml"
- name: Disable NXAPI
nxos_nxapi:
state: absent
provider: "{{ cli }}"
register: result
- name: Check NXAPI state
nxos_command:
commands:
- show feature | grep nxapi
provider: "{{ cli }}"
register: result
- name: Assert NXAPI is disabled
assert:
that:
result.stdout[0] is search('disabled')
- name: Disable NXAPI again
nxos_nxapi:
state:
absent
provider: "{{ cli }}"
register: result
- name: Assert idempotence
assert:
that:
result.changed == false
- debug: msg="END cli/disable.yaml"