mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.6 KiB
YAML
72 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
|