af3603f9ee
While this does properly pass our testing for ansible/ansible devel
branch, it is currently breaking our collection testing for 2.10.
Specifically, this would mean ansible.netcommon would need to directly
import arista.eos or cisco.nxos collections, causing a circular dependency.
This reverts commit e266e5f8b6
.
46 lines
955 B
YAML
46 lines
955 B
YAML
---
|
|
- include_tasks: reset_config.yml
|
|
|
|
- set_fact:
|
|
config:
|
|
holdtime: 100
|
|
tlv_select:
|
|
management_address: False
|
|
port_description: False
|
|
system_description: True
|
|
|
|
- eos_facts:
|
|
gather_network_resources: lldp_global
|
|
become: yes
|
|
|
|
- name: Merge provided LLDP configuration with device configuration
|
|
eos_lldp_global:
|
|
config: "{{ config }}"
|
|
state: merged
|
|
register: result
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.lldp_global == result.before"
|
|
|
|
- eos_facts:
|
|
gather_network_resources: lldp_global
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.lldp_global == result.after"
|
|
|
|
- set_fact:
|
|
expected_config:
|
|
timer: 3000
|
|
holdtime: 100
|
|
reinit: 5
|
|
tlv_select:
|
|
management_address: False
|
|
port_description: False
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.lldp_global == expected_config"
|