summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_static_routes/tests/cli/gathered.yaml
blob: 58a4279ec2dccad95c2609b7feda43c0e729819b (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
---
- debug:
      msg: "START vyos_static_routes gathered integration tests on connection={{ ansible_connection }}"

- include_tasks: _remove_config.yaml

- include_tasks: _populate.yaml

- block:
  - name: Merge the provided configuration with the exisiting running configuration
    vyos_static_routes: &gathered
      config:
      state: gathered
    register: result

  - name: Assert that gathered dicts was correctly generated
    assert:
        that:
            - "{{ populate | symmetric_difference(result['gathered']) |length == 0 }}"

  - name: Gather the existing running configuration (IDEMPOTENT)
    vyos_static_routes: *gathered
    register: result

  - name: Assert that the previous task was idempotent
    assert:
        that:
            - "result['changed'] == false"

  always:
  - include_tasks: _remove_config.yaml