2010-11-07 06:45:48 +08:00
|
|
|
""" discovery and running of std-library "unittest" style tests. """
|
2010-11-13 16:05:11 +08:00
|
|
|
import pytest, py
|
2010-11-24 20:54:56 +08:00
|
|
|
import sys, pdb
|
2009-02-27 18:18:27 +08:00
|
|
|
|
2009-06-15 21:15:40 +08:00
|
|
|
def pytest_pycollect_makeitem(collector, name, obj):
|
2010-11-07 06:45:48 +08:00
|
|
|
unittest = sys.modules.get('unittest')
|
|
|
|
if unittest is None:
|
|
|
|
return # nobody can have derived unittest.TestCase
|
2009-10-09 21:09:26 +08:00
|
|
|
try:
|
2010-11-07 06:45:48 +08:00
|
|
|
isunit = issubclass(obj, unittest.TestCase)
|
2010-04-28 21:24:38 +08:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
raise
|
|
|
|
except Exception:
|
2009-10-09 21:09:26 +08:00
|
|
|
pass
|
|
|
|
else:
|
|
|
|
if isunit:
|
|
|
|
return UnitTestCase(name, parent=collector)
|
2009-02-27 18:18:27 +08:00
|
|
|
|
2010-11-13 16:05:11 +08:00
|
|
|
class UnitTestCase(pytest.Class):
|
2009-02-27 18:18:27 +08:00
|
|
|
def collect(self):
|
|
|
|
loader = py.std.unittest.TestLoader()
|
2010-11-02 06:08:16 +08:00
|
|
|
for name in loader.getTestCaseNames(self.obj):
|
|
|
|
yield TestCaseFunction(name, parent=self)
|
2009-02-27 18:18:27 +08:00
|
|
|
|
|
|
|
def setup(self):
|
2010-11-02 06:08:16 +08:00
|
|
|
meth = getattr(self.obj, 'setUpClass', None)
|
|
|
|
if meth is not None:
|
|
|
|
meth()
|
2010-11-24 07:23:39 +08:00
|
|
|
super(UnitTestCase, self).setup()
|
2009-02-27 18:18:27 +08:00
|
|
|
|
|
|
|
def teardown(self):
|
2010-11-02 06:08:16 +08:00
|
|
|
meth = getattr(self.obj, 'tearDownClass', None)
|
|
|
|
if meth is not None:
|
|
|
|
meth()
|
2010-11-24 07:23:39 +08:00
|
|
|
super(UnitTestCase, self).teardown()
|
2009-02-27 18:18:27 +08:00
|
|
|
|
2010-11-13 16:05:11 +08:00
|
|
|
class TestCaseFunction(pytest.Function):
|
2010-11-23 22:42:23 +08:00
|
|
|
_excinfo = None
|
2010-11-24 23:17:49 +08:00
|
|
|
|
2010-11-25 22:48:59 +08:00
|
|
|
def __init__(self, name, parent):
|
|
|
|
super(TestCaseFunction, self).__init__(name, parent)
|
|
|
|
if hasattr(self._obj, 'todo'):
|
|
|
|
getattr(self._obj, 'im_func', self._obj).xfail = \
|
|
|
|
pytest.mark.xfail(reason=str(self._obj.todo))
|
|
|
|
|
2010-11-07 08:10:15 +08:00
|
|
|
def setup(self):
|
2010-11-24 23:17:49 +08:00
|
|
|
self._testcase = self.parent.obj(self.name)
|
|
|
|
self._obj = getattr(self._testcase, self.name)
|
|
|
|
if hasattr(self._testcase, 'setup_method'):
|
|
|
|
self._testcase.setup_method(self._obj)
|
|
|
|
|
2010-11-07 08:10:15 +08:00
|
|
|
def teardown(self):
|
2010-11-24 23:17:49 +08:00
|
|
|
if hasattr(self._testcase, 'teardown_method'):
|
|
|
|
self._testcase.teardown_method(self._obj)
|
|
|
|
|
2010-11-02 06:08:16 +08:00
|
|
|
def startTest(self, testcase):
|
|
|
|
pass
|
2010-11-23 22:42:23 +08:00
|
|
|
|
|
|
|
def _addexcinfo(self, rawexcinfo):
|
2010-11-24 18:48:55 +08:00
|
|
|
# unwrap potential exception info (see twisted trial support below)
|
|
|
|
rawexcinfo = getattr(rawexcinfo, '_rawexcinfo', rawexcinfo)
|
2010-11-23 22:42:23 +08:00
|
|
|
try:
|
2010-11-24 21:35:04 +08:00
|
|
|
excinfo = py.code.ExceptionInfo(rawexcinfo)
|
2010-11-23 22:42:23 +08:00
|
|
|
except TypeError:
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
l = py.std.traceback.format_exception(*rawexcinfo)
|
|
|
|
l.insert(0, "NOTE: Incompatible Exception Representation, "
|
|
|
|
"displaying natively:\n\n")
|
|
|
|
pytest.fail("".join(l), pytrace=False)
|
|
|
|
except (pytest.fail.Exception, KeyboardInterrupt):
|
|
|
|
raise
|
|
|
|
except:
|
|
|
|
pytest.fail("ERROR: Unknown Incompatible Exception "
|
|
|
|
"representation:\n%r" %(rawexcinfo,), pytrace=False)
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
raise
|
2010-11-24 18:48:55 +08:00
|
|
|
except pytest.fail.Exception:
|
2010-11-24 21:35:04 +08:00
|
|
|
excinfo = py.code.ExceptionInfo()
|
|
|
|
self.__dict__.setdefault('_excinfo', []).append(excinfo)
|
2010-11-23 22:42:23 +08:00
|
|
|
|
2010-11-02 06:08:16 +08:00
|
|
|
def addError(self, testcase, rawexcinfo):
|
2010-11-23 22:42:23 +08:00
|
|
|
self._addexcinfo(rawexcinfo)
|
2010-11-02 06:08:16 +08:00
|
|
|
def addFailure(self, testcase, rawexcinfo):
|
2010-11-23 22:42:23 +08:00
|
|
|
self._addexcinfo(rawexcinfo)
|
2010-11-25 22:48:59 +08:00
|
|
|
def addSkip(self, testcase, reason):
|
|
|
|
try:
|
|
|
|
pytest.skip(reason)
|
|
|
|
except pytest.skip.Exception:
|
|
|
|
self._addexcinfo(sys.exc_info())
|
|
|
|
def addExpectedFailure(self, testcase, rawexcinfo, reason):
|
|
|
|
try:
|
|
|
|
pytest.xfail(str(reason))
|
|
|
|
except pytest.xfail.Exception:
|
|
|
|
self._addexcinfo(sys.exc_info())
|
|
|
|
def addUnexpectedSuccess(self, testcase, reason):
|
|
|
|
pass
|
2010-11-02 06:08:16 +08:00
|
|
|
def addSuccess(self, testcase):
|
|
|
|
pass
|
|
|
|
def stopTest(self, testcase):
|
|
|
|
pass
|
|
|
|
def runtest(self):
|
2010-11-24 23:17:49 +08:00
|
|
|
self._testcase(result=self)
|
2010-11-23 22:42:23 +08:00
|
|
|
|
2011-03-06 00:49:51 +08:00
|
|
|
def _prunetraceback(self, excinfo):
|
|
|
|
pytest.Function._prunetraceback(self, excinfo)
|
|
|
|
excinfo.traceback = excinfo.traceback.filter(lambda x:not x.frame.f_globals.get('__unittest'))
|
|
|
|
|
2010-11-23 22:42:23 +08:00
|
|
|
@pytest.mark.tryfirst
|
|
|
|
def pytest_runtest_makereport(item, call):
|
|
|
|
if isinstance(item, TestCaseFunction):
|
2010-11-24 23:17:49 +08:00
|
|
|
if item._excinfo:
|
2010-11-24 21:35:04 +08:00
|
|
|
call.excinfo = item._excinfo.pop(0)
|
2010-11-23 22:42:23 +08:00
|
|
|
del call.result
|
2010-11-24 18:48:55 +08:00
|
|
|
|
|
|
|
# twisted trial support
|
|
|
|
def pytest_runtest_protocol(item, __multicall__):
|
|
|
|
if isinstance(item, TestCaseFunction):
|
|
|
|
if 'twisted.trial.unittest' in sys.modules:
|
|
|
|
ut = sys.modules['twisted.python.failure']
|
|
|
|
Failure__init__ = ut.Failure.__init__.im_func
|
|
|
|
check_testcase_implements_trial_reporter()
|
|
|
|
def excstore(self, exc_value=None, exc_type=None, exc_tb=None):
|
|
|
|
if exc_value is None:
|
|
|
|
self._rawexcinfo = sys.exc_info()
|
|
|
|
else:
|
2010-11-24 20:54:56 +08:00
|
|
|
if exc_type is None:
|
|
|
|
exc_type = type(exc_value)
|
|
|
|
self._rawexcinfo = (exc_type, exc_value, exc_tb)
|
2010-11-24 18:48:55 +08:00
|
|
|
Failure__init__(self, exc_value, exc_type, exc_tb)
|
|
|
|
ut.Failure.__init__ = excstore
|
|
|
|
try:
|
|
|
|
return __multicall__.execute()
|
|
|
|
finally:
|
|
|
|
ut.Failure.__init__ = Failure__init__
|
|
|
|
|
|
|
|
def check_testcase_implements_trial_reporter(done=[]):
|
|
|
|
if done:
|
|
|
|
return
|
|
|
|
from zope.interface import classImplements
|
|
|
|
from twisted.trial.itrial import IReporter
|
|
|
|
classImplements(TestCaseFunction, IReporter)
|
|
|
|
done.append(1)
|