Clean up nxos_bgp_neighbor_af (#24890)

* Fix pep8 in bgp_neighbor_af
* Remove WARNINGS
* Rewrite command detection
* Add bgp_neighbor_af test
* Finally kill invoke
pull/24914/head^2
Nathaniel Case 7 years ago committed by GitHub
parent 1e4b227e6f
commit dd4a79d7d3

@ -16,9 +16,11 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
ANSIBLE_METADATA = {'metadata_version': '1.0',
ANSIBLE_METADATA = {
'metadata_version': '1.0',
'status': ['preview'],
'supported_by': 'community'}
'supported_by': 'community',
}
DOCUMENTATION = '''
@ -269,67 +271,25 @@ EXAMPLES = '''
safi: unicast
route_reflector_client: true
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: {"afi": "ipv4", "asn": "65535",
"neighbor": "3.3.3.3", "route_reflector_client": true,
"safi": "unicast", "vrf": "default"}
existing:
description: k/v pairs of existing configuration
returned: verbose mode
type: dict
sample: {}
end_state:
description: k/v pairs of configuration after module execution
returned: verbose mode
type: dict
sample: {"additional_paths_receive": "inherit",
"additional_paths_send": "inherit",
"advertise_map_exist": [], "advertise_map_non_exist": [],
"afi": "ipv4", "allowas_in": false,
"allowas_in_max": "", "as_override": false,
"asn": "65535", "default_originate": false,
"default_originate_route_map": "", "filter_list_in": "",
"filter_list_out": "", "max_prefix_interval": "",
"max_prefix_limit": "", "max_prefix_threshold": "",
"max_prefix_warning": "", "neighbor": "3.3.3.3",
"next_hop_self": false, "next_hop_third_party": true,
"prefix_list_in": "", "prefix_list_out": "",
"route_map_in": "", "route_map_out": "",
"route_reflector_client": true, "safi": "unicast",
"send_community": "",
"soft_reconfiguration_in": "inherit", "soo": "",
"suppress_inactive": false, "unsuppress_map": "",
"vrf": "default", "weight": ""}
updates:
commands:
description: commands sent to the device
returned: always
type: list
sample: ["router bgp 65535", "neighbor 3.3.3.3",
"address-family ipv4 unicast", "route-reflector-client"]
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 = [
'allowas_in',
'as_override',
@ -345,25 +305,25 @@ PARAM_TO_COMMAND_KEYMAP = {
'neighbor': 'neighbor',
'additional_paths_receive': 'capability additional-paths receive',
'additional_paths_send': 'capability additional-paths send',
'advertise_map_exist': 'advertise-map exist',
'advertise_map_non_exist': 'advertise-map non-exist',
'advertise_map_exist': 'advertise-map',
'advertise_map_non_exist': 'advertise-map',
'allowas_in': 'allowas-in',
'allowas_in_max': 'allowas-in max',
'allowas_in_max': 'allowas-in',
'as_override': 'as-override',
'default_originate': 'default-originate',
'default_originate_route_map': 'default-originate route-map',
'filter_list_in': 'filter-list in',
'filter_list_out': 'filter-list out',
'filter_list_in': 'filter-list',
'filter_list_out': 'filter-list',
'max_prefix_limit': 'maximum-prefix',
'max_prefix_interval': 'maximum-prefix options',
'max_prefix_threshold': 'maximum-prefix options',
'max_prefix_warning': 'maximum-prefix options',
'next_hop_self': 'next-hop-self',
'next_hop_third_party': 'next-hop-third-party',
'prefix_list_in': 'prefix-list in',
'prefix_list_out': 'prefix-list out',
'route_map_in': 'route-map in',
'route_map_out': 'route-map out',
'prefix_list_in': 'prefix-list',
'prefix_list_out': 'prefix-list',
'route_map_in': 'route-map',
'route_map_out': 'route-map',
'route_reflector_client': 'route-reflector-client',
'safi': 'address-family',
'send_community': 'send-community',
@ -374,69 +334,71 @@ PARAM_TO_COMMAND_KEYMAP = {
'weight': 'weight',
'vrf': 'vrf'
}
PARAM_TO_DEFAULT_KEYMAP = {}
def invoke(name, *args, **kwargs):
func = globals().get(name)
if func:
return func(*args, **kwargs)
def get_value(arg, config, module):
custom = [
'allowas_in_max',
'additional_paths_send',
'additional_paths_receive',
'advertise_map_exist',
'advertise_map_non_exist',
'max_prefix_limit',
'max_prefix_interval',
'max_prefix_threshold',
'max_prefix_warning',
'next_hop_third_party',
'soft_reconfiguration_in'
]
command = PARAM_TO_COMMAND_KEYMAP[arg]
has_command = re.search(r'\s+{0}\s*'.format(command), config, re.M)
has_command_val = command_val_re.search(r'(?:{0}\s)(?P<value>.*)$'.format(command), config, re.M)
if arg in custom:
value = get_custom_value(arg, config, module)
def get_value(arg, config, module):
if arg in BOOL_PARAMS:
REGEX = re.compile(r'\s+{0}\s*'.format(PARAM_TO_COMMAND_KEYMAP[arg]), re.M)
elif arg in BOOL_PARAMS:
value = False
try:
if REGEX.search(config):
if has_command:
value = True
except TypeError:
value = False
else:
REGEX = re.compile(r'(?:{0}\s)(?P<value>.*)$'.format(PARAM_TO_COMMAND_KEYMAP[arg]), re.M)
elif command.split()[0] in ['filter-list', 'prefix-list', 'route-map']:
value = ''
if PARAM_TO_COMMAND_KEYMAP[arg] in config:
value = REGEX.search(config).group('value')
return value
direction = arg.rsplit('_', 1)[1]
if has_command_val:
params = has_command_val.group('value').split()
if params[-1] == direction:
value = params[0]
elif arg == 'send_community':
if has_command:
value = 'none'
if has_command_val:
value = has_command_val.group('value')
def in_out_param(arg, config, module):
else:
value = ''
for line in config:
if PARAM_TO_COMMAND_KEYMAP[arg].split()[0] in line:
splitted_line = line.split()
if splitted_line[-1] == PARAM_TO_COMMAND_KEYMAP[arg].split()[1]:
value = splitted_line[1]
if has_command_val:
value = has_command_val.group('value')
return value
def get_custom_value(arg, config, module):
command = PARAM_TO_COMMAND_KEYMAP.get(arg)
splitted_config = config.splitlines()
value = ''
if (arg.startswith('filter_list') or arg.startswith('prefix_list') or
arg.startswith('route_map')):
value = in_out_param(arg, splitted_config, module)
elif arg == 'send_community':
for line in splitted_config:
if PARAM_TO_COMMAND_KEYMAP[arg] in line:
splitted_line = line.split()
if len(splitted_line) == 1:
value = 'none'
else:
value = splitted_line[1]
elif arg == 'additional_paths_receive':
value = 'inherit'
for line in splitted_config:
if PARAM_TO_COMMAND_KEYMAP[arg] in line:
if 'disable' in line:
value = 'disable'
else:
value = 'enable'
elif arg == 'additional_paths_send':
command_re = re.compile(r'\s+{0}\s*'.format(command), re.M)
has_command = command_re.search(config)
command_val_re = re.compile(r'(?:{0}\s)(?P<value>.*)$'.format(command), re.M)
has_command_val = command_val_re.search(config)
if arg.startswith('additional_paths'):
value = 'inherit'
for line in splitted_config:
if PARAM_TO_COMMAND_KEYMAP[arg] in line:
if command in line:
if 'disable' in line:
value = 'disable'
else:
@ -447,17 +409,20 @@ def get_custom_value(arg, config, module):
if 'advertise-map' in line and 'exist-map' in line:
splitted_line = line.split()
value = [splitted_line[1], splitted_line[3]]
elif arg == 'advertise_map_non_exist':
elif command == 'advertise-map':
value = []
exclude = 'non_exist' in arg
for line in splitted_config:
if 'advertise-map' in line and 'non-exist-map' in line:
if 'advertise-map' in line and (
(exclude and 'non-exist-map' in line) or
(not exclude and 'exist-map' in line)
):
splitted_line = line.split()
value = [splitted_line[1], splitted_line[3]]
elif arg == 'allowas_in_max':
for line in splitted_config:
if 'allowas-in' in line:
splitted_line = line.split()
if len(splitted_line) == 2:
if has_command_val:
split_line = has_command_val.group('value').split()
if len(split_line) == 2:
value = splitted_line[-1]
elif arg.startswith('max_prefix'):
for line in splitted_config:
@ -474,81 +439,45 @@ def get_custom_value(arg, config, module):
except ValueError:
value = ''
elif arg == 'max_prefix_warning':
if 'warning-only' in line:
value = True
else:
value = False
value = 'warning-only' in line
elif arg == 'soft_reconfiguration_in':
value = 'inherit'
for line in splitted_config:
if PARAM_TO_COMMAND_KEYMAP[arg] in line:
if command in line:
if 'always' in line:
value = 'always'
else:
value = 'enable'
elif arg == 'next_hop_third_party':
PRESENT_REGEX = re.compile(r'\s+{0}\s*'.format(PARAM_TO_COMMAND_KEYMAP[arg]), re.M)
ABSENT_REGEX = re.compile(r'\s+no\s+{0}\s*'.format(PARAM_TO_COMMAND_KEYMAP[arg]), re.M)
no_command_re = re.compile(r'\s+no\s+{0}\s*'.format(command), re.M)
value = False
try:
if ABSENT_REGEX.search(config):
value = False
elif PRESENT_REGEX.search(config):
if not no_command_re.search(config) and command_re.search(config):
value = True
except TypeError:
value = False
return value
def get_existing(module, args):
def get_existing(module, args, warnings):
existing = {}
netcfg = CustomNetworkConfig(indent=2, contents=get_config(module))
custom = [
'allowas_in_max',
'send_community',
'additional_paths_send',
'additional_paths_receive',
'advertise_map_exist',
'advertise_map_non_exist',
'filter_list_in',
'filter_list_out',
'max_prefix_limit',
'max_prefix_interval',
'max_prefix_threshold',
'max_prefix_warning',
'next_hop_third_party',
'prefix_list_in',
'prefix_list_out',
'route_map_in',
'route_map_out',
'soft_reconfiguration_in'
]
try:
asn_regex = '.*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']
except AttributeError:
existing_asn = ''
if existing_asn:
asn_regex = re.compile(r'.*router\sbgp\s(?P<existing_asn>\d+).*', re.S)
match_asn = asn_regex.match(str(netcfg))
if match_asn:
existing_asn = match_asn.group('existing_asn')
parents = ["router bgp {0}".format(existing_asn)]
if module.params['vrf'] != 'default':
parents.append('vrf {0}'.format(module.params['vrf']))
parents.append('neighbor {0}'.format(module.params['neighbor']))
parents.append('address-family {0} {1}'.format(
module.params['afi'], module.params['safi']))
parents.append('address-family {0} {1}'.format(module.params['afi'], module.params['safi']))
config = netcfg.get_section(parents)
if config:
for arg in args:
if arg not in ['asn', 'vrf', 'neighbor', 'afi', 'safi']:
if arg in custom:
existing[arg] = get_custom_value(arg, config, module)
else:
existing[arg] = get_value(arg, config, module)
existing['asn'] = existing_asn
@ -557,118 +486,19 @@ def get_existing(module, args):
existing['afi'] = module.params['afi']
existing['safi'] = module.params['safi']
else:
WARNINGS.append("The BGP process didn't exist but the task"
" just created it.")
warnings.append("The BGP process didn't exist but the task just created it.")
return existing
def apply_key_map(key_map, table):
new_dict = {}
for key, value in table.items():
for key in table:
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 get_address_family_command(key, value, module):
command = "address-family {0} {1}".format(
module.params['afi'], module.params['safi'])
return command
def get_capability_additional_paths_receive_command(key, value, module):
command = ''
if value == 'enable':
command = key
elif value == 'disable':
command = '{0} {1}'.format(key, value)
return command
def get_capability_additional_paths_send_command(key, value, module):
command = ''
if value == 'enable':
command = key
elif value == 'disable':
command = '{0} {1}'.format(key, value)
return command
def get_advertise_map_exist_command(key, value, module):
command = 'advertise-map {0} exist-map {1}'.format(
value[0], value[1])
return command
def get_advertise_map_non_exist_command(key, value, module):
command = 'advertise-map {0} non-exist-map {1}'.format(
value[0], value[1])
return command
def get_allowas_in_max_command(key, value, module):
command = 'allowas-in {0}'.format(value)
return command
def get_filter_list_in_command(key, value, module):
command = 'filter-list {0} in'.format(value)
return command
def get_filter_list_out_command(key, value, module):
command = 'filter-list {0} out'.format(value)
return command
def get_prefix_list_in_command(key, value, module):
command = 'prefix-list {0} in'.format(value)
return command
def get_prefix_list_out_command(key, value, module):
command = 'prefix-list {0} out'.format(value)
return command
def get_route_map_in_command(key, value, module):
command = 'route-map {0} in'.format(value)
return command
def get_route_map_out_command(key, value, module):
command = 'route-map {0} out'.format(value)
return command
def get_maximum_prefix_command(key, value, module):
return get_maximum_prefix_options_command(key, value, module)
def get_maximum_prefix_options_command(key, value, module):
command = 'maximum-prefix {0}'.format(module.params['max_prefix_limit'])
if module.params['max_prefix_threshold']:
command += ' {0}'.format(module.params['max_prefix_threshold'])
if module.params['max_prefix_interval']:
command += ' restart {0}'.format(module.params['max_prefix_interval'])
elif module.params['max_prefix_warning']:
command += ' warning-only'
return command
new_dict[new_key] = table.get(key)
def get_soft_reconfiguration_inbound_command(key, value, module):
command = ''
if value == 'enable':
command = key
elif value == 'always':
command = '{0} {1}'.format(key, value)
return command
return new_dict
def get_default_command(key, value, existing_commands):
@ -723,44 +553,36 @@ def fix_proposed(module, proposed):
elif allowas_in and allowas_in_max:
proposed.pop('allowas_in')
for key, value in proposed.items():
if key in ['filter_list_in', 'prefix_list_in', 'route_map_in']:
proposed[key] = [value, 'in']
elif key in ['filter_list_out', 'prefix_list_out', 'route_map_out']:
proposed[key] = [value, 'out']
return proposed
def state_present(module, existing, proposed, candidate):
commands = list()
proposed = fix_proposed(module, proposed)
proposed_commands = apply_key_map(PARAM_TO_COMMAND_KEYMAP, proposed)
existing_commands = apply_key_map(PARAM_TO_COMMAND_KEYMAP, existing)
custom = [
'address-family',
'capability additional-paths receive',
'capability additional-paths send',
'advertise-map exist',
'advertise-map non-exist',
'allowas-in max',
'filter-list in',
'filter-list out',
'maximum-prefix',
'maximum-prefix options',
'prefix-list in',
'prefix-list out',
'route-map in',
'route-map out',
'soft-reconfiguration inbound'
]
for key, value in proposed_commands.items():
if key == 'send-community' and value == 'none':
commands.append('{0}'.format(key))
if key.startswith('maximum-prefix'):
command = 'maximum-prefix {0}'.format(module.params['max_prefix_limit'])
if module.params['max_prefix_threshold']:
command += ' {0}'.format(module.params['max_prefix_threshold'])
if module.params['max_prefix_interval']:
command += ' restart {0}'.format(module.params['max_prefix_interval'])
elif module.params['max_prefix_warning']:
command += ' warning-only'
commands.append(command)
elif value is True and key != 'maximum-prefix options':
elif value is True:
commands.append(key)
elif value is False and key != 'maximum-prefix options':
elif value is False:
commands.append('no {0}'.format(key))
elif value == 'default' or value == 'inherit':
command = get_default_command(key, value, existing_commands)
@ -772,17 +594,38 @@ def state_present(module, existing, proposed, candidate):
if cmd not in commands:
commands.append(cmd)
elif key in custom:
fixed_key = key.replace(' ', '_').replace('-', '_')
command = invoke('get_%s_command' % fixed_key, key, value, module)
if command and command not in commands:
elif key == 'address-family':
commands.append("address-family {0} {1}".format(module.params['afi'], module.params['safi']))
elif key.startswith('capability additional-paths'):
command = key
if value == 'disable':
command += ' disable'
commands.append(command)
elif key.startswith('advertise-map'):
direction = key.split()[0]
commands.append('advertise-map {1} {0} {2}'.format(direction, *value))
elif key in ['filter-list', 'prefix-list', 'route-map']:
commands.append('{0} {1} {2}'.format(key, *value))
elif key == 'soft-reconfiguration inbound':
command = ''
if value == 'enable':
command = key
elif value == 'always':
command = '{0} {1}'.format(key, value)
commands.append(command)
elif key == 'send-community':
command = key
if value != 'none':
command += ' {0}'.format(value)
commands.append(command)
else:
command = '{0} {1}'.format(key, value)
commands.append(command)
commands = set(commands)
if commands:
parents = ["router bgp {0}".format(module.params['asn'])]
parents = ['router bgp {0}'.format(module.params['asn'])]
if module.params['vrf'] != 'default':
parents.append('vrf {0}'.format(module.params['vrf']))
@ -800,7 +643,7 @@ def state_present(module, existing, proposed, candidate):
candidate.add(commands, parents=parents)
def state_absent(module, existing, proposed, candidate):
def state_absent(module, existing, candidate):
commands = []
parents = ["router bgp {0}".format(module.params['asn'])]
if module.params['vrf'] != 'default':
@ -819,10 +662,8 @@ def main():
neighbor=dict(required=True, type='str'),
afi=dict(required=True, type='str'),
safi=dict(required=True, type='str'),
additional_paths_receive=dict(required=False, type='str',
choices=['enable', 'disable', 'inherit']),
additional_paths_send=dict(required=False, type='str',
choices=['enable', 'disable', 'inherit']),
additional_paths_receive=dict(required=False, type='str', choices=['enable', 'disable', 'inherit']),
additional_paths_send=dict(required=False, type='str', choices=['enable', 'disable', 'inherit']),
advertise_map_exist=dict(required=False, type='list'),
advertise_map_non_exist=dict(required=False, type='list'),
allowas_in=dict(required=False, type='bool'),
@ -843,98 +684,48 @@ def main():
route_map_in=dict(required=False, type='str'),
route_map_out=dict(required=False, type='str'),
route_reflector_client=dict(required=False, type='bool'),
send_community=dict(required=False, choices=['none',
'both',
'extended',
'standard',
'default']),
soft_reconfiguration_in=dict(required=False, type='str',
choices=['enable', 'always', 'inherit']),
send_community=dict(required=False, choices=['none', 'both', 'extended', 'standard', 'default']),
soft_reconfiguration_in=dict(required=False, type='str', choices=['enable', 'always', 'inherit']),
soo=dict(required=False, type='str'),
suppress_inactive=dict(required=False, type='bool'),
unsuppress_map=dict(required=False, type='str'),
weight=dict(required=False, type='str'),
state=dict(choices=['present', 'absent'], default='present',
required=False),
include_defaults=dict(default=True),
config=dict(),
save=dict(type='bool', default=False)
state=dict(choices=['present', 'absent'], default='present', required=False),
)
argument_spec.update(nxos_argument_spec)
module = AnsibleModule(argument_spec=argument_spec,
mutually_exclusive=[['advertise_map_exist',
'advertise_map_non_exist']],
supports_check_mode=True)
module = AnsibleModule(
argument_spec=argument_spec,
mutually_exclusive=[['advertise_map_exist', 'advertise_map_non_exist']],
required_together=[['max_prefix_limit', 'max_prefix_interval'],
['max_prefix_limit', 'max_prefix_warning'],
['max_prefix_limit', 'max_prefix_threshold']],
supports_check_mode=True,
)
warnings = list()
check_args(module, warnings)
result = dict(changed=False, warnings=warnings)
state = module.params['state']
if ((module.params['max_prefix_interval'] or
module.params['max_prefix_warning'] or
module.params['max_prefix_threshold']) and
not module.params['max_prefix_limit']):
module.fail_json(msg='max_prefix_limit is required when using '
'max_prefix_warning, max_prefix_limit or '
'max_prefix_threshold.')
if module.params['vrf'] == 'default' and module.params['soo']:
module.fail_json(msg='SOO is only allowed in non-default VRF')
args = [
'afi',
'asn',
'neighbor',
'additional_paths_receive',
'additional_paths_send',
'advertise_map_exist',
'advertise_map_non_exist',
'allowas_in',
'allowas_in_max',
'as_override',
'default_originate',
'default_originate_route_map',
'filter_list_in',
'filter_list_out',
'max_prefix_limit',
'max_prefix_interval',
'max_prefix_threshold',
'max_prefix_warning',
'next_hop_self',
'next_hop_third_party',
'prefix_list_in',
'prefix_list_out',
'route_map_in',
'route_map_out',
'soft_reconfiguration_in',
'soo',
'suppress_inactive',
'unsuppress_map',
'weight',
'route_reflector_client',
'safi',
'send_community',
'vrf'
]
args = PARAM_TO_COMMAND_KEYMAP.keys()
existing = get_existing(module, args, warnings)
existing = invoke('get_existing', module, args)
if existing.get('asn'):
if (existing.get('asn') != module.params['asn'] and
state == 'present'):
if existing.get('asn') and state == 'present':
if existing.get('asn') != module.params['asn']:
module.fail_json(msg='Another BGP ASN already exists.',
proposed_asn=module.params['asn'],
existing_asn=existing.get('asn'))
if module.params['advertise_map_exist'] == ['default']:
module.params['advertise_map_exist'] = 'default'
if module.params['advertise_map_non_exist'] == ['default']:
module.params['advertise_map_non_exist'] = 'default'
for param in ['advertise_map_exist', 'advertise_map_non_exist']:
if module.params[param] == ['default']:
module.params[param] = 'default'
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_args = dict((k, v) for k, v in module.params.items() if v is not None and k in args)
proposed = {}
for key, value in proposed_args.items():
@ -945,37 +736,29 @@ def main():
elif str(value).lower() == 'false':
value = False
elif str(value).lower() == 'default':
value = PARAM_TO_DEFAULT_KEYMAP.get(key)
if value is None:
if key in BOOL_PARAMS:
value = False
else:
value = 'default'
if existing.get(key) or (not existing.get(key) and value):
if existing.get(key) != value:
proposed[key] = value
result = {}
if state == 'present' or (state == 'absent' and existing):
candidate = CustomNetworkConfig(indent=3)
invoke('state_%s' % state, module, existing, proposed, candidate)
response = load_config(module, candidate)
result.update(response)
if state == 'present':
state_present(module, existing, proposed, candidate)
elif state == 'absent' and existing:
state_absent(module, existing, proposed, candidate)
if candidate:
candidate = candidate.items_text()
load_config(module, candidate)
result['changed'] = True
result['commands'] = candidate
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()

@ -466,7 +466,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_neighbor_af.py
lib/ansible/modules/network/nxos/nxos_command.py
lib/ansible/modules/network/nxos/nxos_config.py
lib/ansible/modules/network/nxos/nxos_facts.py

@ -0,0 +1,55 @@
# (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_neighbor_af
from .nxos_module import TestNxosModule, load_fixture, set_module_args
class TestNxosBgpNeighborAfModule(TestNxosModule):
module = nxos_bgp_neighbor_af
def setUp(self):
self.mock_load_config = patch('ansible.modules.network.nxos.nxos_bgp_neighbor_af.load_config')
self.load_config = self.mock_load_config.start()
self.mock_get_config = patch('ansible.modules.network.nxos.nxos_bgp_neighbor_af.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.get_config.return_value = load_fixture('nxos_bgp_config.cfg')
self.load_config.return_value = None
def test_nxos_bgp_neighbor_af(self):
set_module_args(dict(asn=65535, neighbor='3.3.3.3', afi='ipv4',
safi='unicast', route_reflector_client=True))
result = self.execute_module(changed=True)
self.assertEqual(result['commands'], [
'router bgp 65535', 'neighbor 3.3.3.3', 'address-family ipv4 unicast',
'route-reflector-client'
])
Loading…
Cancel
Save