ansible/test/integration/targets/eos_interfaces/tests/cli/reset_config.yml
Nathaniel Case 6b5c7f7c42
Add new module eos_interfaces (#59729)
* 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
2019-08-13 10:09:52 -04:00

35 lines
729 B
YAML

---
- name: Reset initial config
cli_config:
config: |
interface Ethernet1
description "Interface 1"
no shutdown
no mtu
speed forced 40gfull
interface Ethernet2
no description
no shutdown
mtu 3000
speed auto
become: yes
- eos_facts:
gather_network_resources: interfaces
become: yes
- set_fact:
expected_config:
- name: Ethernet1
description: Interface 1
speed: 40g
duplex: full
enabled: True
- name: Ethernet2
enabled: True
mtu: "3000"
duplex: auto
- assert:
that:
- "expected_config|difference(ansible_facts.network_resources.interfaces) == []"