Lenovo cnos static route (#53736)

* Adding new module to Ansible viz. cnos_static_route.
This commit is contained in:
Anil Kumar Muraleedharan
2019-03-20 18:17:45 +05:30
committed by Nathaniel Case
parent cfd869e898
commit e4a1473a8f
9 changed files with 544 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
# No Lenovo Switch simulator yet, so not enabled
unsupported

View File

@@ -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>

View File

@@ -0,0 +1,2 @@
---
testcase: "*"

View 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

View File

@@ -0,0 +1,2 @@
---
- { include: cli.yaml, tags: ['cli'] }

View 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 }}"