summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos10_config/tests/cli/sublevel_block.yaml
blob: 06c46b876b8a940b46ae880cf47fbf61d8a830f2 (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
  dellos10_config:
    lines:
      - seq 5 permit ip host 192.0.2.1 any count byte
      - seq 10 permit ip host 192.0.2.2 any count byte
      - seq 15 permit ip host 192.0.2.3 any count byte
    parents: ['ip access-list test']
    before: ['no ip access-list test']
    after: ['exit']
    provider: "{{ cli }}"
    match: none

- name: configure sub level command using block resplace
  dellos10_config:
    lines:
      - seq 5 permit ip host 192.0.2.1 any count byte
      - seq 10 permit ip host 192.0.2.2 any count byte
      - seq 15 permit ip host 192.0.2.3 any count byte
      - seq 20 permit ip host 192.0.2.4 any count byte
    parents: ['ip access-list test']
    replace: block
    after: ['exit']
    provider: "{{ cli }}"
  register: result

- assert:
    that:
      - "result.changed == true"
      - "'ip access-list test' in result.updates"
      - "'seq 5 permit ip host 192.0.2.1 any count byte' in result.updates"
      - "'seq 10 permit ip host 192.0.2.2 any count byte' in result.updates"
      - "'seq 15 permit ip host 192.0.2.3 any count byte' in result.updates"
      - "'seq 20 permit ip host 192.0.2.4 any count byte' in result.updates"

- name: check sub level command using block replace
  dellos10_config:
    lines:
      - seq 5 permit ip host 192.0.2.1 any count byte
      - seq 10 permit ip host 192.0.2.2 any count byte
      - seq 15 permit ip host 192.0.2.3 any count byte
      - seq 20 permit ip host 192.0.2.4 any count byte
    parents: ['ip access-list test']
    replace: block
    after: ['exit']
    provider: "{{ cli }}"
  register: result

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

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

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