ansible/test/integration/targets/nxos_bfd_interfaces/tests/cli/deleted.yaml
Chris Van Heuveln f890c9692f nxos_bfd_interfaces: new module (#61407)
* bfd_interfaces: initial commit

* fix state methods, add more UT

* Add integration tests, support for N6K

* minor comment cleanups

* lint 1

* lint 2

* lint 3

* lint 4

* lint 5

* retrigger shippable

* retrigger shippable

* PR review updates: /bfd_echo/echo/, updated tests

* fix overridden logic and integration test
2019-08-29 09:36:10 +05:30

71 lines
1.6 KiB
YAML

---
- debug:
msg: "Start nxos_bfd_interfaces deleted integration tests connection={{ ansible_connection }}"
- set_fact: test_int1="{{ nxos_int1 }}"
- set_fact:
bfd_enable: enable
bfd_disable: disable
when: platform is not search('N5K|N6K')
- name: setup1
cli_config: &setup_teardown
config: |
no feature bfd
default interface {{ test_int1 }}
- block:
- name: setup2
cli_config:
config: |
feature bfd
interface {{ test_int1 }}
no switchport
- name: setup initial bfd state
nxos_bfd_interfaces:
config:
- name: "{{ test_int1 }}"
bfd: "{{ bfd_disable|default(omit)}}"
echo: disable
state: merged
- name: Gather bfd_interfaces facts
nxos_facts: &facts
gather_subset:
- '!all'
- '!min'
gather_network_resources: bfd_interfaces
- name: deleted
nxos_bfd_interfaces: &deleted
config:
- name: "{{ test_int1 }}"
state: deleted
register: result
- assert:
that:
- "result.changed == true"
- "'bfd echo' in result.commands"
msg: "Assert failed. 'result.commands': {{ result.commands }}"
- assert:
that:
- "{{ 'bfd' in result.commands }}"
msg: "Assert failed. 'result.commands': {{ result.commands }}"
when: bfd_enable is defined
- name: Idempotence - deleted
nxos_bfd_interfaces: *deleted
register: result
- assert:
that:
- "result.changed == false"
- "result.commands|length == 0"
always:
- name: teardown
cli_config: *setup_teardown