summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_banner/tests/cli/basic-no-motd.yaml
blob: 8f4368c2290713f47483aac1602738471497b457 (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
---
- debug: msg="START cli/nxos_banner no-motd test"

- name: Setup
  nxos_banner:
    banner: motd
    text: |
      Junk motd banner
      over multiple lines
    state: present
    provider: "{{ cli }}"

- name: remove motd
  nxos_banner: &rm-motd
    banner: motd
    state: absent
    provider: "{{ cli }}"
  register: result

- assert:
    that:
      - "result.changed == true"
      - "'no banner motd' in result.commands"

- name: remove motd (idempotent)
  nxos_banner: *rm-motd
  register: result

- assert:
    that:
      - "result.changed == false"
      - "result.commands | length == 0"

- debug: msg="END cli/nxos_banner no-motd test"