summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_interfaces/tests/common/replaced.yaml
blob: ab9fd6fd2e4df2a2a1c6a72047666355e5c9017e (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
36
37
38
39
---
- include_tasks: reset_config.yml

- set_fact:
    config:
      - name: Ethernet1
        duplex: auto
        enabled: True
      - name: Ethernet2
        description: 'Configured by Ansible'
        duplex: auto
        enabled: False

- eos_facts:
    gather_network_resources: interfaces
  become: yes

- name: Replaces device configuration of listed interfaces with provided configuration
  eos_interfaces:
    config: "{{ config }}"
    state: replaced
  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"

- assert:
    that:
      - "config|difference(ansible_facts.network_resources.interfaces)|length == 0"