1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
#!/usr/bin/env python
#
# grakiss.wanglei@huawei.com
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
import json
import urllib2
import re
import utils.dovetail_logger as dt_logger
import utils.dovetail_utils as dt_utils
logger = dt_logger.Logger('report.py').getLogger()
from conf.dovetail_config import *
from testcase import *
def get_pass_str(passed):
if passed:
return 'PASS'
else:
return 'FAIL'
class Report:
results = {'functest':{},'yardstick':{}}
@classmethod
def check_result(cls, testcase, db_result):
checker = CheckerFactory.create(testcase.script_type())
checker.check(testcase, db_result)
@classmethod
def generate(cls, scenario_yaml):
report = ''
report += '\n\
+=============================================================================+\n\
| report | \n\
+-----------------------------------------------------------------------------+\n'
report += '|scenario: %s\n' % scenario_yaml['name']
for testcase_name in scenario_yaml['testcase_list']:
testcase = Testcase.get(testcase_name)
report += '| [testcase]: %s\t\t\t\t[%s]\n' % (testcase_name, get_pass_str(testcase.passed()))
report += '| |-objective: %s\n' % testcase.objective()
if testcase.sub_testcase() is not None:
for subtest in testcase.sub_testcase():
report += '| |-%s \t\t [%s]\n' % (subtest, get_pass_str(testcase.sub_testcase_passed(subtest)))
report += '+-----------------------------------------------------------------------------+\n'
logger.info(report)
return report
@classmethod
def get_result(cls, testcase):
script_testcase = testcase.script_testcase()
type = testcase.script_type()
if script_testcase in cls.results[type]:
return cls.results[type][script_testcase]
if dovetail_config[type]['result']['store_type'] == 'file':
result = cls.get_results_from_file(type)
else:
result = cls.get_results_from_db(type, script_testcase)
if result is not None:
cls.results[type][script_testcase] = result
testcase.script_result_acquired(True)
logger.debug('testcase: %s -> result acquired' % script_testcase)
else:
retry = testcase.increase_retry()
logger.debug('testcase: %s -> result acquired retry:%d' % (script_testcase, retry))
return result
@classmethod
def get_results_from_db(cls, type, testcase):
#url = 'http://testresults.opnfv.org/test/api/v1/results?case=%s&last=1' % testcase
url = dovetail_config[type]['result']['db_url'] % testcase
logger.debug("Query to rest api: %s" % url)
try:
data = json.load(urllib2.urlopen(url))
return data['results'][0]
except Exception as e:
logger.error("Cannot read content from the url: %s, exception: %s" % (url, e))
return None
@classmethod
def get_results_from_file(cls, type, testcase=None):
file_path = os.path.join(dovetail_config['result_dir'],dovetail_config[type]['result']['file_path'])
if not os.path.exists(file_path):
logger.info('result file not found: %s' % file_path)
return None
try:
with open(file_path, 'r') as myfile:
output = myfile.read()
error_logs = ""
for match in re.findall('(.*?)[. ]*FAILED', output):
error_logs += match
criteria = 'PASS'
failed_num = int(re.findall(' - Failed: (\d*)', output)[0])
if failed_num != 0:
criteria = 'FAIL'
match = re.findall('Ran: (\d*) tests in (\d*)\.\d* sec.', output)
num_tests, dur_sec_int = match[0]
json_results = {'criteria':criteria,'details':{"timestart": '', "duration": int(dur_sec_int),
"tests": int(num_tests), "failures": failed_num,
"errors": error_logs}}
logger.debug('Results: %s' % str(json_results))
return json_results
except Exception as e:
logger.error('Cannot read content from the file: %s, exception: %s' % (file_path, e))
return None
class CheckerFactory:
@classmethod
def create(cls,type):
if type == 'functest':
return FunctestChecker()
if type == 'yardstick':
return YardstickChecker()
return None
class ResultChecker:
def check(cls):
return 'PASS'
class FunctestChecker:
def check(cls, testcase, db_result):
if not db_result:
for sub_testcase in testcase.sub_testcase():
testcase.sub_testcase_passed(sub_testcase,False)
return
testcase.passed(db_result['criteria'] == 'PASS')
if testcase.sub_testcase() is None:
return
if testcase.testcase['passed'] == True:
for sub_testcase in testcase.sub_testcase():
testcase.sub_testcase_passed(sub_testcase, True)
return
all_passed = True
for sub_testcase in testcase.sub_testcase():
logger.debug('check sub_testcase:%s' % sub_testcase)
if sub_testcase in db_result['details']['errors']:
testcase.sub_testcase_passed(sub_testcase, False)
all_passed = False
else:
testcase.sub_testcase_passed(sub_testcase, True)
testcase.passed(all_passed)
class YardstickChecker:
def check(cls, testcase, result):
return 'PASS'
|