mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
Add vyos_lldp and vyos_lldp_interface modules (#26753)
* Add vyos_lldp and vyos_lldp_interface modules * Fix module docstring issue * Fix bogus aggregate reference * Add vyos_lldp integration tests * Add vyos_lldp_interface integration tests * Remove unused import for run_commands * Add VyOS net_lldp integration tests * Remove junos and netconf from net_lldp integration tests * Add net_lldp_interface integration tests * Correct CLI filtering tests for VyOS * Fix pep8 issues * Fix more pep8 issues
This commit is contained in:
parent
4b3d6dfa8a
commit
af4dc6d0eb
26 changed files with 885 additions and 0 deletions
3
test/integration/targets/vyos_lldp/defaults/main.yaml
Normal file
3
test/integration/targets/vyos_lldp/defaults/main.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
testcase: "*"
|
||||
test_items: []
|
15
test/integration/targets/vyos_lldp/tasks/cli.yaml
Normal file
15
test/integration/targets/vyos_lldp/tasks/cli.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
- name: collect all cli test cases
|
||||
find:
|
||||
paths: "{{ role_path }}/tests/cli"
|
||||
patterns: "{{ testcase }}.yaml"
|
||||
register: test_cases
|
||||
|
||||
- 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
|
2
test/integration/targets/vyos_lldp/tasks/main.yaml
Normal file
2
test/integration/targets/vyos_lldp/tasks/main.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
- { include: cli.yaml, tags: ['cli'] }
|
42
test/integration/targets/vyos_lldp/tests/cli/basic.yaml
Normal file
42
test/integration/targets/vyos_lldp/tests/cli/basic.yaml
Normal file
|
@ -0,0 +1,42 @@
|
|||
---
|
||||
- name: Make sure LLDP is not running before tests
|
||||
vyos_config:
|
||||
lines: delete service lldp
|
||||
|
||||
- name: Enable LLDP service
|
||||
vyos_lldp:
|
||||
state: present
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- '"set service lldp" in result.commands'
|
||||
|
||||
- name: Enable LLDP service again (idempotent)
|
||||
vyos_lldp:
|
||||
state: present
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == false'
|
||||
|
||||
- name: Disable LLDP service
|
||||
vyos_lldp:
|
||||
state: absent
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- '"delete service lldp" in result.commands'
|
||||
|
||||
- name:
|
||||
vyos_lldp:
|
||||
state: absent
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == false'
|
Loading…
Add table
Add a link
Reference in a new issue