summaryrefslogtreecommitdiffstats
path: root/ansible_collections/arista/eos/tests/integration/targets/eos_config/tests/cli/toplevel.yaml
blob: ab8b29997dcdfd1b8b1f29cd4528ffed1305635a (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
42
43
---
- ansible.builtin.debug: msg="START cli/toplevel.yaml on connection={{ ansible_connection }}"

- name: setup
  become: true
  arista.eos.eos_config:
    lines:
      - no hostname

- name: setup
  become: true
  arista.eos.eos_config:
    lines: hostname {{ inventory_hostname_short }}
    match: none

- name: configure top level command
  become: true
  register: result
  arista.eos.eos_config:
    lines: hostname foo

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

- name: configure top level command idempotent check
  become: true
  register: result
  arista.eos.eos_config:
    lines: hostname foo

- ansible.builtin.assert:
    that:
      - result.changed == false

- name: teardown
  become: true
  arista.eos.eos_config:
    lines: hostname {{ inventory_hostname_short }}
    match: none

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