Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ios_logging: fix idempotence errors #53109

Merged
merged 3 commits into from
Mar 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/ansible/modules/network/ios/ios_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def map_config_to_obj(module):
data = get_config(module, flags=['| include logging'])

for line in data.split('\n'):
match = re.search(r'logging (\S+)', line, re.M)
match = re.search(r'^logging (\S+)', line, re.M)
if match:
if match.group(1) in dest_group:
dest = match.group(1)
Expand All @@ -291,6 +291,7 @@ def map_config_to_obj(module):
obj.append({
'dest': dest,
'name': match.group(1),
'size': parse_size(line, dest),
'facility': parse_facility(line, dest),
'level': parse_level(line, dest)
})
Expand All @@ -301,6 +302,7 @@ def map_config_to_obj(module):
obj.append({
'dest': dest,
'name': match.group(1),
'size': parse_size(line, dest),
'facility': parse_facility(line, dest),
'level': parse_level(line, dest)
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
logging buffered 5000
logging console informational
logging facility local0
no logging monitor
logging host 1.2.3.4 transport tcp
logging host 1.2.3.4
logging host 2.3.4.5
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
!
logging buffered 5000
logging console informational
logging facility local0
logging 2.3.4.5
!
74 changes: 74 additions & 0 deletions test/units/modules/network/ios/test_ios_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,77 @@ def test_ios_logging_buffer_size_changed_explicit(self):
set_module_args(dict(dest='buffered', size=6000))
commands = ['logging buffered 6000']
self.execute_module(changed=True, commands=commands)

def test_ios_logging_add_host(self):
set_module_args(dict(dest='host', name='192.168.1.1'))
commands = ['logging host 192.168.1.1']
self.execute_module(changed=True, commands=commands)

def test_ios_logging_host_idempotent(self):
set_module_args(dict(dest='host', name='2.3.4.5'))
commands = []
self.execute_module(changed=False, commands=commands)

def test_ios_logging_delete_non_exist_host(self):
set_module_args(dict(dest='host', name='192.168.1.1', state='absent'))
commands = []
self.execute_module(changed=False, commands=commands)

def test_ios_logging_delete_host(self):
set_module_args(dict(dest='host', name='2.3.4.5', state='absent'))
commands = ['no logging host 2.3.4.5']
self.execute_module(changed=True, commands=commands)

def test_ios_logging_configure_disabled_monitor_destination(self):
set_module_args(dict(dest='monitor', level='debugging'))
commands = ['logging monitor debugging']
self.execute_module(changed=True, commands=commands)


class TestIosLoggingModuleIOS12(TestIosModule):

module = ios_logging

def setUp(self):
super(TestIosLoggingModuleIOS12, self).setUp()

self.mock_get_config = patch('ansible.modules.network.ios.ios_logging.get_config')
self.get_config = self.mock_get_config.start()

self.mock_load_config = patch('ansible.modules.network.ios.ios_logging.load_config')
self.load_config = self.mock_load_config.start()

self.mock_get_capabilities = patch('ansible.modules.network.ios.ios_logging.get_capabilities')
self.get_capabilities = self.mock_get_capabilities.start()
self.get_capabilities.return_value = {'device_info': {'network_os_version': '12.1(2)T'}}

def tearDown(self):
super(TestIosLoggingModuleIOS12, self).tearDown()

self.mock_get_config.stop()
self.mock_load_config.stop()
self.mock_get_capabilities.stop()

def load_fixtures(self, commands=None):
self.get_config.return_value = load_fixture('ios_logging_config_ios12.cfg')
self.load_config.return_value = None

def test_ios_logging_add_host(self):
set_module_args(dict(dest='host', name='192.168.1.1'))
commands = ['logging 192.168.1.1']
self.execute_module(changed=True, commands=commands)

def test_ios_logging_host_idempotent(self):
set_module_args(dict(dest='host', name='2.3.4.5'))
commands = []
self.execute_module(changed=False, commands=commands)

def test_ios_logging_delete_non_exist_host(self):
set_module_args(dict(dest='host', name='192.168.1.1', state='absent'))
commands = []
self.execute_module(changed=False, commands=commands)

def test_ios_logging_delete_host(self):
set_module_args(dict(dest='host', name='2.3.4.5', state='absent'))
commands = ['no logging 2.3.4.5']
self.execute_module(changed=True, commands=commands)