summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_vlans/tests/common/replaced.yaml
blob: ca502ff1568076fcaf3f7e54193a2621081c11c7 (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
---
- include_tasks: reset_config.yml

- set_fact:
    config:
      - vlan_id: 20
        state: suspend
    other_config:
      - vlan_id: 10
        name: ten

- eos_facts:
    gather_network_resources: vlans
  become: yes

- name: Replaces device configuration of listed vlans with provided configuration
  eos_vlans:
    config: "{{ config }}"
    state: replaced
  register: result
  become: yes

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

- eos_facts:
    gather_network_resources: vlans
  become: yes

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

- set_fact:
    expected_config: "{{ config }} + {{ other_config }}"

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