ios_static_route idempotence fix (#35912)

* Remove default admin_distance and fix the idempotence thereof

Fixes #33290

* Fix tests and use yaml anchors to shorten tests

* Add test for undefined admin_distance

* Read config from `show run` if `show ip static route` fails

* Restore flags to ios.get_config &  use get_config where appropriate
This commit is contained in:
Nathaniel Case 2018-03-05 09:28:37 -05:00 committed by GitHub
parent 0feea66988
commit 7016b3b9ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 121 additions and 87 deletions

View file

@ -108,15 +108,15 @@ def get_defaults_flag(module):
def get_config(module, flags=None): def get_config(module, flags=None):
global _DEVICE_CONFIGS flag_str = ' '.join(to_list(flags))
if _DEVICE_CONFIGS != {}: try:
return _DEVICE_CONFIGS return _DEVICE_CONFIGS[flag_str]
else: except KeyError:
connection = get_connection(module) connection = get_connection(module)
out = connection.get_config() out = connection.get_config(flags=flags)
cfg = to_text(out, errors='surrogate_then_replace').strip() cfg = to_text(out, errors='surrogate_then_replace').strip()
_DEVICE_CONFIGS = cfg _DEVICE_CONFIGS[flag_str] = cfg
return cfg return cfg

View file

@ -50,7 +50,6 @@ options:
admin_distance: admin_distance:
description: description:
- Admin distance of the static route. - Admin distance of the static route.
default: 1
aggregate: aggregate:
description: List of static route definitions. description: List of static route definitions.
state: state:
@ -98,14 +97,14 @@ commands:
- ip route 192.168.2.0 255.255.255.0 10.0.0.1 - ip route 192.168.2.0 255.255.255.0 10.0.0.1
""" """
from copy import deepcopy from copy import deepcopy
import re
from ansible.module_utils._text import to_text from ansible.module_utils._text import to_text
from ansible.module_utils.basic import AnsibleModule from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.connection import exec_command from ansible.module_utils.connection import ConnectionError
from ansible.module_utils.network.common.utils import remove_default_spec from ansible.module_utils.network.common.utils import remove_default_spec
from ansible.module_utils.network.ios.ios import load_config, run_commands from ansible.module_utils.network.ios.ios import get_config, load_config, run_commands
from ansible.module_utils.network.ios.ios import ios_argument_spec, check_args from ansible.module_utils.network.ios.ios import ios_argument_spec, check_args
import re
try: try:
from ipaddress import ip_network from ipaddress import ip_network
@ -114,23 +113,39 @@ except ImportError:
HAS_IPADDRESS = False HAS_IPADDRESS = False
def map_obj_to_commands(updates, module): def map_obj_to_commands(want, have, module):
commands = list() commands = list()
want, have = updates
for w in want: for w in want:
# Try to match an existing config with the desired config
for h in have:
for key in ['prefix', 'mask', 'next_hop']:
# If any key doesn't match, skip to the next set
if w[key] != h[key]:
break
# If all keys match, don't execute final else
else:
break
# If no matches found, clear `h`
else:
h = None
prefix = w['prefix'] prefix = w['prefix']
mask = w['mask'] mask = w['mask']
next_hop = w['next_hop'] next_hop = w['next_hop']
admin_distance = w['admin_distance'] admin_distance = w.get('admin_distance')
if not admin_distance and h:
w['admin_distance'] = admin_distance = h['admin_distance']
state = w['state'] state = w['state']
del w['state'] del w['state']
if state == 'absent' and w in have: if state == 'absent' and w in have:
commands.append('no ip route %s %s %s' % (prefix, mask, next_hop)) commands.append('no ip route %s %s %s' % (prefix, mask, next_hop))
elif state == 'present' and w not in have: elif state == 'present' and w not in have:
commands.append('ip route %s %s %s %s' % (prefix, mask, next_hop, if admin_distance:
admin_distance)) commands.append('ip route %s %s %s %s' % (prefix, mask, next_hop, admin_distance))
else:
commands.append('ip route %s %s %s' % (prefix, mask, next_hop))
return commands return commands
@ -138,7 +153,8 @@ def map_obj_to_commands(updates, module):
def map_config_to_obj(module): def map_config_to_obj(module):
obj = [] obj = []
rc, out, err = exec_command(module, 'show ip static route') try:
out = run_commands(module, 'show ip static route')[0]
match = re.search(r'.*Static local RIB for default\s*(.*)$', out, re.DOTALL) match = re.search(r'.*Static local RIB for default\s*(.*)$', out, re.DOTALL)
if match and match.group(1): if match and match.group(1):
@ -156,37 +172,63 @@ def map_config_to_obj(module):
next_hop = splitted_line[4] next_hop = splitted_line[4]
admin_distance = splitted_line[2][1] admin_distance = splitted_line[2][1]
obj.append({'prefix': prefix, 'mask': mask, obj.append({
'next_hop': next_hop, 'prefix': prefix, 'mask': mask, 'next_hop': next_hop,
'admin_distance': admin_distance}) 'admin_distance': admin_distance
})
except ConnectionError:
out = get_config(module, flags='| include ip route')
for line in out.splitlines():
splitted_line = line.split()
if len(splitted_line) not in (5, 6):
continue
prefix = splitted_line[2]
mask = splitted_line[3]
next_hop = splitted_line[4]
if len(splitted_line) == 6:
admin_distance = splitted_line[5]
else:
admin_distance = '1'
obj.append({
'prefix': prefix, 'mask': mask, 'next_hop': next_hop,
'admin_distance': admin_distance
})
return obj return obj
def map_params_to_obj(module, required_together=None): def map_params_to_obj(module, required_together=None):
keys = ['prefix', 'mask', 'next_hop', 'admin_distance', 'state']
obj = [] obj = []
aggregate = module.params.get('aggregate') aggregate = module.params.get('aggregate')
if aggregate: if aggregate:
for item in aggregate: for item in aggregate:
for key in item: route = item.copy()
if item.get(key) is None: for key in keys:
item[key] = module.params[key] if route.get(key) is None:
route[key] = module.params.get(key)
module._check_required_together(required_together, item) module._check_required_together(required_together, route)
d = item.copy() obj.append(route)
d['admin_distance'] = str(module.params['admin_distance'])
obj.append(d)
else: else:
module._check_required_together(required_together, module.params)
obj.append({ obj.append({
'prefix': module.params['prefix'].strip(), 'prefix': module.params['prefix'].strip(),
'mask': module.params['mask'].strip(), 'mask': module.params['mask'].strip(),
'next_hop': module.params['next_hop'].strip(), 'next_hop': module.params['next_hop'].strip(),
'admin_distance': str(module.params['admin_distance']), 'admin_distance': module.params.get('admin_distance'),
'state': module.params['state'] 'state': module.params['state'],
}) })
for route in obj:
if route['admin_distance']:
route['admin_distance'] = str(route['admin_distance'])
return obj return obj
@ -197,7 +239,7 @@ def main():
prefix=dict(type='str'), prefix=dict(type='str'),
mask=dict(type='str'), mask=dict(type='str'),
next_hop=dict(type='str'), next_hop=dict(type='str'),
admin_distance=dict(default=1, type='int'), admin_distance=dict(type='int'),
state=dict(default='present', choices=['present', 'absent']) state=dict(default='present', choices=['present', 'absent'])
) )
@ -220,7 +262,6 @@ def main():
module = AnsibleModule(argument_spec=argument_spec, module = AnsibleModule(argument_spec=argument_spec,
required_one_of=required_one_of, required_one_of=required_one_of,
required_together=required_together,
mutually_exclusive=mutually_exclusive, mutually_exclusive=mutually_exclusive,
supports_check_mode=True) supports_check_mode=True)
@ -236,7 +277,7 @@ def main():
want = map_params_to_obj(module, required_together=required_together) want = map_params_to_obj(module, required_together=required_together)
have = map_config_to_obj(module) have = map_config_to_obj(module)
commands = map_obj_to_commands((want, have), module) commands = map_obj_to_commands(want, have, module)
result['commands'] = commands result['commands'] = commands
if commands: if commands:
@ -247,5 +288,6 @@ def main():
module.exit_json(**result) module.exit_json(**result)
if __name__ == '__main__': if __name__ == '__main__':
main() main()

