6b5c7f7c42
* Move module_utils * Add eos_interfaces and deprecate eos_interface * Add boilerplate, update ignores.txt * Try to reconcile eos provider documentation with argspec * Try to work around unknown interfaces * Move param_list_to_dict to utils
43 lines
917 B
YAML
43 lines
917 B
YAML
---
|
|
- include_tasks: reset_config.yml
|
|
|
|
- set_fact:
|
|
config:
|
|
- name: Ethernet1
|
|
|
|
- eos_facts:
|
|
gather_network_resources: interfaces
|
|
become: yes
|
|
|
|
- name: Returns interfaces to default parameters
|
|
eos_interfaces:
|
|
config: "{{ config }}"
|
|
state: deleted
|
|
register: result
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.interfaces|symmetric_difference(result.before)|length == 0"
|
|
|
|
- eos_facts:
|
|
gather_network_resources: interfaces
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.interfaces|symmetric_difference(result.after)|length == 0"
|
|
|
|
- set_fact:
|
|
expected_config:
|
|
- name: Ethernet1
|
|
duplex: auto
|
|
enabled: True
|
|
- name: Ethernet2
|
|
duplex: auto
|
|
enabled: True
|
|
mtu: "3000"
|
|
|
|
- assert:
|
|
that:
|
|
- "expected_config|difference(ansible_facts.network_resources.interfaces)|length == 0"
|