summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_l2_interfaces/tests/common/replaced.yaml
blob: 46c7a2dd07dea64ef4446a90a8bd5951c85b75d1 (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
40
41
---
- include_tasks: reset_config.yml

- set_fact:
    config:
      - name: Ethernet1
        trunk:
          native_vlan: 20
          trunk_allowed_vlans:
            - 5-10
            - "15"

- eos_facts:
    gather_network_resources: l2_interfaces
  become: yes

- name: Replace device configuration of specified L2 interfaces with provided configuration.
  eos_l2_interfaces:
    config: "{{ config }}"
    state: replaced
  register: result
  become: yes

- assert:
    that:
      - "ansible_facts.network_resources.l2_interfaces|symmetric_difference(result.before) == []"

- eos_facts:
    gather_network_resources: l2_interfaces
  become: yes

- assert:
    that:
      - "ansible_facts.network_resources.l2_interfaces|symmetric_difference(result.after) == []"

- set_fact:
    expected_config: "{{ config }} + [{'name': 'Ethernet2', 'trunk': {'native_vlan': 20}}, {'name': 'Management1'}]"

- assert:
    that:
      - "ansible_facts.network_resources.l2_interfaces|symmetric_difference(expected_config) == []"