View file

@ -61,8 +61,7 @@ class Cliconf(CliconfBase):
else: else:
cmd = 'show startup-config' cmd = 'show startup-config'
flags = [] if flags is None else flags cmd += ' '.join(to_list(flags))
cmd += ' '.join(flags)
cmd = cmd.strip() cmd = cmd.strip()
return self.send_command(cmd) return self.send_command(cmd)

View file

@ -1,15 +1,17 @@
--- ---
- debug: msg="START ios cli/ios_static_route.yaml on connection={{ ansible_connection }}" - debug: msg="START ios cli/ios_static_route.yaml on connection={{ ansible_connection }}"
- name: delete static route - setup - name: Clear all static routes
net_static_route: ios_static_route: &delete_all
prefix: 172.16.31.0 aggregate:
- { prefix: 172.16.31.0 }
- { prefix: 172.16.32.0 }
- { prefix: 172.16.33.0 }
- { prefix: 172.16.34.0 }
mask: 255.255.255.0 mask: 255.255.255.0
next_hop: 10.0.0.8 next_hop: 10.0.0.8
admin_distance: 1
state: absent state: absent
provider: "{{ cli }}" provider: "{{ cli }}"
register: result
- name: create static route - name: create static route
ios_static_route: ios_static_route:
@ -23,13 +25,14 @@
- assert: - assert:
that: that:
- 'result.changed == true' - 'result.changed == true'
- 'result.commands == ["ip route 172.16.31.0 255.255.255.0 10.0.0.8 1"]' - 'result.commands == ["ip route 172.16.31.0 255.255.255.0 10.0.0.8"]'
- name: create static route again (idempotent) - name: Verify idempotence with default admin_distance
ios_static_route: ios_static_route:
prefix: 172.16.31.0 prefix: 172.16.31.0
mask: 255.255.255.0 mask: 255.255.255.0
next_hop: 10.0.0.8 next_hop: 10.0.0.8
admin_distance: 1
state: present state: present
provider: "{{ cli }}" provider: "{{ cli }}"
register: result register: result
@ -39,7 +42,7 @@
- 'result.changed == false' - 'result.changed == false'
- name: modify admin distance of static route - name: modify admin distance of static route
ios_static_route: ios_static_route: &admin2
prefix: 172.16.31.0 prefix: 172.16.31.0
mask: 255.255.255.0 mask: 255.255.255.0
next_hop: 10.0.0.8 next_hop: 10.0.0.8
@ -54,11 +57,18 @@
- 'result.commands == ["ip route 172.16.31.0 255.255.255.0 10.0.0.8 2"]' - 'result.commands == ["ip route 172.16.31.0 255.255.255.0 10.0.0.8 2"]'
- name: modify admin distance of static route again (idempotent) - name: modify admin distance of static route again (idempotent)
ios_static_route: *admin2
register: result
- assert:
that:
- 'result.changed == false'
- name: Verify idempotence with unspecified admin_distance
ios_static_route: ios_static_route:
prefix: 172.16.31.0 prefix: 172.16.31.0
mask: 255.255.255.0 mask: 255.255.255.0
next_hop: 10.0.0.8 next_hop: 10.0.0.8
admin_distance: 2
state: present state: present
provider: "{{ cli }}" provider: "{{ cli }}"
register: result register: result
@ -68,11 +78,10 @@
- 'result.changed == false' - 'result.changed == false'
- name: delete static route - name: delete static route
ios_static_route: ios_static_route: &delete
prefix: 172.16.31.0 prefix: 172.16.31.0
mask: 255.255.255.0 mask: 255.255.255.0
next_hop: 10.0.0.8 next_hop: 10.0.0.8
admin_distance: 2
state: absent state: absent
provider: "{{ cli }}" provider: "{{ cli }}"
register: result register: result
@ -83,13 +92,7 @@
- 'result.commands == ["no ip route 172.16.31.0 255.255.255.0 10.0.0.8"]' - 'result.commands == ["no ip route 172.16.31.0 255.255.255.0 10.0.0.8"]'
- name: delete static route again (idempotent) - name: delete static route again (idempotent)
ios_static_route: ios_static_route: *delete
prefix: 172.16.31.0
mask: 255.255.255.0
next_hop: 10.0.0.8
admin_distance: 2
state: absent
provider: "{{ cli }}"
register: result register: result
- assert: - assert:
@ -99,8 +102,10 @@
- name: Add static route aggregates - name: Add static route aggregates
ios_static_route: ios_static_route:
aggregate: aggregate:
- { prefix: 172.16.32.0, mask: 255.255.255.0, next_hop: 10.0.0.8 } - { prefix: 172.16.32.0 }
- { prefix: 172.16.33.0, mask: 255.255.255.0, next_hop: 10.0.0.8 } - { prefix: 172.16.33.0 }
mask: 255.255.255.0
next_hop: 10.0.0.8
state: present state: present
provider: "{{ cli }}" provider: "{{ cli }}"
register: result register: result
@ -108,14 +113,16 @@
- assert: - assert:
that: that:
- 'result.changed == true' - 'result.changed == true'
- 'result.commands == ["ip route 172.16.32.0 255.255.255.0 10.0.0.8 1", "ip route 172.16.33.0 255.255.255.0 10.0.0.8 1"]' - 'result.commands == ["ip route 172.16.32.0 255.255.255.0 10.0.0.8", "ip route 172.16.33.0 255.255.255.0 10.0.0.8"]'
- name: Add and remove static route aggregates with overrides - name: Add and remove static route aggregates with overrides
ios_static_route: ios_static_route:
aggregate: aggregate:
- { prefix: 172.16.32.0, mask: 255.255.255.0, next_hop: 10.0.0.8 } - { prefix: 172.16.32.0 }
- { prefix: 172.16.33.0, mask: 255.255.255.0, next_hop: 10.0.0.8, state: absent } - { prefix: 172.16.33.0, state: absent }
- { prefix: 172.16.34.0, mask: 255.255.255.0, next_hop: 10.0.0.8 } - { prefix: 172.16.34.0 }
mask: 255.255.255.0
next_hop: 10.0.0.8
state: present state: present
provider: "{{ cli }}" provider: "{{ cli }}"
register: result register: result
@ -123,16 +130,10 @@
- assert: - assert:
that: that:
- 'result.changed == true' - 'result.changed == true'
- 'result.commands == ["no ip route 172.16.33.0 255.255.255.0 10.0.0.8", "ip route 172.16.34.0 255.255.255.0 10.0.0.8 1"]' - 'result.commands == ["no ip route 172.16.33.0 255.255.255.0 10.0.0.8", "ip route 172.16.34.0 255.255.255.0 10.0.0.8"]'
- name: Remove static route aggregates - name: Remove static route aggregates
ios_static_route: ios_static_route: *delete_all
aggregate:
- { prefix: 172.16.32.0, mask: 255.255.255.0, next_hop: 10.0.0.8 }
- { prefix: 172.16.33.0, mask: 255.255.255.0, next_hop: 10.0.0.8 }
- { prefix: 172.16.34.0, mask: 255.255.255.0, next_hop: 10.0.0.8 }
state: absent
provider: "{{ cli }}"
register: result register: result
- assert: - assert:

