summaryrefslogtreecommitdiff
path: root/test/integration/targets/iosxr_config/tests/cli/toplevel_after.yaml
blob: 7fcb78a7e3643509f3015e1da3ab4ba03b0f27b3 (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 cli/toplevel_after.yaml on connection={{ ansible_connection }}"

- name: setup
  iosxr_config:
    commands:
      - "no cdp"
      - "hostname {{ inventory_hostname_short }}"
    match: none

- name: configure top level command with before
  iosxr_config:
    commands: ['hostname foo']
    after: ['cdp']
  register: result

- assert:
    that:
      - "result.changed == true"
      - "'hostname foo' in result.commands"
      - "'cdp' in result.commands"

- name: configure top level command with before idempotent check
  iosxr_config:
    commands: ['hostname foo']
    after: ['no cdp']
  register: result

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

- name: teardown
  iosxr_config:
    commands:
      - "no cdp"
      - "hostname {{ inventory_hostname_short }}"
    match: none

- debug: msg="END cli/toplevel_after.yaml on connection={{ ansible_connection }}"