From 92a95368fe5246456a4bad9e133c930e3eff435f Mon Sep 17 00:00:00 2001 From: Nathaniel Case Date: Mon, 4 Jun 2018 07:32:23 -0400 Subject: [PATCH] Fixes to ios_logging (#41029) * Logging size may not show up in config * This is much simpler * Avoid repetition in tests * Both options of buffered are optional --- .../modules/network/ios/ios_logging.py | 25 +++++--------- .../targets/ios_logging/tests/cli/basic.yaml | 34 +++++-------------- 2 files changed, 16 insertions(+), 43 deletions(-) diff --git a/lib/ansible/modules/network/ios/ios_logging.py b/lib/ansible/modules/network/ios/ios_logging.py index 10923d77975..16211dcc116 100644 --- a/lib/ansible/modules/network/ios/ios_logging.py +++ b/lib/ansible/modules/network/ios/ios_logging.py @@ -225,18 +225,12 @@ def parse_size(line, dest): size = None if dest == 'buffered': - match = re.search(r'logging buffered (\S+)', line, re.M) + match = re.search(r'logging buffered(?: (\d+))?(?: [a-z]+)?', line, re.M) if match: - try: - int_size = int(match.group(1)) - except ValueError: - int_size = None - - if int_size: - if isinstance(int_size, int): - size = str(match.group(1)) - else: - size = str(4096) + if match.group(1) is not None: + size = match.group(1) + else: + size = "4096" return size @@ -261,15 +255,12 @@ def parse_level(line, dest): else: if dest == 'buffered': - match = re.search(r'logging buffered (?:\d+ )([a-z]+)', line, re.M) + match = re.search(r'logging buffered(?: \d+)?(?: ([a-z]+))?', line, re.M) else: match = re.search(r'logging {0} (\S+)'.format(dest), line, re.M) - if match: - if match.group(1) in level_group: - level = match.group(1) - else: - level = 'debugging' + if match and match.group(1) in level_group: + level = match.group(1) else: level = 'debugging' diff --git a/test/integration/targets/ios_logging/tests/cli/basic.yaml b/test/integration/targets/ios_logging/tests/cli/basic.yaml index ced1c65d8ba..fc636204187 100644 --- a/test/integration/targets/ios_logging/tests/cli/basic.yaml +++ b/test/integration/targets/ios_logging/tests/cli/basic.yaml @@ -1,7 +1,7 @@ --- # ensure logging configs are empty - name: Remove host logging - ios_logging: + ios_logging: &remove_host dest: host name: 172.16.0.1 state: absent @@ -45,16 +45,12 @@ provider: "{{ cli }}" register: result -- assert: +- assert: &unchanged that: - 'result.changed == false' - name: Delete/disable host logging - ios_logging: - dest: host - name: 172.16.0.1 - state: absent - provider: "{{ cli }}" + ios_logging: *remove_host register: result - assert: @@ -63,16 +59,10 @@ - '"no logging host 172.16.0.1" in result.commands' - name: Delete/disable host logging (idempotent) - ios_logging: - dest: host - name: 172.16.0.1 - state: absent - provider: "{{ cli }}" + ios_logging: *remove_host register: result -- assert: - that: - - 'result.changed == false' +- assert: *unchanged - name: Console logging with level warnings ios_logging: @@ -115,7 +105,7 @@ - '"logging console notifications" in result.commands' - name: Set both logging destination and facility - ios_logging: + ios_logging: &set_both dest: buffered facility: uucp level: alerts @@ -131,18 +121,10 @@ - '"logging facility uucp" in result.commands' - name: Set both logging destination and facility (idempotent) - ios_logging: - dest: buffered - facility: uucp - level: alerts - size: 4096 - state: present - provider: "{{ cli }}" + ios_logging: *set_both register: result -- assert: - that: - - 'result.changed == false' +- assert: *unchanged - name: remove logging as collection tearDown ios_logging: