mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
nxos_bgp fixes (#23927)
* Pre-emptively fix sanity/pep8 * fix for commands * Quick unit test
This commit is contained in:
parent
c0ebdf144d
commit
0d67a49d5a
3 changed files with 81 additions and 105 deletions
|
@ -297,79 +297,23 @@ EXAMPLES = '''
|
|||
vrf: test
|
||||
router_id: 1.1.1.1
|
||||
state: present
|
||||
username: "{{ un }}"
|
||||
password: "{{ pwd }}"
|
||||
host: "{{ inventory_hostname }}"
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
proposed:
|
||||
description: k/v pairs of parameters passed into module
|
||||
returned: verbose mode
|
||||
type: dict
|
||||
sample: {"asn": "65535", "router_id": "1.1.1.1", "vrf": "test"}
|
||||
existing:
|
||||
description: k/v pairs of existing BGP configuration
|
||||
returned: verbose mode
|
||||
type: dict
|
||||
sample: {"asn": "65535", "bestpath_always_compare_med": false,
|
||||
"bestpath_aspath_multipath_relax": false,
|
||||
"bestpath_compare_neighborid": false,
|
||||
"bestpath_compare_routerid": false,
|
||||
"bestpath_cost_community_ignore": false,
|
||||
"bestpath_med_confed": false,
|
||||
"bestpath_med_missing_as_worst": false,
|
||||
"bestpath_med_non_deterministic": false, "cluster_id": "",
|
||||
"confederation_id": "", "confederation_peers": "",
|
||||
"graceful_restart": true, "graceful_restart_helper": false,
|
||||
"graceful_restart_timers_restart": "120",
|
||||
"graceful_restart_timers_stalepath_time": "300", "local_as": "",
|
||||
"log_neighbor_changes": false, "maxas_limit": "",
|
||||
"neighbor_down_fib_accelerate": false, "reconnect_interval": "60",
|
||||
"router_id": "11.11.11.11", "suppress_fib_pending": false,
|
||||
"timer_bestpath_limit": "", "timer_bgp_hold": "180",
|
||||
"timer_bgp_keepalive": "60", "vrf": "test"}
|
||||
end_state:
|
||||
description: k/v pairs of BGP configuration after module execution
|
||||
returned: verbose mode
|
||||
type: dict
|
||||
sample: {"asn": "65535", "bestpath_always_compare_med": false,
|
||||
"bestpath_aspath_multipath_relax": false,
|
||||
"bestpath_compare_neighborid": false,
|
||||
"bestpath_compare_routerid": false,
|
||||
"bestpath_cost_community_ignore": false,
|
||||
"bestpath_med_confed": false,
|
||||
"bestpath_med_missing_as_worst": false,
|
||||
"bestpath_med_non_deterministic": false, "cluster_id": "",
|
||||
"confederation_id": "", "confederation_peers": "",
|
||||
"graceful_restart": true, "graceful_restart_helper": false,
|
||||
"graceful_restart_timers_restart": "120",
|
||||
"graceful_restart_timers_stalepath_time": "300", "local_as": "",
|
||||
"log_neighbor_changes": false, "maxas_limit": "",
|
||||
"neighbor_down_fib_accelerate": false, "reconnect_interval": "60",
|
||||
"router_id": "1.1.1.1", "suppress_fib_pending": false,
|
||||
"timer_bestpath_limit": "", "timer_bgp_hold": "180",
|
||||
"timer_bgp_keepalive": "60", "vrf": "test"}
|
||||
updates:
|
||||
commands:
|
||||
description: commands sent to the device
|
||||
returned: always
|
||||
type: list
|
||||
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
|
||||
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.basic import AnsibleModule
|
||||
from ansible.module_utils.netcfg import CustomNetworkConfig
|
||||
|
||||
|
||||
WARNINGS = []
|
||||
BOOL_PARAMS = [
|
||||
'bestpath_always_compare_med',
|
||||
'bestpath_aspath_multipath_relax',
|
||||
|
@ -547,12 +491,12 @@ def get_value(arg, config):
|
|||
return value
|
||||
|
||||
|
||||
def get_existing(module, args):
|
||||
def get_existing(module, args, warnings):
|
||||
existing = {}
|
||||
netcfg = CustomNetworkConfig(indent=2, contents=get_config(module))
|
||||
|
||||
try:
|
||||
asn_regex = '.*router\sbgp\s(?P<existing_asn>\d+).*'
|
||||
asn_regex = r'.*router\sbgp\s(?P<existing_asn>\d+).*'
|
||||
match_asn = re.match(asn_regex, str(netcfg), re.DOTALL)
|
||||
existing_asn_group = match_asn.groupdict()
|
||||
existing_asn = existing_asn_group['existing_asn']
|
||||
|
@ -583,12 +527,12 @@ def get_existing(module, args):
|
|||
if (module.params['state'] == 'present' and
|
||||
module.params['vrf'] != 'default'):
|
||||
msg = ("VRF {0} doesn't exist. ".format(module.params['vrf']))
|
||||
WARNINGS.append(msg)
|
||||
warnings.append(msg)
|
||||
else:
|
||||
if (module.params['state'] == 'present' and
|
||||
module.params['vrf'] != 'default'):
|
||||
msg = ("VRF {0} doesn't exist. ".format(module.params['vrf']))
|
||||
WARNINGS.append(msg)
|
||||
warnings.append(msg)
|
||||
|
||||
return existing
|
||||
|
||||
|
@ -659,8 +603,7 @@ def state_present(module, existing, proposed, candidate):
|
|||
if module.params['vrf'] != 'default':
|
||||
parents.append('vrf {0}'.format(module.params['vrf']))
|
||||
candidate.add(commands, parents=parents)
|
||||
else:
|
||||
if len(proposed.keys()) == 0:
|
||||
elif proposed:
|
||||
if module.params['vrf'] != 'default':
|
||||
commands.append('vrf {0}'.format(module.params['vrf']))
|
||||
parents = ['router bgp {0}'.format(module.params['asn'])]
|
||||
|
@ -752,8 +695,7 @@ def main():
|
|||
timer_bestpath_limit=dict(required=False, type='str'),
|
||||
timer_bgp_hold=dict(required=False, type='str'),
|
||||
timer_bgp_keepalive=dict(required=False, type='str'),
|
||||
state=dict(choices=['present', 'absent'], default='present',
|
||||
required=False),
|
||||
state=dict(choices=['present', 'absent'], default='present', required=False),
|
||||
include_defaults=dict(default=True),
|
||||
config=dict(),
|
||||
save=dict(type='bool', default=False)
|
||||
|
@ -762,14 +704,12 @@ def main():
|
|||
argument_spec.update(nxos_argument_spec)
|
||||
|
||||
module = AnsibleModule(argument_spec=argument_spec,
|
||||
required_together=[['timer_bgp_hold',
|
||||
'timer_bgp_keepalive']],
|
||||
required_together=[['timer_bgp_hold', 'timer_bgp_keepalive']],
|
||||
supports_check_mode=True)
|
||||
|
||||
warnings = list()
|
||||
check_args(module, warnings)
|
||||
|
||||
|
||||
state = module.params['state']
|
||||
args = [
|
||||
"asn",
|
||||
|
@ -821,7 +761,7 @@ def main():
|
|||
vrf=module.params['vrf'],
|
||||
global_param=param)
|
||||
|
||||
existing = invoke('get_existing', module, args)
|
||||
existing = get_existing(module, args, warnings)
|
||||
|
||||
if existing.get('asn'):
|
||||
if (existing.get('asn') != module.params['asn'] and
|
||||
|
@ -830,7 +770,6 @@ def main():
|
|||
proposed_asn=module.params['asn'],
|
||||
existing_asn=existing.get('asn'))
|
||||
|
||||
end_state = existing
|
||||
proposed_args = dict((k, v) for k, v in module.params.items()
|
||||
if v is not None and k in args)
|
||||
proposed = {}
|
||||
|
@ -843,33 +782,21 @@ def main():
|
|||
if existing.get(key) or (not existing.get(key) and value):
|
||||
proposed[key] = value
|
||||
|
||||
result = {}
|
||||
if (state == 'present' or (state == 'absent' and
|
||||
existing.get('asn') == module.params['asn'])):
|
||||
result = dict(changed=False, warnings=warnings)
|
||||
|
||||
if state == 'present' or existing.get('asn') == module.params['asn']:
|
||||
candidate = CustomNetworkConfig(indent=3)
|
||||
invoke('state_%s' % state, module, existing, proposed, candidate)
|
||||
|
||||
try:
|
||||
response = load_config(module, candidate)
|
||||
result.update(response)
|
||||
except ShellError:
|
||||
exc = get_exception()
|
||||
module.fail_json(msg=str(exc))
|
||||
if (candidate):
|
||||
load_config(module, candidate)
|
||||
result['changed'] = True
|
||||
result['commands'] = [item.text for item in candidate.items]
|
||||
else:
|
||||
result['updates'] = []
|
||||
|
||||
if module._verbosity > 0:
|
||||
end_state = invoke('get_existing', module, args)
|
||||
result['end_state'] = end_state
|
||||
result['existing'] = existing
|
||||
result['proposed'] = proposed_args
|
||||
|
||||
if WARNINGS:
|
||||
result['warnings'] = WARNINGS
|
||||
result['commands'] = []
|
||||
|
||||
module.exit_json(**result)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
|
|
|
@ -541,7 +541,6 @@ lib/ansible/modules/network/nxos/_nxos_mtu.py
|
|||
lib/ansible/modules/network/nxos/_nxos_template.py
|
||||
lib/ansible/modules/network/nxos/nxos_aaa_server.py
|
||||
lib/ansible/modules/network/nxos/nxos_aaa_server_host.py
|
||||
lib/ansible/modules/network/nxos/nxos_bgp.py
|
||||
lib/ansible/modules/network/nxos/nxos_bgp_af.py
|
||||
lib/ansible/modules/network/nxos/nxos_bgp_neighbor.py
|
||||
lib/ansible/modules/network/nxos/nxos_bgp_neighbor_af.py
|
||||
|
|
50
test/units/modules/network/nxos/test_nxos_bgp.py
Normal file
50
test/units/modules/network/nxos/test_nxos_bgp.py
Normal file
|
@ -0,0 +1,50 @@
|
|||
# (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_bgp
|
||||
from .nxos_module import TestNxosModule, load_fixture, set_module_args
|
||||
|
||||
|
||||
class TestNxosBgpModule(TestNxosModule):
|
||||
|
||||
module = nxos_bgp
|
||||
|
||||
def setUp(self):
|
||||
self.mock_load_config = patch('ansible.modules.network.nxos.nxos_bgp.load_config')
|
||||
self.load_config = self.mock_load_config.start()
|
||||
|
||||
self.mock_get_config = patch('ansible.modules.network.nxos.nxos_bgp.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):
|
||||
self.load_config.return_value = None
|
||||
|
||||
def test_nxos_bgp(self):
|
||||
set_module_args(dict(asn=65535, vrf='test', router_id='1.1.1.1'))
|
||||
result = self.execute_module(changed=True)
|
||||
self.assertEqual(result['commands'], ['router bgp 65535', 'vrf test', 'router-id 1.1.1.1'])
|
Loading…
Reference in a new issue