From 72813c366cdaae8ee3c7103d6c61340650245b57 Mon Sep 17 00:00:00 2001 From: Marek Gradzki Date: Tue, 15 May 2018 10:42:58 +0200 Subject: HC tests: archive ODL logs (CSIT-1031) Change-Id: I444a5d6cd32cb9ee68575dfdb5a208de2c4eb72a Signed-off-by: Marek Gradzki --- .../libraries/python/honeycomb/HoneycombUtil.py | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) (limited to 'resources/libraries/python/honeycomb/HoneycombUtil.py') diff --git a/resources/libraries/python/honeycomb/HoneycombUtil.py b/resources/libraries/python/honeycomb/HoneycombUtil.py index 74e0294055..52670b5390 100644 --- a/resources/libraries/python/honeycomb/HoneycombUtil.py +++ b/resources/libraries/python/honeycomb/HoneycombUtil.py @@ -435,6 +435,31 @@ class HoneycombUtil(object): "cat {hc_log} >> /tmp/honeycomb.log".format( hc_log=Const.REMOTE_HC_LOG)) + @staticmethod + def append_odl_log(node, odl_name, suite_name): + """Append ODL karaf log for the current test suite to the full log. + + :param node: Honeycomb node. + :param odl_name: Name of ODL client version to use. + :param suite_name: Name of the current test suite. ${SUITE_NAME} + variable in robotframework. + :type node: dict + :type odl_name: str + :type suite_name: str + """ + + ssh = SSH() + ssh.connect(node) + + ssh.exec_command( + "echo '{separator}' >> /tmp/karaf.log".format(separator="="*80)) + ssh.exec_command( + "echo 'Log for suite: {suite}' >> /tmp/karaf.log".format( + suite=suite_name)) + ssh.exec_command( + "cat /tmp/karaf_{odl_name}/data/log/karaf.log >> /tmp/karaf.log" + .format(odl_name=odl_name)) + @staticmethod def clear_honeycomb_log(node): """Delete the Honeycomb log file for the current test suite. @@ -471,3 +496,17 @@ class HoneycombUtil(object): get=True, timeout=60) ssh.exec_command("rm /tmp/honeycomb.log") + + @staticmethod + def archive_odl_log(node): + """Copy ODL karaf log file from DUT node to VIRL for archiving. + + :param node: Honeycomb node. + :type node: dict + """ + + ssh = SSH() + ssh.connect(node) + + cmd = "cp /tmp/karaf.log /scratch/" + ssh.exec_command_sudo(cmd, timeout=60) -- cgit 1.2.3-korg