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
174
175
176
177
178
179
180
|
import json
import shutil
import subprocess
import plugins.agl_test_conf as conf
#Compress the tmp log to .zip
def log_compress(THIS_TEST):
base_name = conf.get_log_dir(THIS_TEST)
root_dir = conf.get_tmp_log_dir(THIS_TEST)
shutil.make_archive(base_name,'zip',root_dir)
#Get all test cases status
#The type of test_cases_values_and_status is list,it's looks like that:
#[['test_id', 'values', 'status'], ['rpm01', 'TEST-PASS', 'passed'],....]
#The type of case_status is directory,it's looks like:
#{'rpm03': 'passed', 'rpm02': 'passed', 'rpm01': 'passed'}
def get_case_status(test_cases_values_and_status):
num = len(test_cases_values_and_status)
case_status = {}
for i in range(num):
if (i==0):
continue
case_status[test_cases_values_and_status[i][0]] = test_cases_values_and_status[i][2]
return case_status
#Input format
# {
# "test_id": ['test_id', 'values', 'status'],
# "test_id": ['test_id', 'values', 'status']
# }
#Output format
# {
# 'test_id': 'status',
# 'test_id': 'status'
# }
def format_caselist(case_info_list: dict):
case_status = dict()
for key in case_info_list:
case_info = case_info_list[key]
case_status[key] = case_info[2]
return case_status
#Input format
# {
# "test_id": ['test_id', 'values', 'status'],
# "test_id": ['test_id', 'values', 'status']
# }
#Output format
# {
# 'collected': collected_num,
# 'passed': passed_num,
# 'failed': failed_num,
# 'skipped": skipped_num
# }
def format_summary(case_info_list):
collected_num = passed_num = xpassed_num = failed_num = xfailed_num = skipped_num = 0
for key in case_info_list:
case_info = case_info_list[key]
collected_num = collected_num + 1
if (case_info[2] == "passed"):
passed_num = passed_num + 1
elif (case_info[2] == "xpassed"):
xpassed_num = xpassed_num + 1
elif (case_info[2] == "failed"):
failed_num = failed_num + 1
elif (case_info[2] == "xfailed"):
xfailed_num = xfailed_num + 1
else:
skipped_num = skipped_num + 1
summary = dict()
summary["collected"] = collected_num
summary["passed"] = passed_num
summary["xpassed"] = xpassed_num
summary["failed"] = failed_num
summary["xfailed"] = xfailed_num
summary["skipped"] = skipped_num
return summary
def format_json_data(name, test_set_status, summary, case_status):
data = summary
data["test_name"] = name
data["test_status"] = test_set_status
data["case_status"] = case_status
return summary
#Write the test result to a json file
def write_data_to_json(THIS_TEST,test_set_status,summary,case_status):
#The data that will be written into the json file
data = {
'test_status': test_set_status,
'test_name': THIS_TEST,
'collected': summary[0][1],
'passed': summary[1][1],
'xpassed': summary[2][1],
'failed': summary[3][1],
'xfailed': summary[4][1],
'skipped': summary[5][1],
'case_status': case_status
}
#Write the "data" to the json file
write_data_to_file(data, "json")
def write_to_html_file(THIS_TEST,html):
html_path = conf.get_html_filename(THIS_TEST)
html_file = open(html_path,"w")
html_file.write(html)
html_file.close()
def create_gen_web_page(filename, tlpname, html_data):
#Get timestamp
date_F = subprocess.getoutput("date +%F")
html_data["date_F"] = date_F
date_T = subprocess.getoutput("date +%T")
html_data["date_T"] = date_T
# here, jinja2 module should be installed first
from jinja2 import Environment,FileSystemLoader
env = Environment(loader=FileSystemLoader(conf.get_tpl_dir()))
template = env.get_template(tlpname)
with open(filename,'w+') as f:
html_content = template.render(data=html_data)
f.write(html_content)
f.close()
def write_data_to_file(data, file_type = "json"):
testname = data["test_name"]
if (file_type == "json"):
filename = conf.get_json_filename(testname)
with open(filename,'w') as f:
json.dump(data,f,indent=4,sort_keys=False)
f.close()
elif (file_type == "html"):
filename = conf.get_html_filename(testname)
tlpname = conf.get_default_html_tpl()
create_gen_web_page(filename, tlpname, data)
else:
#TODO waiting for adding
print("ERROR: file type %s is error. Expect json or html." % file_type)
def change_json_to_html(test_set_name):
json_file = conf.get_json_filename(test_set_name)
html_file = conf.get_html_filename(test_set_name)
#read data from json file
summary_data = dict()
with open(json_file,'r') as f:
summary_data = json.load(f)
f.close()
#format json data to html data
html_data = format_html_data(summary_data)
#save data to html file
write_data_to_file(html_data, "html")
#def format_case_status_table(case_status):
def format_html_data(summary_data):
#init all rows
case_status = summary_data["case_status"]
html_data = ""
for key in case_status:
html_data += "\t\t\t<tbody class=\"" + case_status[key] + "\">\n"
html_data += "\t\t\t\t<tr>\n"
html_data += "\t\t\t\t<td class=\"col-result\">"
html_data += str.capitalize(case_status[key]) +"</td>\n"
html_data += "\t\t\t\t<td>" + key + "</td>\n"
html_data += "\t\t\t\t</tr>\n"
html_data += "\t\t\t</tbody>\n"
summary_data["case_status_html"] = html_data
#Create summry status in html
status_html = ""
status_html += "\t\t<p>test suite status : <span class=\""
status_html += summary_data["test_status"] + "\">"
status_html += str.capitalize(summary_data["test_status"]) + "</span></p>"
summary_data["test_suite_status_html"] = status_html
return summary_data
|