View file

@ -5,20 +5,19 @@
# implementation module and module run is successful. # implementation module and module run is successful.
- name: delete static route - setup - name: delete static route - setup
net_static_route: net_static_route: &delete
prefix: 172.16.31.0 prefix: 172.16.31.0
mask: 255.255.255.0 mask: 255.255.255.0
next_hop: 10.0.0.8 next_hop: 10.0.0.8
admin_distance: 1
state: absent state: absent
provider: "{{ cli }}" provider: "{{ cli }}"
register: result
- name: create static route using platform agnostic module - name: create static route using platform agnostic module
net_static_route: net_static_route:
prefix: 172.16.31.0 prefix: 172.16.31.0
mask: 255.255.255.0 mask: 255.255.255.0
next_hop: 10.0.0.8 next_hop: 10.0.0.8
admin_distance: 1
state: present state: present
provider: "{{ cli }}" provider: "{{ cli }}"
register: result register: result
@ -29,13 +28,6 @@
- 'result.commands == ["ip route 172.16.31.0 255.255.255.0 10.0.0.8 1"]' - 'result.commands == ["ip route 172.16.31.0 255.255.255.0 10.0.0.8 1"]'
- name: delete static route - teardown - name: delete static route - teardown
net_static_route: net_static_route: *delete
prefix: 172.16.31.0
mask: 255.255.255.0
next_hop: 10.0.0.8
admin_distance: 2
state: absent
provider: "{{ cli }}"
register: result
- debug: msg="END ios cli/net_static_route.yaml on connection={{ ansible_connection }}" - debug: msg="END ios cli/net_static_route.yaml on connection={{ ansible_connection }}"