summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_config/tests/eapi/sublevel.yaml
blob: 4e9017bf7d7912e0126cec420112bf6d5dd41401 (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
---
- debug: msg="START eapi/sublevel.yaml"

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

- name: configure sub level command
  eos_config:
    lines: 10 permit ip any any log
    parents: ip access-list test
    after: exit
  become: yes
  register: result

- assert:
    that:
      - "result.changed == true"
      - "'ip access-list test' in result.updates"
      - "'10 permit ip any any log' in result.updates"

- name: configure sub level command idempotent check
  eos_config:
    lines: 10 permit ip any any log
    parents: ip access-list test
  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 eapi/sublevel.yaml"