Fix iosxr integration tests (#34663)

* Handle non-XML errors

* Move iosxr_netconf tuning to prepare

* Apply provider warning to netconf as well

* Update netconf task files
pull/34707/head
Nathaniel Case 7 years ago committed by GitHub
parent 8277e9d1a5
commit accf79f406
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,13 +25,19 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# #
import sys
from ansible.module_utils._text import to_text, to_native from ansible.module_utils._text import to_text, to_native
from ansible.module_utils.connection import Connection, ConnectionError from ansible.module_utils.connection import Connection, ConnectionError
try: try:
from lxml.etree import Element, fromstring from lxml.etree import Element, fromstring, XMLSyntaxError
except ImportError: except ImportError:
from xml.etree.ElementTree import Element, fromstring from xml.etree.ElementTree import Element, fromstring
if sys.version_info < (2, 7):
from xml.parsers.expat import ExpatError as XMLSyntaxError
else:
from xml.etree.ElementTree import ParseError as XMLSyntaxError
NS_MAP = {'nc': "urn:ietf:params:xml:ns:netconf:base:1.0"} NS_MAP = {'nc': "urn:ietf:params:xml:ns:netconf:base:1.0"}
@ -67,25 +73,28 @@ class NetconfConnection(Connection):
def parse_rpc_error(self, rpc_error): def parse_rpc_error(self, rpc_error):
if self.check_rc: if self.check_rc:
error_root = fromstring(rpc_error) try:
root = Element('root') error_root = fromstring(rpc_error)
root.append(error_root) root = Element('root')
root.append(error_root)
error_list = root.findall('.//nc:rpc-error', NS_MAP)
if not error_list: error_list = root.findall('.//nc:rpc-error', NS_MAP)
raise ConnectionError(to_text(rpc_error, errors='surrogate_then_replace')) if not error_list:
warnings = []
for error in error_list:
try:
message = error.find('./nc:error-message', NS_MAP).text
except Exception:
message = error.find('./nc:error-info', NS_MAP).text
severity = error.find('./nc:error-severity', NS_MAP).text
if severity == 'warning' and self.ignore_warning:
warnings.append(message)
else:
raise ConnectionError(to_text(rpc_error, errors='surrogate_then_replace')) raise ConnectionError(to_text(rpc_error, errors='surrogate_then_replace'))
return warnings
warnings = []
for error in error_list:
try:
message = error.find('./nc:error-message', NS_MAP).text
except Exception:
message = error.find('./nc:error-info', NS_MAP).text
severity = error.find('./nc:error-severity', NS_MAP).text
if severity == 'warning' and self.ignore_warning:
warnings.append(message)
else:
raise ConnectionError(to_text(rpc_error, errors='surrogate_then_replace'))
return warnings
except XMLSyntaxError:
raise ConnectionError(rpc_error)

@ -41,11 +41,7 @@ class ActionModule(_ActionModule):
def run(self, tmp=None, task_vars=None): def run(self, tmp=None, task_vars=None):
socket_path = None socket_path = None
if self._play_context.connection == 'network_cli': if self._play_context.connection == 'local':
provider = self._task.args.get('provider', {})
if any(provider.values()):
display.warning('provider is unnecessary when using network_cli and will be ignored')
elif self._play_context.connection == 'local':
provider = load_provider(iosxr_provider_spec, self._task.args) provider = load_provider(iosxr_provider_spec, self._task.args)
pc = copy.deepcopy(self._play_context) pc = copy.deepcopy(self._play_context)
if self._task.action in ['iosxr_netconf', 'iosxr_config', 'iosxr_command'] or \ if self._task.action in ['iosxr_netconf', 'iosxr_config', 'iosxr_command'] or \
@ -77,6 +73,10 @@ class ActionModule(_ActionModule):
'https://docs.ansible.com/ansible/network_debug_troubleshooting.html#unable-to-open-shell'} 'https://docs.ansible.com/ansible/network_debug_troubleshooting.html#unable-to-open-shell'}
task_vars['ansible_socket'] = socket_path task_vars['ansible_socket'] = socket_path
else:
provider = self._task.args.get('provider', {})
if any(provider.values()):
display.warning('provider is unnecessary when using {0} and will be ignored'.format(self._play_context.connection))
# make sure we are in the right cli context which should be # make sure we are in the right cli context which should be
# enable mode and not config module # enable mode and not config module

@ -9,8 +9,14 @@
- name: set test_items - name: set test_items
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}" set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
- name: run test case - name: run test cases (connection=netconf)
include: "{{ test_case_to_run }}" include: "{{ test_case_to_run }} ansible_connection=netconf"
with_items: "{{ test_items }}" with_items: "{{ test_items }}"
loop_control: loop_control:
loop_var: test_case_to_run loop_var: test_case_to_run
- name: run test case (connection=local)
include: "{{ test_case_to_run }} ansible_connection=local"
with_first_found: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run

@ -1,11 +1,4 @@
--- ---
- name: Enable Netconf service
iosxr_netconf:
netconf_port: 830
netconf_vrf: 'default'
state: present
register: result
- name: setup - remove login - name: setup - remove login
iosxr_banner: iosxr_banner:
banner: login banner: login

@ -1,11 +1,4 @@
--- ---
- name: Enable Netconf service
iosxr_netconf:
netconf_port: 830
netconf_vrf: 'default'
state: present
register: result
- name: setup - remove motd - name: setup - remove motd
iosxr_banner: iosxr_banner:
banner: motd banner: motd

@ -1,11 +1,4 @@
--- ---
- name: Enable Netconf service
iosxr_netconf:
netconf_port: 830
netconf_vrf: 'default'
state: present
register: result
- name: Setup - name: Setup
iosxr_banner: iosxr_banner:
banner: login banner: login

@ -9,8 +9,14 @@
- name: set test_items - name: set test_items
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}" set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
- name: run test case - name: run test cases (connection=netconf)
include: "{{ test_case_to_run }}" include: "{{ test_case_to_run }} ansible_connection=netconf"
with_items: "{{ test_items }}" with_items: "{{ test_items }}"
loop_control: loop_control:
loop_var: test_case_to_run loop_var: test_case_to_run
- name: run test case (connection=local)
include: "{{ test_case_to_run }} ansible_connection=local"
with_first_found: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run

@ -1,13 +1,6 @@
--- ---
- debug: msg="START iosxr_interface netconf/basic.yaml" - debug: msg="START iosxr_interface netconf/basic.yaml"
- name: Enable Netconf service
iosxr_netconf:
netconf_port: 830
netconf_vrf: 'default'
state: present
register: result
- name: Setup interface - name: Setup interface
iosxr_interface: iosxr_interface:
name: GigabitEthernet0/0/0/1 name: GigabitEthernet0/0/0/1

@ -1,10 +1,17 @@
--- ---
- name: Ensure we have loopback 888 for testing - name: Ensure we have loopback 888 for testing
iosxr_config: iosxr_config:
src: config.j2 src: config.j2
connection: network_cli connection: network_cli
- name: Enable Netconf service
iosxr_netconf:
netconf_port: 830
netconf_vrf: 'default'
state: present
connection: network_cli
tags: netconf
# Some AWS hostnames can be longer than those allowed by the system we are testing # Some AWS hostnames can be longer than those allowed by the system we are testing
# Truncate the hostname # Truncate the hostname
# http://jinja.pocoo.org/docs/2.9/templates/#truncate # http://jinja.pocoo.org/docs/2.9/templates/#truncate

Loading…
Cancel
Save