summaryrefslogtreecommitdiff
path: root/test/integration/targets/ios_config/tests/cli/sublevel_block.yaml
blob: 142ed6ee86bd7c401194fbd18dd318bcb83bf31f (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
---
- debug: msg="START cli/sublevel_block.yaml"

- name: setup
  ios_config:
    lines:
      - permit ip host 1.1.1.1 any log
      - permit ip host 2.2.2.2 any log
      - permit ip host 3.3.3.3 any log
    parents: ['ip access-list extended test']
    before: ['no ip access-list extended test']
    after: ['exit']
    provider: "{{ cli }}"
    match: none

- name: configure sub level command using block resplace
  ios_config:
    lines:
      - permit ip host 1.1.1.1 any log
      - permit ip host 2.2.2.2 any log
      - permit ip host 3.3.3.3 any log
      - permit ip host 4.4.4.4 any log
    parents: ['ip access-list extended test']
    replace: block
    after: ['exit']
    provider: "{{ cli }}"
  register: result

- assert:
    that:
      - "result.changed == true"
      - "'ip access-list extended test' in result.updates"
      - "'permit ip host 1.1.1.1 any log' in result.updates"
      - "'permit ip host 2.2.2.2 any log' in result.updates"
      - "'permit ip host 3.3.3.3 any log' in result.updates"
      - "'permit ip host 4.4.4.4 any log' in result.updates"

- name: check sub level command using block replace
  ios_config:
    lines:
      - permit ip host 1.1.1.1 any log
      - permit ip host 2.2.2.2 any log
      - permit ip host 3.3.3.3 any log
      - permit ip host 4.4.4.4 any log
    parents: ['ip access-list extended test']
    replace: block
    after: ['exit']
    provider: "{{ cli }}"
  register: result

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

- name: teardown
  ios_config:
    lines:
      - no ip access-list extended test
    match: none
    provider: "{{ cli }}"

- debug: msg="END cli/sublevel_block.yaml"