blob: 9bf8f67e3946efb8879cfb6abc25c6f9c49f9a1e (
plain)
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
|
#
# this is a parser function specially designed for the 'openssl.log'
#
import re
def log_parse(log_file):
# set up rule for regex, default one, failed cases are not collected
reObj = re.compile('^(PASS|SKIP+?):\\s.*(\\d{2}-test_.+)[.]t', re.MULTILINE)
# init a dictionary, it stores the return result
case_list = dict()
# open file
test_log = open(log_file, 'r')
# start to read the new line
line = test_log.readline()
while line:
# specially switch regex rule to a new one in fit of the 'FAILED' cases
if("Test Summary Report" in line):
reObj = re.compile('^(\\d{2}-test_.+)[.]t', re.MULTILINE)
# checking regex status in line
matchs = reObj.search(line)
# if the line fits the regex rule
if matchs:
# spliting elements into a tuple
groups = matchs.groups()
if(len(groups) == 1):
case_list[groups[0]] = [groups[0], "FAIL", ""]
else:
case_list[groups[1]] = [groups[1], groups[0], ""]
# jump out if-else, read next line
line = test_log.readline()
test_log.close()
return case_list
|