summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_lldp_global/tests/common/replaced.yaml
blob: f8cbcd13cc3bf68b8e4fc08c75e4ecdf14e8338f (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
42
43
44
---
- include_tasks: reset_config.yml

- set_fact:
    config:
      holdtime: 100
      tlv_select:
        management_address: False
        port_description: False
        system_description: True

- eos_facts:
    gather_network_resources: lldp_global
  become: yes

- name: Replaces device configuration with provided LLDP configuration
  eos_lldp_global:
    config: "{{ config }}"
    state: replaced
  register: result
  become: yes

- assert:
    that:
      - "ansible_facts.network_resources.lldp_global == result.before"

- eos_facts:
    gather_network_resources: lldp_global
  become: yes

- assert:
    that:
      - "ansible_facts.network_resources.lldp_global == result.after"

- set_fact:
    expected_config:
      holdtime: 100
      tlv_select:
        management_address: False
        port_description: False

- assert:
    that:
      - "ansible_facts.network_resources.lldp_global == expected_config"