ansible/test/integration/targets/nxos_feature/tests/cli/configure.yaml
rahushen 85fc4c67ef Add integration tests for nxos_facts, nxos_bgp, nxos_bgp_af, nxos_bgp_neighbor, and nxos_evpn_global (#26924)
* Add new ITs for nxos_bgp, nxos_bgp_af, nxos_bgp_neighbor, and nxos_evpn_global

* Add nxos_facts IT and enhance existing tests

* switch nxos_feature tests to use bgp

* misc. test fixes

* Add checks for titanium in IT

* Handle non-titanium case in tests
2017-08-10 05:29:13 -04:00

60 lines
971 B
YAML

---
- debug: msg="START cli/configure.yaml"
- name: setup
nxos_config:
lines: no feature bgp
match: none
provider: "{{ cli }}"
- name: enable bgp
nxos_feature:
feature: bgp
state: enabled
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- name: verify bgp
nxos_feature:
feature: bgp
state: enabled
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: disable bgp
nxos_feature:
feature: bgp
state: disabled
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- name: verify bgp
nxos_feature:
feature: bgp
state: disabled
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
nxos_config:
lines: no feature bgp
match: none
provider: "{{ cli }}"
- debug: msg="END cli/configure.yaml"