summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_interfaces/tests/common/reset_config.yml
blob: 7932f9f9487e7e4b2cf06cb81bb0eeeab3d2521f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
- name: Reset initial config
  eos_config:
    lines: |
      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) == []"