diff options
author | Yu Yang (Gabriel) <Gabriel.yuyang@huawei.com> | 2017-06-05 09:38:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-06-05 09:38:32 +0000 |
commit | 012e74627d6a77ba751cc80543db7c27e224f922 (patch) | |
tree | 577596fd1aecaa07a6fc9ccd6a60272fcafb4fbc | |
parent | 6d4c361c67aa5166403cfa54378c3c29c1008975 (diff) | |
parent | 2df7dda3cafd194ac99154dbd21004d35b8e36d7 (diff) |
Merge "Bugfix: json format transform for report" into stable/danube
-rwxr-xr-x | testsuites/posca/run_posca.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/testsuites/posca/run_posca.py b/testsuites/posca/run_posca.py index 18325b04..bd979b67 100755 --- a/testsuites/posca/run_posca.py +++ b/testsuites/posca/run_posca.py @@ -20,6 +20,7 @@ import sys import os from oslo_serialization import jsonutils +import json import requests import datetime @@ -50,8 +51,8 @@ def report(testcase, start_date, stop_date, criteria, details_doc): "installer": os.environ.get('INSTALLER_TYPE', 'unknown'), "version": os.environ.get('BRANCH', 'unknown'), "build_tag": os.environ.get('BUILD_TAG', 'unknown'), - "stop_date": stop_date, - "start_date": start_date, + "stop_date": str(stop_date), + "start_date": str(start_date), "criteria": criteria, "scenario": os.environ.get('DEPLOY_SCENARIO', 'unknown') } @@ -94,11 +95,9 @@ def posca_run(test_level, test_name, REPORT="False"): details_doc = [] if os.path.exists(config[testcase]['out_file']): with open(config[testcase]['out_file']) as details_result: - lines = details_result.readlines() - if len(lines): + details_doc =[json.loads(data) for data in details_result.readlines()] # noqa + if len(details_doc): criteria = "PASS" - for l in lines: - details_doc.append(l.replace('\n', '')) report(testcase, start_date, stop_date, criteria, details_doc) |