mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-23 04:24:00 -07:00
Add net_logging platform agnostic module and junos implementation (#26316)
* Add net_logging platform agnostic module and junos implemenatation * net_logging platform agnostic module * junos implemenatation of logging module * net_logging integration test * junos_logging integration test
This commit is contained in:
parent
4869a7b0ac
commit
11e72d495d
19 changed files with 908 additions and 19 deletions
2
test/integration/targets/net_logging/defaults/main.yaml
Normal file
2
test/integration/targets/net_logging/defaults/main.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
testcase: "*"
|
16
test/integration/targets/net_logging/tasks/cli.yaml
Normal file
16
test/integration/targets/net_logging/tasks/cli.yaml
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
- 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
|
||||
include: "{{ test_case_to_run }}"
|
||||
with_items: "{{ test_items }}"
|
||||
loop_control:
|
||||
loop_var: test_case_to_run
|
3
test/integration/targets/net_logging/tasks/main.yaml
Normal file
3
test/integration/targets/net_logging/tasks/main.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
- { include: cli.yaml, tags: ['cli'] }
|
||||
- { include: netconf.yaml, tags: ['netconf'] }
|
16
test/integration/targets/net_logging/tasks/netconf.yaml
Normal file
16
test/integration/targets/net_logging/tasks/netconf.yaml
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
- name: collect all netconf test cases
|
||||
find:
|
||||
paths: "{{ role_path }}/tests/netconf"
|
||||
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
|
||||
include: "{{ test_case_to_run }}"
|
||||
with_items: "{{ test_items }}"
|
||||
loop_control:
|
||||
loop_var: test_case_to_run
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
|
||||
- include: "{{ role_path }}/tests/eos/basic.yaml"
|
||||
when: hostvars[inventory_hostname]['ansible_network_os'] == 'eos'
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
- debug: msg="START net_logging eos/basic.yaml"
|
124
test/integration/targets/net_logging/tests/junos/basic.yaml
Normal file
124
test/integration/targets/net_logging/tests/junos/basic.yaml
Normal file
|
@ -0,0 +1,124 @@
|
|||
---
|
||||
- debug: msg="START net_logging junos/basic.yaml"
|
||||
|
||||
- name: setup - remove host logging
|
||||
net_logging:
|
||||
dest: host
|
||||
name: 1.1.1.1
|
||||
facility: pfe
|
||||
level: critical
|
||||
state: absent
|
||||
provider: "{{ netconf }}"
|
||||
|
||||
- name: Create file logging
|
||||
net_logging:
|
||||
dest: host
|
||||
name: 1.1.1.1
|
||||
facility: pfe
|
||||
level: critical
|
||||
state: present
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- name: Get running configuration
|
||||
junos_rpc:
|
||||
rpc: get-configuration
|
||||
provider: "{{ netconf }}"
|
||||
register: config
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'<name>1.1.1.1</name>' in config.xml"
|
||||
- "'<name>pfe</name>' in config.xml"
|
||||
- "'<critical/>' in config.xml"
|
||||
|
||||
- name: Create file logging (idempotent)
|
||||
net_logging:
|
||||
dest: host
|
||||
name: 1.1.1.1
|
||||
facility: pfe
|
||||
level: critical
|
||||
state: present
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: Delete logging configuration
|
||||
net_logging:
|
||||
dest: host
|
||||
name: 1.1.1.1
|
||||
facility: pfe
|
||||
level: critical
|
||||
state: absent
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- name: Get running configuration
|
||||
junos_rpc:
|
||||
rpc: get-configuration
|
||||
provider: "{{ netconf }}"
|
||||
register: config
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'<name>1.1.1.1</name>' not in config.xml"
|
||||
|
||||
- name: Configure console logging
|
||||
net_logging:
|
||||
dest: console
|
||||
facility: kernel
|
||||
level: emergency
|
||||
state: present
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- name: Get running configuration
|
||||
junos_rpc:
|
||||
rpc: get-configuration
|
||||
provider: "{{ netconf }}"
|
||||
register: config
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'<console>' in config.xml"
|
||||
- "'<name>kernel</name>' in config.xml"
|
||||
- "'<emergency/>' in config.xml"
|
||||
|
||||
- name: Configure console logging (idempotent)
|
||||
junos_logging:
|
||||
dest: console
|
||||
facility: kernel
|
||||
level: emergency
|
||||
state: present
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: Delete console logging
|
||||
net_logging:
|
||||
dest: console
|
||||
facility: kernel
|
||||
level: emergency
|
||||
state: absent
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- name: Get running configuration
|
||||
junos_rpc:
|
||||
rpc: get-configuration
|
||||
provider: "{{ netconf }}"
|
||||
register: config
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'<console>' not in config.xml"
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
- include: "{{ role_path }}/tests/junos/basic.yaml"
|
||||
when: hostvars[inventory_hostname]['ansible_network_os'] == 'junos'
|
Loading…
Add table
Add a link
Reference in a new issue