nxos_pim_rp_address fixes (#26119)
* nxos_pim_rp_address tests * nxos_pim_rp_address changes * Address issues with idempotence
This commit is contained in:
parent
7f6c7c6334
commit
3102746ebe
4 changed files with 159 additions and 161 deletions
|
@ -16,9 +16,11 @@
|
||||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
|
|
||||||
ANSIBLE_METADATA = {'metadata_version': '1.0',
|
ANSIBLE_METADATA = {
|
||||||
'status': ['preview'],
|
'metadata_version': '1.0',
|
||||||
'supported_by': 'community'}
|
'status': ['preview'],
|
||||||
|
'supported_by': 'community',
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
|
@ -28,149 +30,93 @@ extends_documentation_fragment: nxos
|
||||||
version_added: "2.2"
|
version_added: "2.2"
|
||||||
short_description: Manages configuration of an PIM static RP address instance.
|
short_description: Manages configuration of an PIM static RP address instance.
|
||||||
description:
|
description:
|
||||||
- Manages configuration of an Protocol Independent Multicast (PIM) static
|
- Manages configuration of an Protocol Independent Multicast (PIM) static
|
||||||
rendezvous point (RP) address instance.
|
rendezvous point (RP) address instance.
|
||||||
author: Gabriele Gerbino (@GGabriele)
|
author: Gabriele Gerbino (@GGabriele)
|
||||||
notes:
|
notes:
|
||||||
- C(state=absent) remove the whole rp-address configuration, if existing.
|
- C(state=absent) remove the whole rp-address configuration, if existing.
|
||||||
options:
|
options:
|
||||||
rp_address:
|
rp_address:
|
||||||
description:
|
description:
|
||||||
- Configures a Protocol Independent Multicast (PIM) static
|
- Configures a Protocol Independent Multicast (PIM) static
|
||||||
rendezvous point (RP) address. Valid values are
|
rendezvous point (RP) address. Valid values are
|
||||||
unicast addresses.
|
unicast addresses.
|
||||||
required: true
|
required: true
|
||||||
group_list:
|
group_list:
|
||||||
description:
|
description:
|
||||||
- Group range for static RP. Valid values are multicast addresses.
|
- Group range for static RP. Valid values are multicast addresses.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
prefix_list:
|
prefix_list:
|
||||||
description:
|
description:
|
||||||
- Prefix list policy for static RP. Valid values are prefix-list
|
- Prefix list policy for static RP. Valid values are prefix-list
|
||||||
policy names.
|
policy names.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
route_map:
|
route_map:
|
||||||
description:
|
description:
|
||||||
- Route map policy for static RP. Valid values are route-map
|
- Route map policy for static RP. Valid values are route-map
|
||||||
policy names.
|
policy names.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
bidir:
|
bidir:
|
||||||
description:
|
description:
|
||||||
- Group range is treated in PIM bidirectional mode.
|
- Group range is treated in PIM bidirectional mode.
|
||||||
required: false
|
required: false
|
||||||
choices: ['true','false']
|
choices: ['true','false']
|
||||||
default: null
|
default: null
|
||||||
'''
|
'''
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
- nxos_pim_rp_address:
|
- nxos_pim_rp_address:
|
||||||
rp_address: "10.1.1.20"
|
rp_address: "10.1.1.20"
|
||||||
state: present
|
state: present
|
||||||
username: "{{ un }}"
|
|
||||||
password: "{{ pwd }}"
|
|
||||||
host: "{{ inventory_hostname }}"
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
proposed:
|
commands:
|
||||||
description: k/v pairs of parameters passed into module
|
|
||||||
returned: verbose mode
|
|
||||||
type: dict
|
|
||||||
sample: {"rp_address": "10.1.1.21"}
|
|
||||||
existing:
|
|
||||||
description: list of existing pim rp-address configuration entries
|
|
||||||
returned: verbose mode
|
|
||||||
type: list
|
|
||||||
sample: []
|
|
||||||
end_state:
|
|
||||||
description: pim rp-address configuration entries after module execution
|
|
||||||
returned: verbose mode
|
|
||||||
type: list
|
|
||||||
sample: [{"bidir": false, "group_list": "224.0.0.0/4",
|
|
||||||
"rp_address": "10.1.1.21"}]
|
|
||||||
updates:
|
|
||||||
description: commands sent to the device
|
description: commands sent to the device
|
||||||
returned: always
|
returned: always
|
||||||
type: list
|
type: list
|
||||||
sample: ["router bgp 65535", "vrf test", "router-id 1.1.1.1"]
|
sample: ["router bgp 65535", "vrf test", "router-id 1.1.1.1"]
|
||||||
changed:
|
|
||||||
description: check to see if a change was made on the device
|
|
||||||
returned: always
|
|
||||||
type: boolean
|
|
||||||
sample: true
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import re
|
import re
|
||||||
from ansible.module_utils.nxos import get_config, load_config, run_commands
|
|
||||||
|
from ansible.module_utils.nxos import get_config, load_config
|
||||||
from ansible.module_utils.nxos import nxos_argument_spec, check_args
|
from ansible.module_utils.nxos import nxos_argument_spec, check_args
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible.module_utils.netcfg import CustomNetworkConfig
|
from ansible.module_utils.netcfg import CustomNetworkConfig
|
||||||
|
|
||||||
import re
|
|
||||||
|
|
||||||
BOOL_PARAMS = ['bidir']
|
|
||||||
PARAM_TO_COMMAND_KEYMAP = {
|
|
||||||
'rp_address': 'ip pim rp-address'
|
|
||||||
}
|
|
||||||
PARAM_TO_DEFAULT_KEYMAP = {}
|
|
||||||
WARNINGS = []
|
|
||||||
|
|
||||||
def invoke(name, *args, **kwargs):
|
|
||||||
func = globals().get(name)
|
|
||||||
if func:
|
|
||||||
return func(*args, **kwargs)
|
|
||||||
|
|
||||||
|
|
||||||
def get_value(config, module):
|
|
||||||
value_list = []
|
|
||||||
splitted_config = config.splitlines()
|
|
||||||
for line in splitted_config:
|
|
||||||
tmp = {}
|
|
||||||
if 'ip pim rp-address' in line:
|
|
||||||
splitted_line = line.split()
|
|
||||||
tmp['rp_address'] = splitted_line[3]
|
|
||||||
if len(splitted_line) > 5:
|
|
||||||
value = splitted_line[5]
|
|
||||||
if splitted_line[4] == 'route-map':
|
|
||||||
tmp['route_map'] = value
|
|
||||||
elif splitted_line[4] == 'prefix-list':
|
|
||||||
tmp['prefix_list'] = value
|
|
||||||
elif splitted_line[4] == 'group-list':
|
|
||||||
tmp['group_list'] = value
|
|
||||||
if 'bidir' in line:
|
|
||||||
tmp['bidir'] = True
|
|
||||||
else:
|
|
||||||
tmp['bidir'] = False
|
|
||||||
value_list.append(tmp)
|
|
||||||
return value_list
|
|
||||||
|
|
||||||
|
|
||||||
def get_existing(module, args):
|
def get_existing(module, args):
|
||||||
existing = {}
|
existing = {}
|
||||||
config = str(get_config(module))
|
config = str(get_config(module))
|
||||||
existing = get_value(config, module)
|
address = module.params['rp_address']
|
||||||
|
|
||||||
|
pim_address_re = r'ip pim rp-address (?P<value>.*)$'
|
||||||
|
for line in re.findall(pim_address_re, config, re.M):
|
||||||
|
|
||||||
|
values = line.split()
|
||||||
|
if values[0] != address:
|
||||||
|
continue
|
||||||
|
|
||||||
|
existing['bidir'] = existing.get('bidir') or 'bidir' in line
|
||||||
|
if len(values) > 2:
|
||||||
|
value = values[1]
|
||||||
|
if values[2] == 'route-map':
|
||||||
|
existing['route_map'] = value
|
||||||
|
elif values[2] == 'prefix-list':
|
||||||
|
existing['prefix_list'] = value
|
||||||
|
elif values[2] == 'group-list':
|
||||||
|
existing['group_list'] = value
|
||||||
|
|
||||||
return existing
|
return existing
|
||||||
|
|
||||||
|
|
||||||
def apply_key_map(key_map, table):
|
|
||||||
new_dict = {}
|
|
||||||
for key, value in table.items():
|
|
||||||
new_key = key_map.get(key)
|
|
||||||
if new_key:
|
|
||||||
value = table.get(key)
|
|
||||||
if value:
|
|
||||||
new_dict[new_key] = value
|
|
||||||
else:
|
|
||||||
new_dict[new_key] = value
|
|
||||||
return new_dict
|
|
||||||
|
|
||||||
|
|
||||||
def state_present(module, existing, proposed, candidate):
|
def state_present(module, existing, proposed, candidate):
|
||||||
command = 'ip pim rp-address {0}'.format(module.params['rp_address'])
|
address = module.params['rp_address']
|
||||||
|
command = 'ip pim rp-address {0}'.format(address)
|
||||||
commands = build_command(proposed, command)
|
commands = build_command(proposed, command)
|
||||||
if commands:
|
if commands:
|
||||||
candidate.add(commands, parents=[])
|
candidate.add(commands, parents=[])
|
||||||
|
@ -186,17 +132,16 @@ def build_command(param_dict, command):
|
||||||
return [command]
|
return [command]
|
||||||
|
|
||||||
|
|
||||||
def state_absent(module, existing, proposed, candidate):
|
def state_absent(module, existing, candidate):
|
||||||
commands = list()
|
address = module.params['rp_address']
|
||||||
for each in existing:
|
|
||||||
if each.get('rp_address') == proposed['rp_address']:
|
command = 'no ip pim rp-address {0}'.format(address)
|
||||||
command = 'no ip pim rp-address {0}'.format(proposed['rp_address'])
|
if existing.get('group_list'):
|
||||||
if each.get('group_list'):
|
commands = build_command(existing, command)
|
||||||
commands = build_command(each, command)
|
else:
|
||||||
else:
|
commands = [command]
|
||||||
commands = [command]
|
|
||||||
if commands:
|
candidate.add(commands, parents=[])
|
||||||
candidate.add(commands, parents=[])
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
@ -206,28 +151,23 @@ def main():
|
||||||
prefix_list=dict(required=False, type='str'),
|
prefix_list=dict(required=False, type='str'),
|
||||||
route_map=dict(required=False, type='str'),
|
route_map=dict(required=False, type='str'),
|
||||||
bidir=dict(required=False, type='bool'),
|
bidir=dict(required=False, type='bool'),
|
||||||
state=dict(choices=['present', 'absent'], default='present',
|
state=dict(choices=['present', 'absent'], default='present', required=False),
|
||||||
required=False),
|
|
||||||
include_defaults=dict(default=False),
|
|
||||||
config=dict(),
|
|
||||||
save=dict(type='bool', default=False)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
argument_spec.update(nxos_argument_spec)
|
argument_spec.update(nxos_argument_spec)
|
||||||
|
|
||||||
module = AnsibleModule(argument_spec=argument_spec,
|
module = AnsibleModule(argument_spec=argument_spec,
|
||||||
mutually_exclusive=[['group_list', 'route_map'],
|
mutually_exclusive=[['group_list', 'route_map'],
|
||||||
['group_list', 'prefix_list'],
|
['group_list', 'prefix_list'],
|
||||||
['route_map', 'prefix_list']],
|
['route_map', 'prefix_list']],
|
||||||
supports_check_mode=True)
|
supports_check_mode=True)
|
||||||
|
|
||||||
warnings = list()
|
warnings = list()
|
||||||
check_args(module, warnings)
|
check_args(module, warnings)
|
||||||
|
result = {'changed': False, 'commands': [], 'warnings': warnings}
|
||||||
|
|
||||||
state = module.params['state']
|
state = module.params['state']
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
'rp_address',
|
'rp_address',
|
||||||
'group_list',
|
'group_list',
|
||||||
'prefix_list',
|
'prefix_list',
|
||||||
|
@ -235,39 +175,35 @@ def main():
|
||||||
'bidir'
|
'bidir'
|
||||||
]
|
]
|
||||||
|
|
||||||
existing = invoke('get_existing', module, args)
|
existing = get_existing(module, args)
|
||||||
end_state = existing
|
|
||||||
proposed_args = dict((k, v) for k, v in module.params.items()
|
proposed_args = dict((k, v) for k, v in module.params.items()
|
||||||
if v is not None and k in args)
|
if v is not None and k in args)
|
||||||
|
|
||||||
proposed = {}
|
proposed = {}
|
||||||
for key, value in proposed_args.items():
|
for key, value in proposed_args.items():
|
||||||
if str(value).lower() == 'true':
|
if key != 'rp_address':
|
||||||
value = True
|
if str(value).lower() == 'true':
|
||||||
elif str(value).lower() == 'false':
|
value = True
|
||||||
value = False
|
elif str(value).lower() == 'false':
|
||||||
for each in existing:
|
value = False
|
||||||
if each.get(key) or (not each.get(key) and value):
|
|
||||||
|
if existing.get(key) != value:
|
||||||
proposed[key] = value
|
proposed[key] = value
|
||||||
|
|
||||||
result = {}
|
|
||||||
candidate = CustomNetworkConfig(indent=3)
|
candidate = CustomNetworkConfig(indent=3)
|
||||||
invoke('state_%s' % state, module, existing, proposed, candidate)
|
if state == 'present' and (proposed or not existing):
|
||||||
response = load_config(module, candidate)
|
state_present(module, existing, proposed, candidate)
|
||||||
result.update(response)
|
elif state == 'absent' and existing:
|
||||||
|
state_absent(module, existing, candidate)
|
||||||
|
|
||||||
if module._verbosity > 0:
|
if candidate:
|
||||||
end_state = invoke('get_existing', module, args)
|
candidate = candidate.items_text()
|
||||||
result['end_state'] = end_state
|
result['commands'] = candidate
|
||||||
result['existing'] = existing
|
result['changed'] = True
|
||||||
result['proposed'] = proposed_args
|
load_config(module, candidate)
|
||||||
|
|
||||||
if WARNINGS:
|
|
||||||
result['warnings'] = WARNINGS
|
|
||||||
|
|
||||||
module.exit_json(**result)
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
||||||
|
|
|
@ -372,7 +372,6 @@ lib/ansible/modules/network/nxos/nxos_ntp_options.py
|
||||||
lib/ansible/modules/network/nxos/nxos_nxapi.py
|
lib/ansible/modules/network/nxos/nxos_nxapi.py
|
||||||
lib/ansible/modules/network/nxos/nxos_overlay_global.py
|
lib/ansible/modules/network/nxos/nxos_overlay_global.py
|
||||||
lib/ansible/modules/network/nxos/nxos_pim_interface.py
|
lib/ansible/modules/network/nxos/nxos_pim_interface.py
|
||||||
lib/ansible/modules/network/nxos/nxos_pim_rp_address.py
|
|
||||||
lib/ansible/modules/network/nxos/nxos_ping.py
|
lib/ansible/modules/network/nxos/nxos_ping.py
|
||||||
lib/ansible/modules/network/nxos/nxos_smu.py
|
lib/ansible/modules/network/nxos/nxos_smu.py
|
||||||
lib/ansible/modules/network/nxos/nxos_snapshot.py
|
lib/ansible/modules/network/nxos/nxos_snapshot.py
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
ip pim rp-address 1.2.3.4
|
62
test/units/modules/network/nxos/test_nxos_pim_rp_address.py
Normal file
62
test/units/modules/network/nxos/test_nxos_pim_rp_address.py
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
# (c) 2016 Red Hat Inc.
|
||||||
|
#
|
||||||
|
# This file is part of Ansible
|
||||||
|
#
|
||||||
|
# Ansible is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Ansible is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
# Make coding more python3-ish
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
import json
|
||||||
|
|
||||||
|
from ansible.compat.tests.mock import patch
|
||||||
|
from ansible.modules.network.nxos import nxos_pim_rp_address
|
||||||
|
from .nxos_module import TestNxosModule, load_fixture, set_module_args
|
||||||
|
|
||||||
|
|
||||||
|
class TestNxosPimRpAddressModule(TestNxosModule):
|
||||||
|
|
||||||
|
module = nxos_pim_rp_address
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.mock_load_config = patch('ansible.modules.network.nxos.nxos_pim_rp_address.load_config')
|
||||||
|
self.load_config = self.mock_load_config.start()
|
||||||
|
|
||||||
|
self.mock_get_config = patch('ansible.modules.network.nxos.nxos_pim_rp_address.get_config')
|
||||||
|
self.get_config = self.mock_get_config.start()
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
self.mock_load_config.stop()
|
||||||
|
self.mock_get_config.stop()
|
||||||
|
|
||||||
|
def load_fixtures(self, commands=None, device=''):
|
||||||
|
self.get_config.return_value = load_fixture('nxos_pim_rp_address', 'config.cfg')
|
||||||
|
self.load_config.return_value = None
|
||||||
|
|
||||||
|
def test_nxos_pim_rp_address(self):
|
||||||
|
set_module_args(dict(rp_address='5.6.7.8'))
|
||||||
|
self.execute_module(changed=True, commands=['ip pim rp-address 5.6.7.8'])
|
||||||
|
|
||||||
|
def test_nxos_pim_rp_address_no_change(self):
|
||||||
|
set_module_args(dict(rp_address='1.2.3.4'))
|
||||||
|
self.execute_module(changed=False, commands=[])
|
||||||
|
|
||||||
|
def test_nxos_pim_rp_address_absent(self):
|
||||||
|
set_module_args(dict(rp_address='1.2.3.4', state='absent'))
|
||||||
|
self.execute_module(changed=True, commands=['no ip pim rp-address 1.2.3.4'])
|
||||||
|
|
||||||
|
def test_nxos_pim_rp_address_absent_no_change(self):
|
||||||
|
set_module_args(dict(rp_address='5.6.7.8', state='absent'))
|
||||||
|
self.execute_module(changed=False, commands=[])
|
Loading…
Reference in a new issue