mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix nxos_pim_interface dr-priority handling (#28472)
* Fix nxos_pim_interface dr-priority handling * Prefer execute_show over `| json` * Mock get_config * Fix sparse-mode detection
This commit is contained in:
parent
e3b66a8016
commit
64dac346c9
4 changed files with 35 additions and 22 deletions
|
@ -204,7 +204,6 @@ def local_existing(gexisting):
|
||||||
if jp_bidir and isauth:
|
if jp_bidir and isauth:
|
||||||
gexisting.pop('jp_bidir')
|
gexisting.pop('jp_bidir')
|
||||||
gexisting.pop('isauth')
|
gexisting.pop('isauth')
|
||||||
gexisting['sparse'] = True
|
|
||||||
|
|
||||||
return gexisting, jp_bidir, isauth
|
return gexisting, jp_bidir, isauth
|
||||||
|
|
||||||
|
@ -227,9 +226,9 @@ def get_interface_type(interface):
|
||||||
|
|
||||||
|
|
||||||
def get_interface_mode(interface, intf_type, module):
|
def get_interface_mode(interface, intf_type, module):
|
||||||
command = 'show interface {0} | json'.format(interface)
|
|
||||||
mode = 'unknown'
|
mode = 'unknown'
|
||||||
body = run_commands(module, [command])
|
command = 'show interface {0}'.format(interface)
|
||||||
|
body = execute_show_command(command, module)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
interface_table = body[0]['TABLE_interface']['ROW_interface']
|
interface_table = body[0]['TABLE_interface']['ROW_interface']
|
||||||
|
@ -250,7 +249,6 @@ def get_interface_mode(interface, intf_type, module):
|
||||||
def get_pim_interface(module, interface):
|
def get_pim_interface(module, interface):
|
||||||
pim_interface = {}
|
pim_interface = {}
|
||||||
command = 'show ip pim interface {0}'.format(interface)
|
command = 'show ip pim interface {0}'.format(interface)
|
||||||
|
|
||||||
body = execute_show_command(command, module, text=True)
|
body = execute_show_command(command, module, text=True)
|
||||||
|
|
||||||
if body:
|
if body:
|
||||||
|
@ -258,19 +256,19 @@ def get_pim_interface(module, interface):
|
||||||
body = execute_show_command(command, module)
|
body = execute_show_command(command, module)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
get_data = body[0]['TABLE_iod']['ROW_iod']
|
get_data = body[0]['TABLE_vrf']['ROW_vrf']['TABLE_iod']['ROW_iod']
|
||||||
|
|
||||||
if isinstance(get_data.get('dr-priority'), string_types):
|
if isinstance(get_data.get('dr-priority'), list):
|
||||||
pim_interface['dr_prio'] = get_data.get('dr-priority')
|
|
||||||
else:
|
|
||||||
pim_interface['dr_prio'] = get_data.get('dr-priority')[0]
|
pim_interface['dr_prio'] = get_data.get('dr-priority')[0]
|
||||||
|
else:
|
||||||
|
pim_interface['dr_prio'] = str(get_data.get('dr-priority'))
|
||||||
|
|
||||||
hello_interval = get_data.get('hello-interval-sec')
|
hello_interval = get_data.get('hello-interval-sec')
|
||||||
if hello_interval:
|
if hello_interval:
|
||||||
hello_interval_msec = int(get_data.get('hello-interval-sec')) * 1000
|
hello_interval_msec = int(get_data.get('hello-interval-sec')) * 1000
|
||||||
pim_interface['hello_interval'] = str(hello_interval_msec)
|
pim_interface['hello_interval'] = str(hello_interval_msec)
|
||||||
border = get_data.get('is-border')
|
|
||||||
|
|
||||||
|
border = get_data.get('is-border')
|
||||||
if border == 'true':
|
if border == 'true':
|
||||||
pim_interface['border'] = True
|
pim_interface['border'] = True
|
||||||
elif border == 'false':
|
elif border == 'false':
|
||||||
|
@ -294,8 +292,7 @@ def get_pim_interface(module, interface):
|
||||||
if isinstance(get_data.get('jp-out-policy-name'), string_types):
|
if isinstance(get_data.get('jp-out-policy-name'), string_types):
|
||||||
pim_interface['jp_policy_out'] = get_data.get('jp-out-policy-name')
|
pim_interface['jp_policy_out'] = get_data.get('jp-out-policy-name')
|
||||||
else:
|
else:
|
||||||
pim_interface['jp_policy_out'] = get_data.get(
|
pim_interface['jp_policy_out'] = get_data.get('jp-out-policy-name')[0]
|
||||||
'jp-out-policy-name')[0]
|
|
||||||
|
|
||||||
if pim_interface['jp_policy_out'] == 'none configured':
|
if pim_interface['jp_policy_out'] == 'none configured':
|
||||||
pim_interface['jp_policy_out'] = None
|
pim_interface['jp_policy_out'] = None
|
||||||
|
@ -308,13 +305,15 @@ def get_pim_interface(module, interface):
|
||||||
jp_configs = []
|
jp_configs = []
|
||||||
neigh = None
|
neigh = None
|
||||||
if body:
|
if body:
|
||||||
all_lines = body[0].splitlines()
|
all_lines = body.splitlines()
|
||||||
|
|
||||||
for each in all_lines:
|
for each in all_lines:
|
||||||
if 'jp-policy' in each:
|
if 'jp-policy' in each:
|
||||||
jp_configs.append(str(each.strip()))
|
jp_configs.append(str(each.strip()))
|
||||||
elif 'neighbor-policy' in each:
|
elif 'neighbor-policy' in each:
|
||||||
neigh = str(each)
|
neigh = str(each)
|
||||||
|
elif 'sparse-mode' in each:
|
||||||
|
pim_interface['sparse'] = True
|
||||||
|
|
||||||
pim_interface['neighbor_type'] = None
|
pim_interface['neighbor_type'] = None
|
||||||
neigh_type = None
|
neigh_type = None
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
!Command: show running-config interface Ethernet2/1
|
||||||
|
!Time: Mon Aug 21 17:22:02 2017
|
||||||
|
|
||||||
|
version 7.3(0)D1(1)
|
||||||
|
|
||||||
|
interface Ethernet2/1
|
||||||
|
description Configured by Ansible - Layer3
|
||||||
|
no switchport
|
||||||
|
mac-address fa16.3e00.0006
|
||||||
|
ip address 10.0.0.69/30
|
||||||
|
no shutdown
|
|
@ -8,19 +8,17 @@
|
||||||
"if-status": "protocol-up/link-up/admin-up",
|
"if-status": "protocol-up/link-up/admin-up",
|
||||||
"if-addr-summary": "IP address: 10.0.0.45, IP subnet: 10.0.0.44/30",
|
"if-addr-summary": "IP address: 10.0.0.45, IP subnet: 10.0.0.44/30",
|
||||||
"pim-dr-address": "10.0.0.45",
|
"pim-dr-address": "10.0.0.45",
|
||||||
"dr-priority": 1,
|
"dr-priority": 2,
|
||||||
"nbr-cnt": 0,
|
"nbr-cnt": 0,
|
||||||
"hello-interval-sec": 30,
|
"hello-interval-sec": 35,
|
||||||
"hello-timer": "PT3S",
|
"hello-timer": "PT3S",
|
||||||
"holdtime-sec": 105,
|
"holdtime-sec": 105,
|
||||||
"if-conf-dr-priority": 1,
|
"if-conf-dr-priority": 1,
|
||||||
"if-conf-delay": 3,
|
"if-conf-delay": 3,
|
||||||
"is-border": "false",
|
"is-border": "true",
|
||||||
"genid": "38c4b959",
|
"genid": "38c4b959",
|
||||||
"isauth-config": "false",
|
"isauth-config": "false",
|
||||||
"nbr-policy-name": "none configured",
|
"nbr-policy-name": "none configured",
|
||||||
"jp-in-policy-name": "JPIN",
|
|
||||||
"jp-out-policy-name": "JPOUT",
|
|
||||||
"jp-interval": 1,
|
"jp-interval": 1,
|
||||||
"jp-next-send": 1,
|
"jp-next-send": 1,
|
||||||
"pim-bfd-enabled": "no",
|
"pim-bfd-enabled": "no",
|
||||||
|
|
|
@ -29,6 +29,9 @@ class TestNxosIPInterfaceModule(TestNxosModule):
|
||||||
module = nxos_pim_interface
|
module = nxos_pim_interface
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
self.mock_get_config = patch('ansible.modules.network.nxos.nxos_pim_interface.get_config')
|
||||||
|
self.get_config = self.mock_get_config.start()
|
||||||
|
|
||||||
self.mock_load_config = patch('ansible.modules.network.nxos.nxos_pim_interface.load_config')
|
self.mock_load_config = patch('ansible.modules.network.nxos.nxos_pim_interface.load_config')
|
||||||
self.load_config = self.mock_load_config.start()
|
self.load_config = self.mock_load_config.start()
|
||||||
|
|
||||||
|
@ -36,6 +39,7 @@ class TestNxosIPInterfaceModule(TestNxosModule):
|
||||||
self.run_commands = self.mock_run_commands.start()
|
self.run_commands = self.mock_run_commands.start()
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
|
self.mock_get_config.stop()
|
||||||
self.mock_load_config.stop()
|
self.mock_load_config.stop()
|
||||||
self.mock_run_commands.stop()
|
self.mock_run_commands.stop()
|
||||||
|
|
||||||
|
@ -53,15 +57,17 @@ class TestNxosIPInterfaceModule(TestNxosModule):
|
||||||
output.append(load_fixture(module_name, filename))
|
output.append(load_fixture(module_name, filename))
|
||||||
return output
|
return output
|
||||||
|
|
||||||
|
self.get_config.return_value = load_fixture(module_name, 'config.cfg')
|
||||||
self.load_config.return_value = None
|
self.load_config.return_value = None
|
||||||
self.run_commands.side_effect = load_from_file
|
self.run_commands.side_effect = load_from_file
|
||||||
|
|
||||||
def test_nxos_pim_interface_present(self):
|
def test_nxos_pim_interface_present(self):
|
||||||
set_module_args(dict(interface='eth2/1', dr_prio=10, hello_interval=40))
|
set_module_args(dict(interface='eth2/1', dr_prio=10, hello_interval=40, sparse=True, border=True))
|
||||||
self.execute_module(
|
self.execute_module(
|
||||||
changed=True,
|
changed=True,
|
||||||
commands=['interface eth2/1', 'ip pim dr-priority 10',
|
commands=[
|
||||||
'ip pim hello-interval 40000', 'ip pim sparse-mode']
|
'interface eth2/1', 'ip pim dr-priority 10', 'ip pim hello-interval 40000',
|
||||||
|
'ip pim sparse-mode', 'ip pim border']
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_nxos_pim_interface_jp(self):
|
def test_nxos_pim_interface_jp(self):
|
||||||
|
@ -79,8 +85,7 @@ class TestNxosIPInterfaceModule(TestNxosModule):
|
||||||
set_module_args(dict(interface='eth2/1', state='default'))
|
set_module_args(dict(interface='eth2/1', state='default'))
|
||||||
self.execute_module(
|
self.execute_module(
|
||||||
changed=True,
|
changed=True,
|
||||||
commands=['interface eth2/1', 'ip pim dr-priority 1',
|
commands=['interface eth2/1', 'ip pim dr-priority 1', 'ip pim hello-interval 30000', 'no ip pim border']
|
||||||
'no ip pim border', 'ip pim hello-interval 30000']
|
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_nxos_pim_interface_ip_absent(self):
|
def test_nxos_pim_interface_ip_absent(self):
|
||||||
|
|
Loading…
Reference in a new issue