summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos9_config/tests/cli/toplevel_nonidempotent.yaml
blob: 142d5d7deecf227fc141e239d46164a5bc854899 (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
---
- debug: msg="START cli/toplevel_nonidempotent.yaml"

- name: setup
  dellos9_config:
    lines: ['hostname {{ inventory_hostname_short }}']
    provider: "{{ cli }}"
    match: none

- name: configure top level command
  dellos9_config:
    lines: ['hostname foo']
    provider: "{{ cli }}"
    match: strict
  register: result

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

- name: configure top level command idempotent check
  dellos9_config:
    lines: ['hostname foo']
    provider: "{{ cli }}"
    match: strict
  register: result

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

- name: teardown
  dellos9_config:
    lines: ['hostname {{ inventory_hostname_short }}']
    provider: "{{ cli }}"
    match: none

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