summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos9_config/tests/cli/toplevel.yaml
blob: 22669a4d8f579eab7e96cb949002a5eb50c748b5 (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
---
- debug: msg="START cli/toplevel.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 }}"
  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 }}"
  register: result

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

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

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