-
Notifications
You must be signed in to change notification settings - Fork 39
/
run_test_report.py
executable file
·438 lines (396 loc) · 18.4 KB
/
run_test_report.py
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
#!/usr/bin/env python3
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: MIT
import argparse
from argparse import RawTextHelpFormatter
import os
from typing import Dict,List,TextIO,Iterable
import subprocess
import glob
import re
import sys
import csv
import signal
import level_zero_report_utils
test_plan_generated = []
binary_cwd = ""
def IsListableDirPath(path: str):
try:
os.listdir(path)
except Exception as e:
raise argparse.ArgumentTypeError(path + ' is not a listable directory: ' + str(e))
return os.path.abspath(path)
def add_to_test_list(test_name: str,
binary_and_path: str,
test_filter: str,
test_feature_tag: str,
test_section: str,
test_feature: str,
requested_sections: str,
requested_features: str,
requested_regex: str,
exclude_features: str,
exclude_regex: str):
already_exists = False
checks_passed = True
if requested_sections and checks_passed:
test_section_list = requested_sections.split(",")
for test_section_requested in test_section_list:
if re.search(test_section_requested, test_section, re.IGNORECASE):
for i in range(len(test_plan_generated)):
if test_name.__eq__(test_plan_generated[i][0]) != 0:
already_exists = True
if not already_exists:
checks_passed = True
break
else:
checks_passed = False
else:
checks_passed = False
if requested_features and checks_passed:
feature_list = requested_features.split(",")
for feature in feature_list:
if re.search(feature, test_feature, re.IGNORECASE):
for i in range(len(test_plan_generated)):
if test_name.__eq__(test_plan_generated[i][0]) != 0:
already_exists = True
if not already_exists:
checks_passed = True
break
else:
checks_passed = False
elif re.search(feature, test_feature_tag, re.IGNORECASE):
for i in range(len(test_plan_generated)):
if test_name.__eq__(test_plan_generated[i][0]) != 0:
already_exists = True
if not already_exists:
checks_passed = True
break
else:
checks_passed = False
else:
checks_passed = False
if requested_regex and checks_passed:
if re.search(requested_regex, test_name) or re.search(requested_regex, test_filter):
for i in range(len(test_plan_generated)):
if test_name.__eq__(test_plan_generated[i][0]) != 0:
already_exists = True
if not already_exists:
checks_passed = True
else:
checks_passed = False
else:
checks_passed = False
if exclude_features and checks_passed:
feature_list = exclude_features.split(",")
for feature in feature_list:
if re.search(feature, test_feature, re.IGNORECASE):
checks_passed = False
break
else:
checks_passed = True
if exclude_regex and checks_passed:
if re.search(exclude_regex, test_name) or re.search(exclude_regex, test_filter):
checks_passed = False
else:
checks_passed = True
if checks_passed == True:
test_plan_generated.append((test_name, test_filter, os.path.basename(binary_and_path), test_feature_tag, test_section, test_feature))
def run_test_plan(test_plan: [], test_run_timeout: int, fail_log_name: str):
results = []
i = 0
failed = 0
unsupported = 0
num_passed = 0
num_failed = 0
num_skipped = 0
fail_log = open(fail_log_name, 'a')
for i in range(len(test_plan)):
stdout_log = "_stdout.log"
stderr_log = "_stderr.log"
fout = open(stdout_log, 'a+')
ferr = open(stderr_log, 'a+')
binary_prefix_path = os.path.join(binary_cwd, '')
test_run = subprocess.Popen([binary_prefix_path + test_plan[i][2], test_plan[i][1]], stdout=fout, stderr=ferr, start_new_session=True, cwd=binary_cwd)
try:
failed = 0
unsupported = 0
test_run.wait(timeout=test_run_timeout)
fout.close()
ferr.close()
fout = open(stdout_log, 'r')
ferr = open(stderr_log, 'r')
output = ferr.readlines() + fout.readlines()
for line in output:
if re.search("ZE_RESULT_ERROR_UNSUPPORTED*", line, re.IGNORECASE):
unsupported = 1
break
elif re.search("FAILED", line):
failed = 1
break
if not unsupported:
if test_run.returncode:
failed = 1
if failed == 1:
result = (test_plan[i][0], test_plan[i][4], test_plan[i][3], 'FAILED')
results.append(result)
num_failed += 1
fail_log.write(test_plan[i][0] + ' FAILED' + "\n")
for line in output:
fail_log.write(line + "\n")
print("F", end = '')
elif unsupported == 1:
result = (test_plan[i][0], test_plan[i][4], test_plan[i][3], 'UNSUPPORTED')
results.append(result)
num_skipped += 1
fail_log.write(test_plan[i][0] + ' UNSUPPORTED' + "\n")
for line in output:
fail_log.write(line + "\n")
print("N", end = '')
else:
result = (test_plan[i][0], test_plan[i][4], test_plan[i][3], 'PASSED')
results.append(result)
num_passed += 1
print("-", end = '')
i += 1
sys.stdout.flush()
except subprocess.TimeoutExpired:
fout.close()
ferr.close()
fout = open(stdout_log, 'r')
ferr = open(stderr_log, 'r')
result = (test_plan[i][0], test_plan[i][4], test_plan[i][3], 'TIMEOUT')
results.append(result)
num_failed += 1
output = ferr.readlines() + fout.readlines()
fail_log.write(test_plan[i][0] + ' TIMEOUT' + "\n")
if output:
for line in output:
fail_log.write(line + "\n")
os.killpg(os.getpgid(test_run.pid), signal.SIGTERM)
fout.close()
ferr.close()
i += 1
print("T", end = '')
sys.stdout.flush()
fout.close()
ferr.close()
os.remove(stdout_log)
os.remove(stderr_log)
fail_log.close()
return results, num_passed, num_failed, num_skipped
def write_test_plan(test_plan: [], plan_name: str):
with open(plan_name, 'w', newline='') as file:
writer = csv.writer(file)
writer.writerows(test_plan)
def read_test_plan(plan_name: str):
test_plan = []
try:
file = open(plan_name, 'r', newline='')
except OSError:
print("Could not open/read Test Plan: ", plan_name)
sys.exit()
with file:
reader = csv.reader(file)
test_plan = [tuple(row) for row in reader]
return test_plan
def run_test_report(test_plan: [], test_run_timeout: int, log_prefix: str):
report_log_name = log_prefix + "_results.csv"
fail_log_name = log_prefix + "_failure_log.txt"
fail_log = open(fail_log_name, 'w')
fail_log.close()
print("Running:", end = '')
print(len(test_plan), end = '')
print(" Tests")
num_passed = 0
num_failed = 0
num_skipped = 0
results = []
results_header = ("Name", "Feature", "Test Type", "Result")
results.append(results_header)
print("<", end = '')
sys.stdout.flush()
data = run_test_plan(test_plan, test_run_timeout, fail_log_name)
results += data[0]
num_passed += data[1]
num_failed += data[2]
num_skipped += data[3]
print(">\n")
print("Generating Test Report\n")
report_results_space = ("")
total_results_footer = ("", "", "", "", "Total Passed", "Total Failed", "Total Skipped", "Pass Rate")
total_tests = num_passed + num_failed + num_skipped
deimal_pass_rate = num_passed/total_tests
pass_rate = "{:.0%}".format(deimal_pass_rate)
total_results = ("", "", "", "", num_passed, num_failed, num_skipped, pass_rate)
results.append(report_results_space)
results.append(total_results_footer)
results.append(total_results)
with open(report_log_name, 'w', newline='') as file:
writer = csv.writer(file)
writer.writerows(results)
print("Completed Test Report, see results in " + report_log_name + "\n")
print("Overall Results| Total Tests: ", end = '')
print(total_tests, end = '')
print("\n\t Passed Tests: ", end = '')
print(num_passed, end = '')
print("\n\t Failed Tests: ", end = '')
print(num_failed, end = '')
print("\n\t Skipped Tests: ", end = '')
print(num_skipped, end = '')
print("\n\t Pass Rate: ", end = '')
print(pass_rate)
print("\n")
if num_failed > 0:
print("Tests Failed, see verbose error results in " + fail_log_name)
return -1
elif num_skipped > 0:
print("Some Tests Were skipped as unsupported on this system, see verbose results in " + fail_log_name)
else:
return 0
def create_test_name(suite_name: str, test_binary: str, case_name: str):
test_section = "None"
updated_suite_name = suite_name.split('/') # e.g., 'GivenXWhenYThenZ'
test_suite_name = updated_suite_name[0]
if (len(updated_suite_name) > 1):
test_suite_name += "_" + updated_suite_name[1]
if (test_binary.find("_errors") != -1):
test_name = "L0_NEG_" + test_suite_name + "_" + case_name
test_section = "Negative"
else:
test_name = "L0_CTS_" + test_suite_name + "_" + case_name
return test_name, test_section
def generate_test_case(binary_and_path: str,
suite_name: str,
test_binary: str,
case_name: str,
parameterized: bool,
requested_sections: str,
requested_features: str,
requested_regex: str,
exclude_features: str,
exclude_regex: str
):
test_name, test_section = create_test_name(suite_name, test_binary, case_name)
if test_name.find("DISABLED") != -1:
return
suffix = ""
if parameterized:
suffix = "/*"
test_filter = "--gtest_filter=" + suite_name + "." + case_name + suffix
test_feature, test_section_by_feature = level_zero_report_utils.assign_test_feature(test_binary, test_name)
if (test_section == "None"):
test_section= test_section_by_feature
test_feature_tag = level_zero_report_utils.assign_test_feature_tag(test_feature, test_name, test_section)
add_to_test_list(test_name, binary_and_path, test_filter, test_feature_tag, test_section, test_feature, requested_sections, requested_features, requested_regex, exclude_features, exclude_regex)
def generate_test_items_for_binary(binary_dir: str,
test_binary: str,
requested_sections: str,
requested_features: str,
requested_regex: str,
exclude_features: str,
exclude_regex: str
):
test_binary_path = os.path.join(binary_dir, test_binary)
if (test_binary.find("test") != -1):
popen = subprocess.Popen([test_binary_path, '--gtest_list_tests', '--logging-level=error'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output = popen.stdout.read()
output = output.decode('utf-8').splitlines()
# parameterized cases are reduced to a single case for all parameterizations
current_suite = None
last_case = None
for line in output:
if line[0] != ' ': # test suite
current_suite = line.split('.')[0]
last_case = None
else: # test case
case_name_with_param = line.split()[0] # e.g., 'GivenXWhenYThenZ/1 # GetParam() = (0)' or just 'GivenXWhenYThenZ' if not parameterized
param_split = case_name_with_param.split('/') # e.g., ['GivenXWhenYThenZ', '1 # GetParam() = (0)']
case_name = param_split[0] # e.g., 'GivenXWhenYThenZ'
if case_name == last_case:
continue
last_case = case_name
generate_test_case(test_binary_path, current_suite, test_binary, case_name, len(param_split) > 1, requested_sections, requested_features, requested_regex, exclude_features, exclude_regex)
def generate_test_cases_from_binaries(binary_dir: str,
requested_sections: str,
requested_features: str,
requested_regex: str,
exclude_features: str,
exclude_regex: str
):
test_binaries = [
filename for filename in os.listdir(binary_dir)
if os.access(os.path.join(binary_dir, filename), os.X_OK) and
os.path.isfile(os.path.join(binary_dir, filename))]
for binary in test_binaries:
generate_test_items_for_binary(binary_dir, binary, requested_sections, requested_features, requested_regex, exclude_features, exclude_regex)
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='''Standalone Level Zero Test Runner for Reports''',
epilog="""example:\n
python3 run_test_report.py \n
--binary_dir /build/out/conformance_tests/
--run_test_sections \"core\"
--run_test_features \"barrier\"
--run_test_regex \"GivenEvent*\"
--exclude_features \"image\"
--exclude_regex \"events*\"
--test_run_timeout 1200
--log_prefix \"level_zero_tests_1234\"\n""", formatter_class=RawTextHelpFormatter)
parser.add_argument('--binary_dir', type = IsListableDirPath, help = 'Directory containing gtest binaries and SPVs.', required = True)
parser.add_argument('--run_test_sections', type = str, help = 'List of Sections of Tests to include Comma Separated: core,tools,negative,stress,all NOTE:all sets all types', default = "core")
parser.add_argument('--run_test_features', type = str, help = 'List of Test Features to include Comma Separated: Sets of Features (basic, advanced, discrete), individual features ie barrier,...', default = None)
parser.add_argument('--run_test_regex', type = str, help = 'Regular Expression to filter tests that match either in the name or filter: GivenBarrier*', default = None)
parser.add_argument('--exclude_features', type = str, help = 'List of Test Features to exclude Comma Separated: barrier,...', default = None)
parser.add_argument('--exclude_regex', type = str, help = 'Regular Expression to exclude tests that match either in the name or filter: GivenBarrier*', default = None)
parser.add_argument('--test_run_timeout', type = int, help = 'Adjust the timeout for test binary execution, this is for each call to the binary with the filter', default = 1200)
parser.add_argument('--log_prefix', type = str, help = 'Change the prefix name for the results such that the output is <prefix>_results.csv & <prefix>_failure_log.txt', default = "level_zero_tests")
parser.add_argument('--export_test_plan', type = str, help = 'Name of the Generated Test Plan to export as CSV without execution.', default = None)
parser.add_argument('--import_test_plan', type = str, help = 'Name of the Imported Test Plan as CSV for execution.', default = None)
args = parser.parse_args()
run_test_sections = args.run_test_sections
if re.search(run_test_sections, "all", re.IGNORECASE):
run_test_sections = "core,tools,negative,stress"
run_test_features = args.run_test_features
run_test_regex = args.run_test_regex
test_run_timeout = args.test_run_timeout
log_prefix = args.log_prefix
exclude_features = args.exclude_features
exclude_regex = args.exclude_regex
exit_code = -1
export_test_plan = args.export_test_plan
import_test_plan = args.import_test_plan
print("Level Zero Test Report Generator\n")
binary_cwd = args.binary_dir
if import_test_plan:
print("Importing Test plan: " + import_test_plan)
test_plan_generated = read_test_plan(plan_name = import_test_plan)
else:
print("Generating Plan to Execute Tests which match Test Section(s):" + run_test_sections + " ", end = '')
if run_test_features:
print(" Test Feature(s):" + run_test_features, end = '')
if run_test_regex:
print(" Test Regex:" + run_test_regex, end = '')
if exclude_features:
print(" Excluding Feature(s):" + exclude_features, end = '')
if exclude_regex:
print(" Excluding Regex:" + exclude_regex, end = '')
print("\n")
generate_test_cases_from_binaries(
binary_dir = args.binary_dir,
requested_sections = run_test_sections,
requested_features = run_test_features,
requested_regex = run_test_regex,
exclude_features = exclude_features,
exclude_regex = exclude_regex
)
print("Generated Test List\n")
if len(test_plan_generated) > 0:
if export_test_plan:
print("Generated Test plan Being Exported to CSV.\n")
exit_code = write_test_plan(test_plan = test_plan_generated, plan_name = export_test_plan)
print("Generated Test plan: " + export_test_plan)
else:
exit_code = run_test_report(test_plan = test_plan_generated, test_run_timeout = test_run_timeout, log_prefix = log_prefix)
else:
print("Test Filters set are invalid or test plan imported is invalid, no tests that match all requirements.")
exit(exit_code)