summaryrefslogtreecommitdiffstats
path: root/dovetail/report.py
diff options
context:
space:
mode:
authorMatthewLi <matthew.lijun@huawei.com>2017-02-04 01:32:43 -0500
committerMatthewLi <matthew.lijun@huawei.com>2017-02-07 03:50:53 -0500
commit29b10e25d60c34dde4c0cf9b2b11ca1904101270 (patch)
tree27ac17e43a00dfb803b6a12b165e0490090759df /dovetail/report.py
parentbfb64dbd9f6b9e4ca09c017453f70b2d404e3f3f (diff)
dovetail tool: report.py bugfix and tempest skipped testcase added
JIRA: DOVETAIL-343 1, bugfix https://build.opnfv.org/ci/view/dovetail/job/dovetail-compass-virtual-debug-master/lastSuccessfulBuild/artifact/results/dovetail_report.txt test result error 2, skipped testcase in tempest added 3, two testcase in tempest full testsuite added in debug.yml to debug Change-Id: I6bf371d3384e3755d6a41d951cfc9d1a55e00ab3 Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'dovetail/report.py')
-rw-r--r--dovetail/report.py17
1 files changed, 6 insertions, 11 deletions
diff --git a/dovetail/report.py b/dovetail/report.py
index 286c3893..6145ad89 100644
--- a/dovetail/report.py
+++ b/dovetail/report.py
@@ -214,13 +214,6 @@ class FunctestCrawler:
def crawl_from_file(self, testcase=None):
dovetail_config = dt_cfg.dovetail_config
- file_path = \
- os.path.join(dovetail_config['result_dir'],
- dovetail_config[self.type]['result']['file_path'])
- if not os.path.exists(file_path):
- self.logger.info('result file not found: %s', file_path)
- return None
-
criteria = 'FAIL'
timestart = 0
testcase_duration = 0
@@ -254,10 +247,9 @@ class FunctestCrawler:
return None
with open(file_path, 'r') as myfile:
output = myfile.read()
- error_logs = ""
- for match in re.findall('(.*?)[. ]*FAILED', output):
- error_logs += match
+ error_logs = " ".join(re.findall('(.*?)[. ]*fail ', output))
+ skipped = " ".join(re.findall('(.*?)[. ]*skip:', output))
failed_num = int(re.findall(' - Failures: (\d*)', output)[0])
if failed_num != 0:
@@ -268,7 +260,8 @@ class FunctestCrawler:
json_results = {'criteria': criteria, 'details': {"timestart": '',
"duration": int(dur_sec_int),
"tests": int(num_tests), "failures": failed_num,
- "errors": error_logs}}
+ "errors": error_logs,
+ "skipped": skipped}}
self.logger.debug('Results: %s', str(json_results))
return json_results
@@ -402,6 +395,8 @@ class FunctestChecker:
all_passed = True
for sub_testcase in sub_testcase_list:
self.logger.debug('check sub_testcase:%s', sub_testcase)
+ # TO DO: should think the test case when skipped, should think
+ # together with the "dovetail report"
if sub_testcase in db_result['details']['errors']:
testcase.sub_testcase_passed(sub_testcase, False)
all_passed = False