ansible/test/integration/targets/eos_lldp_interfaces/tests/common/replaced.yaml
Nathaniel Case 53c7f8cbde
Allow httpapi for EOS resource modules (#66871)
* Redo tests to be transport agnostic

cli -> eos config

* Redirect connection for httpapi

* Fix tests

* Handle missing platform imports
2020-02-03 08:04:08 -05:00

40 lines
959 B
YAML

---
- include_tasks: reset_config.yml
- set_fact:
config:
- name: Ethernet1
transmit: False
other_config:
- name: Ethernet2
transmit: False
- eos_facts:
gather_network_resources: lldp_interfaces
become: yes
- name: Replace existing LLDP configuration of specified interfaces with provided configuration
eos_lldp_interfaces:
config: "{{ config }}"
state: replaced
register: result
become: yes
- assert:
that:
- "ansible_facts.network_resources.lldp_interfaces|symmetric_difference(result.before) == []"
- eos_facts:
gather_network_resources: lldp_interfaces
become: yes
- assert:
that:
- "ansible_facts.network_resources.lldp_interfaces|symmetric_difference(result.after) == []"
- set_fact:
expected_config: "{{ config }} + {{ other_config }}"
- assert:
that:
- "expected_config|symmetric_difference(ansible_facts.network_resources.lldp_interfaces) == []"