cleanup/restore

This commit is contained in:
2010-05-13 14:33:35 -07:00
parent f276b27885
commit 50a8b2f92e
42 changed files with 1929 additions and 0 deletions

203
log_parser.py Normal file
View File

@@ -0,0 +1,203 @@
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is TopFails site code.
#
# The Initial Developer of the Original Code is
# Mozilla foundation
# Portions created by the Initial Developer are Copyright (C) 2010
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Jeff Hammel <jhammel@mozilla.com>
# Murali Nandigama <Murali.Nandigama@Gmail.COM>
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
# TODO: document what all of the cases are, e.g
#
# - harness completes and automation.py hangs:
# "'62521 INFO TEST-PASS | /tests/content/xbl/test/test_bug542406.xhtml | Field three readonly?\n',
# '62523 INFO Passed: 60569\n',
# '62524 INFO Failed: 44\n',
# '62525 INFO Todo: 770\n',
# '62526 INFO SimpleTest FINISHED\n',
# 'TEST-UNEXPECTED-FAIL | automation.py | application timed out after 330 seconds with no output\n',
# "Can't trigger Breakpad, just killing process\n",
# 'INFO | automation.py | Application ran for: 0:24:44.270038\n',
# 'INFO | automation.py | Reading PID log: /var/folders/H5/H5TD8hgwEqKq9hgKlayjWU+++TM/-Tmp-/tmpEjNEf2pidlog\n',
# "WARNING | automationutils.processLeakLog() | refcount logging is off, so leaks can't be detected!\n",
# '\n',
# 'INFO | runtests.py | Running tests: end.\n',
# 'program finished with exit code 247\n',
# 'elapsedTime=1496.639870\n',"
#
# - leak at harness closure: see sample-logs/leaks-log.txt
import re
class LogParser(object):
"""abstract base class for parsing unittest logs"""
# 'TestFailed' expected log format is "result | test | optional text".
testfailedRe = re.compile(r"(TEST-UNEXPECTED-.*|PROCESS-CRASH) \| (.*) \|(.*)")
def get_potentialTestName(self, line):
"""return potential test name [None by default]"""
return None
def processTestName(self, test, reason, potentialTestName, lines, idx):
"""substitute the potential name for the test (if applicable)"""
# for process crash, take the test-runner (automation) as the test failure
# (as already reported in test) and reset the potentialTestName to None
if 'PROCESS-CRASH' in reason:
return test, idx
# an automation.py failure will ALWAYS be followed by a
# automationutils.processLeakLog line; so send a None here
# which will cause the parsing to continue and don't record this failure
if 'automation.py' in test:
return None, idx
if 'automationutils.processLeakLog' and (potentialTestName is not None):
len_lines = len(lines)
while (idx+1) < len_lines and ('automationutils.processLeakLog' in lines[idx+1]):
idx += 1
return potentialTestName, idx
# if these conditions are not met, return
# the test name and potentialTestName untouched
return test, idx # no name substitution
def parse(self, fp):
"""
parse the file, returning the test failures:
{'test': test, 'text': text, 'reason': mgroup(1)} ]
-fp: file-like object
"""
# Look for test failures.
failures = []
lines = fp.readlines()
potentialTestName = None
idx = 0
while idx < len(lines):
line = lines[idx]
# get the potential real name for reporting
# a test for an automation.py or automationutils.processLeakLog failure
potentialTestName = self.get_potentialTestName(line) or potentialTestName
# test to see if the line is a failure
m = self.testfailedRe.match(line)
if not m:
idx += 1
continue
# reason for failure [TEST-UNEXPECTED-.* or PROCESS-CRASH]
reason = m.group(1).rstrip()
# name of the test
test = m.group(2).strip() or "[unittest-log.py: no logged test]"
# fail log text
text = m.group(3).strip() or "[unittest-log.py: no logged text]"
# test to see if the harness hangs after a run completion
if lines[idx-1].strip().endswith('FINISHED'):
text = 'harness hangs after end of test run (or something)'
else:
# substitute potentialTestName for the test name if
# test is automation.py or automationutils.processLeakLog
test, idx = self.processTestName(test, reason, potentialTestName, lines, idx)
if test is None: # don't add this test (and don't reset potentialTestName)
idx += 1
continue
# reset potentialTestName
potentialTestName = None
# Code bits below try to change back slash to forward slash
# and get rid of varibale prepends to the /test/../.. names
if test.find('\\') != -1:
test = test.replace('\\','/')
if test.find('/') != -1:
tup=test.partition('build/')
if len(tup[2]) > 2:
test=tup[2]
else :
test=tup[0]
# append interesting data to failures return value
failures.append({'test': test, 'text': text, 'reason': reason})
# increment the line counter
idx += 1
return failures
class ReftestParser(LogParser):
"""
applies to
- Reftest
- Crashtest
- JSReftest
"""
def get_potentialTestName(self, line):
"""
If it is jsreftest,crashtest we see 'INFO | Loading' in line
as the potential real test name
"""
if "INFO | Loading" in line:
return line.split('INFO | Loading ', 1)[-1]
class MochitestParser(LogParser):
"""
applies to
- Mochitest-plain
- Mochitest-chrome
- Mochitest-browserchrome
- Mochitest-a11y
"""
def get_potentialTestName(self, line):
"""Check all lines if they have INFO Running"""
if "INFO Running" in line:
return line.split('INFO Running ', 1)[-1].rstrip('.') # strip trailing ellipsis
class XPCshellParser(LogParser):
"""
parser XPCShell results
"""
class CheckParser(LogParser):
"""
parses results from `make check` (C compiled code tests)
"""