summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_config/tests/eapi/toplevel_after.yaml
blob: 4e091dd2af26440235c21900a33cf2be9e527a87 (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
44
---
- debug: msg="START eapi/toplevel_after.yaml"

- name: setup
  eos_config:
    lines:
      - snmp-server contact ansible
      - "hostname {{ inventory_hostname_short }}"
    match: none
  become: yes

- name: configure top level command with before
  eos_config:
    lines: hostname foo
    after: snmp-server contact bar
  become: yes
  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
  eos_config:
    lines: hostname foo
    after: snmp-server contact foo
  become: yes
  register: result

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

- name: teardown
  eos_config:
    lines:
      - no snmp-server contact
      - hostname {{ inventory_hostname_short }}
    match: none
  become: yes

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