summaryrefslogtreecommitdiff
path: root/tests/integration/targets/vyos_logging
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/targets/vyos_logging')
-rw-r--r--tests/integration/targets/vyos_logging/aliases0
-rw-r--r--tests/integration/targets/vyos_logging/defaults/main.yaml3
-rw-r--r--tests/integration/targets/vyos_logging/tasks/cli.yaml22
-rw-r--r--tests/integration/targets/vyos_logging/tasks/main.yaml2
-rw-r--r--tests/integration/targets/vyos_logging/tests/cli/basic.yaml126
-rw-r--r--tests/integration/targets/vyos_logging/tests/cli/net_logging.yaml39
6 files changed, 192 insertions, 0 deletions
diff --git a/tests/integration/targets/vyos_logging/aliases b/tests/integration/targets/vyos_logging/aliases
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/tests/integration/targets/vyos_logging/aliases
diff --git a/tests/integration/targets/vyos_logging/defaults/main.yaml b/tests/integration/targets/vyos_logging/defaults/main.yaml
new file mode 100644
index 00000000..9ef5ba51
--- /dev/null
+++ b/tests/integration/targets/vyos_logging/defaults/main.yaml
@@ -0,0 +1,3 @@
+---
+testcase: "*"
+test_items: []
diff --git a/tests/integration/targets/vyos_logging/tasks/cli.yaml b/tests/integration/targets/vyos_logging/tasks/cli.yaml
new file mode 100644
index 00000000..890d3acf
--- /dev/null
+++ b/tests/integration/targets/vyos_logging/tasks/cli.yaml
@@ -0,0 +1,22 @@
+---
+- name: collect all cli test cases
+ find:
+ paths: "{{ role_path }}/tests/cli"
+ patterns: "{{ testcase }}.yaml"
+ register: test_cases
+ delegate_to: localhost
+
+- name: set test_items
+ set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
+
+- name: run test case (connection=network_cli)
+ include: "{{ test_case_to_run }} ansible_connection=network_cli"
+ with_items: "{{ test_items }}"
+ loop_control:
+ loop_var: test_case_to_run
+
+- name: run test case (connection=local)
+ include: "{{ test_case_to_run }} ansible_connection=local"
+ with_first_found: "{{ test_items }}"
+ loop_control:
+ loop_var: test_case_to_run
diff --git a/tests/integration/targets/vyos_logging/tasks/main.yaml b/tests/integration/targets/vyos_logging/tasks/main.yaml
new file mode 100644
index 00000000..415c99d8
--- /dev/null
+++ b/tests/integration/targets/vyos_logging/tasks/main.yaml
@@ -0,0 +1,2 @@
+---
+- { include: cli.yaml, tags: ['cli'] }
diff --git a/tests/integration/targets/vyos_logging/tests/cli/basic.yaml b/tests/integration/targets/vyos_logging/tests/cli/basic.yaml
new file mode 100644
index 00000000..144f8d38
--- /dev/null
+++ b/tests/integration/targets/vyos_logging/tests/cli/basic.yaml
@@ -0,0 +1,126 @@
+---
+- debug: msg="START cli/basic.yaml on connection={{ ansible_connection }}"
+
+- name: set-up logging
+ vyos.vyos.vyos_logging:
+ dest: console
+ facility: all
+ level: info
+ state: present
+ register: result
+
+- assert:
+ that:
+ - 'result.changed == true'
+ - '"set system syslog console facility all level info" in result.commands'
+
+- name: set-up logging again (idempotent)
+ vyos.vyos.vyos_logging:
+ dest: console
+ facility: all
+ level: info
+ state: present
+ register: result
+
+- assert:
+ that:
+ - 'result.changed == false'
+
+- name: file logging
+ vyos.vyos.vyos_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: file logging again (idempotent)
+ vyos.vyos.vyos_logging:
+ dest: file
+ name: test
+ facility: all
+ level: notice
+ state: present
+ register: result
+
+- assert:
+ that:
+ - 'result.changed == false'
+
+- name: delete logging
+ vyos.vyos.vyos_logging:
+ dest: file
+ name: test
+ facility: all
+ level: notice
+ state: absent
+ register: result
+
+- assert:
+ that:
+ - 'result.changed == true'
+ - '"delete system syslog file test facility all level notice" in result.commands'
+
+- name: delete logging again (idempotent)
+ vyos.vyos.vyos_logging:
+ dest: file
+ name: test
+ facility: all
+ level: notice
+ state: absent
+ register: result
+
+- assert:
+ that:
+ - 'result.changed == false'
+
+- name: Add logging collections
+ vyos.vyos.vyos_logging:
+ aggregate:
+ - { dest: file, name: test1, facility: all, level: info }
+ - { dest: file, name: test2, facility: news, level: debug }
+ state: present
+ register: result
+
+- assert:
+ that:
+ - 'result.changed == true'
+ - '"set system syslog file test1 facility all level info" in result.commands'
+ - '"set system syslog file test2 facility news level debug" in result.commands'
+
+- name: Add and remove logging collections with overrides
+ vyos.vyos.vyos_logging:
+ aggregate:
+ - { dest: console, facility: all, level: info }
+ - { dest: file, name: test1, facility: all, level: info, state: absent }
+ - { dest: console, facility: daemon, level: warning }
+ state: present
+ register: result
+
+- assert:
+ that:
+ - 'result.changed == true'
+ - '"delete system syslog file test1 facility all level info" in result.commands'
+ - '"set system syslog console facility daemon level warning" in result.commands'
+
+- name: Remove logging collections
+ vyos.vyos.vyos_logging:
+ aggregate:
+ - { dest: console, facility: all, level: info }
+ - { dest: console, facility: daemon, level: warning }
+ - { dest: file, name: test2, facility: news, level: debug }
+ state: absent
+ register: result
+
+- assert:
+ that:
+ - 'result.changed == true'
+ - '"delete system syslog console facility all level info" in result.commands'
+ - '"delete system syslog console facility daemon level warning" in result.commands'
+ - '"delete system syslog file test2 facility news level debug" in result.commands'
diff --git a/tests/integration/targets/vyos_logging/tests/cli/net_logging.yaml b/tests/integration/targets/vyos_logging/tests/cli/net_logging.yaml
new file mode 100644
index 00000000..7c62d72f
--- /dev/null
+++ b/tests/integration/targets/vyos_logging/tests/cli/net_logging.yaml
@@ -0,0 +1,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 }}"