added greentest/parse_results.py: script to parse the results of the test execution and produce a summary
This commit is contained in:
99
greentest/parse_results.py
Executable file
99
greentest/parse_results.py
Executable file
@@ -0,0 +1,99 @@
|
||||
#!/usr/bin/python
|
||||
import sys
|
||||
import traceback
|
||||
import sqlite3
|
||||
import re
|
||||
|
||||
def parse_stdout(s):
|
||||
argv = re.search('^===ARGV=(.*?)$', s, re.M).group(1)
|
||||
argv = eval(argv)
|
||||
testname = argv[-1]
|
||||
del argv[-1]
|
||||
hub = None
|
||||
reactor = None
|
||||
while argv:
|
||||
if argv[0]=='--hub':
|
||||
hub = argv[1]
|
||||
del argv[0]
|
||||
del argv[0]
|
||||
elif argv[0]=='--reactor':
|
||||
reactor = argv[1]
|
||||
del argv[0]
|
||||
del argv[0]
|
||||
else:
|
||||
del argv[0]
|
||||
if reactor is not None:
|
||||
hub += '/%s' % reactor
|
||||
return testname, hub
|
||||
|
||||
unittest_delim = '----------------------------------------------------------------------'
|
||||
|
||||
def parse_unittest_output(s):
|
||||
s = s[s.rindex(unittest_delim)+len(unittest_delim):]
|
||||
num = int(re.search('^Ran (\d+) test.*?$', s, re.M).group(1))
|
||||
ok = re.search('^OK$', s, re.M)
|
||||
error, fail, timeout = 0, 0, 0
|
||||
failed_match = re.search(r'^FAILED \((?:failures=(?P<f>\d+))?,? ?(?:errors=(?P<e>\d+))?\)$', s, re.M)
|
||||
ok_match = re.search('^OK$', s, re.M)
|
||||
if failed_match:
|
||||
assert not ok_match, (ok_match, s)
|
||||
fail = failed_match.group('f')
|
||||
error = failed_match.group('e')
|
||||
fail = int(fail or '0')
|
||||
error = int(error or '0')
|
||||
else:
|
||||
assert ok_match, `s`
|
||||
timeout_match = re.search('^===disabled because of timeout: (\d+)$', s, re.M)
|
||||
if timeout_match:
|
||||
timeout = int(timeout_match.group(1))
|
||||
return num, error, fail, timeout
|
||||
|
||||
def main():
|
||||
[db] = sys.argv[1:]
|
||||
c = sqlite3.connect(db)
|
||||
c.execute('''create table if not exists parsed_command_record
|
||||
(id integer not null unique,
|
||||
testname text,
|
||||
hub text,
|
||||
runs integer,
|
||||
errors integer,
|
||||
fails integer,
|
||||
timeouts integer,
|
||||
error_names text,
|
||||
fail_names text,
|
||||
timeout_names text)''')
|
||||
c.execute('delete from parsed_command_record;')
|
||||
c.commit()
|
||||
|
||||
parse_error = 0
|
||||
|
||||
SQL = 'select id, command, stdout, exitcode from command_record'
|
||||
for row in c.execute(SQL).fetchall():
|
||||
id, command, stdout, exitcode = row
|
||||
stdout = stdout.encode()
|
||||
try:
|
||||
testname, hub = parse_stdout(stdout)
|
||||
if unittest_delim in stdout:
|
||||
runs, errors, fails, timeouts = parse_unittest_output(stdout)
|
||||
else:
|
||||
if exitcode == 0:
|
||||
runs, errors, fails, timeouts = 1,0,0,0
|
||||
if exitcode == 7:
|
||||
runs, errors, fails, timeouts = 0,0,0,1
|
||||
elif exitcode:
|
||||
runs, errors, fails, timeouts = 1,1,0,0
|
||||
except Exception:
|
||||
parse_error += 1
|
||||
sys.stderr.write('Failed to parse id=%s\n' % id)
|
||||
traceback.print_exc()
|
||||
else:
|
||||
print id, hub, testname, runs, errors, fails, timeouts
|
||||
c.execute('insert into parsed_command_record '
|
||||
'(id, testname, hub, runs, errors, fails, timeouts) '
|
||||
'values (?, ?, ?, ?, ?, ?, ?)',
|
||||
(id, testname, hub, runs, errors, fails, timeouts))
|
||||
c.commit()
|
||||
|
||||
if __name__=='__main__':
|
||||
main()
|
||||
|
Reference in New Issue
Block a user