summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_config/tests/nxapi/sublevel.yaml
blob: ceba5d36a9aa4da1fb5b8200c52e39df162dce84 (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 nxapi/sublevel.yaml"

- name: setup
  nxos_config:
    lines: no ip access-list test
    provider: "{{ nxapi }}"
    match: none
  ignore_errors: yes

- name: configure sub level command
  nxos_config:
    lines: 10 permit ip any any log
    parents: ip access-list test
    provider: "{{ nxapi }}"
  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
  nxos_config:
    lines: 10 permit ip any any log
    parents: ip access-list test
    provider: "{{ nxapi }}"
  register: result

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

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

- debug: msg="END nxapi/sublevel.yaml"