From 2dfbed07de1b055fb261f318fd75d338753619af Mon Sep 17 00:00:00 2001 From: Juha Kosonen Date: Mon, 1 Feb 2016 14:47:41 +0000 Subject: Enable all rally outputs in verbose mode In verbose mode the complete output of rally tests is shown. Change-Id: I315c89b270312b13b3630b97cc24e5f529952645 Signed-off-by: Juha Kosonen (cherry picked from commit e75f34706a8d72ee440d7f94363d4909a02f5293) --- .../VIM/OpenStack/CI/libraries/run_rally-cert.py | 47 +++++++++++++--------- 1 file changed, 28 insertions(+), 19 deletions(-) (limited to 'testcases') diff --git a/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py b/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py index efdde6718..71bf743fb 100755 --- a/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py +++ b/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py @@ -192,6 +192,32 @@ def build_task_args(test_file_name): return task_args +def get_output(proc): + result = "" + if args.verbose: + while proc.poll() is None: + line = proc.stdout.readline() + print line.replace('\n', '') + result += line + else: + while proc.poll() is None: + line = proc.stdout.readline() + if "Load duration" in line or \ + "started" in line or \ + "finished" in line or \ + " Preparing" in line or \ + "+-" in line or \ + "|" in line: + result += line + elif "test scenario" in line: + result += "\n" + line + elif "Full duration" in line: + result += line + "\n\n" + logger.info("\n" + result) + + return result + + def run_task(test_name): # # the "main" function of the script who launch rally for a task @@ -219,25 +245,8 @@ def run_task(test_name): logger.debug('running command line : {}'.format(cmd_line)) p = subprocess.Popen(cmd_line, stdout=subprocess.PIPE, stderr=RALLY_STDERR, shell=True) - result = "" - while p.poll() is None: - #l = p.stdout.readline() - #line = l.replace('\n', '') - line = p.stdout.readline() - if "Load duration" in line or \ - "started" in line or \ - "finished" in line or \ - " Preparing" in line or \ - "+-" in line or \ - "|" in line: - result += line - elif "test scenario" in line: - result += "\n" + line - elif "Full duration" in line: - result += line + "\n\n" - - logger.info("\n" + result) - task_id = get_task_id(result) + output = get_output(p) + task_id = get_task_id(output) logger.debug('task_id : {}'.format(task_id)) if task_id is None: -- cgit 1.2.3-korg