ansible/test/integration/targets/nxos_feature/tests/common/configure.yaml

61 lines
1.1 KiB
YAML
Raw Normal View History

---
- 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"