summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_config/tests/nxapi/toplevel_after.yaml
blob: 8749be5fd5180d0d214a8ffdf2b633e9afd5c5d3 (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
---
- debug: msg="START nxapi/toplevel_after.yaml"

- name: setup
  nxos_config:
    lines:
      - "snmp-server contact ansible"
      - "hostname switch"
    match: none

- name: configure top level command with before
  nxos_config:
    lines: hostname foo
    after: snmp-server contact bar
  register: result

- assert:
    that:
      - "result.changed == true"
      - "'hostname foo' in result.updates"
      - "'snmp-server contact bar' in result.updates"

- name: configure top level command with before idempotent check
  nxos_config:
    lines: hostname foo
    after: snmp-server contact foo
  register: result

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

- name: teardown
  nxos_config:
    lines:
      - "no snmp-server contact ansible"
      - "hostname switch"
    match: none

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