mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Lenovo cnos static route (#53736)
* Adding new module to Ansible viz. cnos_static_route.
This commit is contained in:
committed by
Nathaniel Case
parent
cfd869e898
commit
e4a1473a8f
2
test/integration/targets/cnos_static_route/aliases
Normal file
2
test/integration/targets/cnos_static_route/aliases
Normal file
@@ -0,0 +1,2 @@
|
||||
# No Lenovo Switch simulator yet, so not enabled
|
||||
unsupported
|
||||
@@ -0,0 +1,14 @@
|
||||
# You have to paste this dummy information in /etc/ansible/hosts
|
||||
# Notes:
|
||||
# - Comments begin with the '#' character
|
||||
# - Blank lines are ignored
|
||||
# - Groups of hosts are delimited by [header] elements
|
||||
# - You can enter hostnames or ip Addresses
|
||||
# - A hostname/ip can be a member of multiple groups
|
||||
#
|
||||
# In the /etc/ansible/hosts file u have to enter [cnos_static_route_sample] tag
|
||||
# Following you should specify IP Addresses details
|
||||
# Please change <username> and <password> with appropriate value for your switch.
|
||||
|
||||
[cnos_static_route_sample]
|
||||
10.241.107.39 ansible_network_os=cnos ansible_ssh_user=<username> ansible_ssh_pass=<password>
|
||||
@@ -0,0 +1,2 @@
|
||||
---
|
||||
testcase: "*"
|
||||
22
test/integration/targets/cnos_static_route/tasks/cli.yaml
Normal file
22
test/integration/targets/cnos_static_route/tasks/cli.yaml
Normal file
@@ -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 cases (connection=network_cli)
|
||||
include: "{{ test_case_to_run }}"
|
||||
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
|
||||
@@ -0,0 +1,2 @@
|
||||
---
|
||||
- { include: cli.yaml, tags: ['cli'] }
|
||||
136
test/integration/targets/cnos_static_route/tests/cli/basic.yaml
Normal file
136
test/integration/targets/cnos_static_route/tests/cli/basic.yaml
Normal file
@@ -0,0 +1,136 @@
|
||||
---
|
||||
#- debug: msg="START cnos cli/cnos_static_route.yaml on connection={{ ansible_connection }}"
|
||||
|
||||
- name: Clear all static routes
|
||||
cnos_static_route: &delete_all
|
||||
aggregate:
|
||||
- { prefix: 10.241.107.0 }
|
||||
- { prefix: 10.241.106.0 }
|
||||
- { prefix: 10.241.105.0 }
|
||||
- { prefix: 10.241.108.0 }
|
||||
mask: 255.255.255.0
|
||||
next_hop: 10.241.100.100
|
||||
state: absent
|
||||
|
||||
- name: create static route
|
||||
cnos_static_route:
|
||||
prefix: 10.241.107.0
|
||||
mask: 255.255.255.0
|
||||
next_hop: 10.241.100.100
|
||||
state: present
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- 'result.commands == ["ip route 10.241.107.0 255.255.255.0 10.241.100.100 1"]'
|
||||
|
||||
- name: Verify idempotence with default admin_distance
|
||||
cnos_static_route:
|
||||
prefix: 10.241.107.0
|
||||
mask: 255.255.255.0
|
||||
next_hop: 10.241.100.100
|
||||
admin_distance: 1
|
||||
state: present
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
|
||||
- name: modify admin distance of static route
|
||||
cnos_static_route: &admin2
|
||||
prefix: 10.241.107.0
|
||||
mask: 255.255.255.0
|
||||
next_hop: 10.241.100.100
|
||||
admin_distance: 2
|
||||
state: present
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- 'result.commands == ["ip route 10.241.107.0 255.255.255.0 10.241.100.100 2"]'
|
||||
|
||||
- name: modify admin distance of static route again (idempotent)
|
||||
cnos_static_route: *admin2
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
|
||||
- name: Verify idempotence with unspecified admin_distance
|
||||
cnos_static_route:
|
||||
prefix: 10.241.107.0
|
||||
mask: 255.255.255.0
|
||||
next_hop: 10.241.100.100
|
||||
state: present
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
|
||||
- name: delete static route
|
||||
cnos_static_route: &delete
|
||||
prefix: 10.241.107.0
|
||||
mask: 255.255.255.0
|
||||
next_hop: 10.241.100.100
|
||||
state: absent
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- 'result.commands == ["no ip route 10.241.107.0 255.255.255.0 10.241.100.100 1"]'
|
||||
|
||||
- name: delete static route again (idempotent)
|
||||
cnos_static_route: *delete
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
|
||||
- name: Add static route aggregates
|
||||
cnos_static_route:
|
||||
aggregate:
|
||||
- { prefix: 10.241.106.0 }
|
||||
- { prefix: 10.241.105.0 }
|
||||
mask: 255.255.255.0
|
||||
next_hop: 10.241.100.100
|
||||
state: present
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- 'result.commands == ["ip route 10.241.106.0 255.255.255.0 10.241.100.100 1", "ip route 10.241.105.0 255.255.255.0 10.241.100.100 1"]'
|
||||
|
||||
- name: Add and remove static route aggregates with overrides
|
||||
cnos_static_route:
|
||||
aggregate:
|
||||
- { prefix: 10.241.106.0 }
|
||||
- { prefix: 10.241.105.0, state: absent }
|
||||
- { prefix: 10.241.108.0 }
|
||||
mask: 255.255.255.0
|
||||
next_hop: 10.241.100.100
|
||||
state: present
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- 'result.commands == ["ip route 10.241.106.0 255.255.255.0 10.241.100.100 1", "no ip route 10.241.105.0 255.255.255.0 10.241.100.100 1", "ip route 10.241.108.0 255.255.255.0 10.241.100.100 1"]'
|
||||
|
||||
- name: Remove static route aggregates
|
||||
cnos_static_route: *delete_all
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- 'result.commands == ["no ip route 10.241.107.0 255.255.255.0 10.241.100.100 1","no ip route 10.241.106.0 255.255.255.0 10.241.100.100 1","no ip route 10.241.105.0 255.255.255.0 10.241.100.100 1" ,"no ip route 10.241.108.0 255.255.255.0 10.241.100.100 1"]'
|
||||
|
||||
#- debug: msg="END cnos cli/cnos_static_route.yaml on connection={{ ansible_connection }}"
|
||||
Reference in New Issue
Block a user