ansible/test/integration/targets/nxos_lldp/tests/cli/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

47 lines
884 B
YAML

---
- debug: msg="START TRANSPORT:CLI nxos_lldp sanity test"
- name: Make sure LLDP is not running before tests
nxos_feature:
feature: lldp
state: disabled
- name: Enable LLDP service
nxos_lldp:
state: present
register: result
- assert:
that:
- 'result.changed == true'
- '"feature lldp" in result.commands'
- name: Enable LLDP service again (idempotent)
nxos_lldp:
state: present
register: result
- assert:
that:
- 'result.changed == false'
- name: Disable LLDP service
nxos_lldp:
state: absent
register: result
- assert:
that:
- 'result.changed == true'
- '"no feature lldp" in result.commands'
- name: Disable LLDP service (idempotent)
nxos_lldp:
state: absent
register: result
- assert:
that:
- 'result.changed == false'
- debug: msg="END TRANSPORT:CLI nxos_lldp sanity test"