summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_config/tests/cli/sublevel_strict.yaml
blob: be055f69e26cabb598665e2adfdfb934d649672c (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
- debug: msg="START cli/sublevel_strict.yaml on connection={{ ansible_connection }}"

- name: setup
  eos_config:
    lines:
      - 10 permit ip host 192.0.2.1 any log
      - 20 permit ip host 192.0.2.2 any log
      - 30 permit ip host 192.0.2.3 any log
      - 40 permit ip host 192.0.2.4 any log
      - 50 permit ip host 192.0.2.5 any log
    parents: ip access-list test
    before: no ip access-list test
    after: exit
    match: none
  become: yes

- name: configure sub level command using strict match
  eos_config:
    lines:
      - 10 permit ip host 192.0.2.1 any log
      - 20 permit ip host 192.0.2.3 any log
      - 30 permit ip host 192.0.2.2 any log
      - 40 permit ip host 192.0.2.4 any log
    parents: ip access-list test
    before: no ip access-list test
    after: exit
    match: strict
    replace: block
  become: yes
  register: result

- assert:
    that:
      - "result.changed == true"
      - "'ip access-list test' in result.updates"
      - "'10 permit ip host 192.0.2.1 any log' in result.updates"
      - "'30 permit ip host 192.0.2.2 any log' in result.updates"
      - "'20 permit ip host 192.0.2.3 any log' in result.updates"
      - "'40 permit ip host 192.0.2.4 any log' in result.updates"
      - "'50 permit ip host 192.0.2.5 any log' not in result.updates"

- name: check sub level command using strict match
  eos_config:
    lines:
      - 10 permit ip host 192.0.2.1 any log
      - 20 permit ip host 192.0.2.3 any log
      - 30 permit ip host 192.0.2.2 any log
      - 40 permit ip host 192.0.2.4 any log
    parents: ip access-list test
    match: strict
  become: yes
  register: result

- assert:
    that:
      - "result.changed == false"

- name: teardown
  eos_config:
    lines: no ip access-list test
    match: none
  become: yes

- debug: msg="END cli/sublevel_strict.yaml on connection={{ ansible_connection }}"