ansible/test/integration/targets/nxos_feature/tests/common/configure.yaml
Nathaniel Case a197125954
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider

* Manually verify the rest of the cases

* Add missing provider
2018-07-02 09:43:51 -04:00

60 lines
1.1 KiB
YAML

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