summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_logging/tests/cli/net_logging.yaml
blob: 7c62d72f23fca18bf250d3d05a74804c192c0875 (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 vyos cli/net_logging.yaml on connection={{ ansible_connection }}"

# Add minimal testcase to check args are passed correctly to
# implementation module and module run is successful.

- name: delete logging - setup
  net_logging:
    dest: file
    name: test
    facility: all
    level: notice
    state: absent
  register: result

- name: file logging using platform agnostic module
  net_logging:
    dest: file
    name: test
    facility: all
    level: notice
    state: present
  register: result

- assert:
    that:
      - 'result.changed == true'
      - '"set system syslog file test facility all level notice" in result.commands'

- name: delete logging - teardown
  net_logging:
    dest: file
    name: test
    facility: all
    level: notice
    state: absent
  register: result

- debug: msg="END vyos cli/net_logging.yaml on connection={{ ansible_connection }}"