14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24
from bzrlib import pyutils
26
# Mark this python module as being part of the implementation
27
# of unittest: this gives us better tracebacks where the last
28
# shown frame is the test code, not our assertXYZ.
32
24
class LogCollector(logging.Handler):
34
25
def __init__(self):
35
26
logging.Handler.__init__(self)
38
28
def emit(self, record):
39
29
self.records.append(record.getMessage())
63
53
visitor.visitSuite(test)
64
54
visitTests(test, visitor)
66
print "unvisitable non-unittest.TestCase element %r (%r)" % (
70
class FailedCollectionCase(unittest.TestCase):
71
"""Pseudo-test to run and report failure if given case was uncollected"""
73
def __init__(self, case):
74
super(FailedCollectionCase, self).__init__("fail_uncollected")
75
# GZ 2011-09-16: Maybe catch errors from id() method as cases may be
76
# in a bit of a funny state by now.
77
self._problem_case_id = case.id()
80
if self._problem_case_id[-1:] == ")":
81
return self._problem_case_id[:-1] + ",uncollected)"
82
return self._problem_case_id + "(uncollected)"
84
def fail_uncollected(self):
85
self.fail("Uncollected test case: " + self._problem_case_id)
56
print "unvisitable non-unittest.TestCase element %r (%r)" % (test, test.__class__)
88
59
class TestSuite(unittest.TestSuite):
89
60
"""I am an extended TestSuite with a visitor interface.
96
67
visitor.visitSuite(self)
97
68
visitTests(self, visitor)
99
def run(self, result):
100
"""Run the tests in the suite, discarding references after running."""
105
count_stored_tests = getattr(result, "_count_stored_tests", int)
106
from bzrlib.tests import selftest_debug_flags
107
notify = "uncollected_cases" in selftest_debug_flags
109
if result.shouldStop:
110
self._tests = reversed(tests)
112
case = _run_and_collect_case(tests.pop(), result)()
113
new_stored_count = count_stored_tests()
114
if case is not None and isinstance(case, unittest.TestCase):
115
if stored_count == new_stored_count and notify:
116
# Testcase didn't fail, but somehow is still alive
117
FailedCollectionCase(case).run(result)
118
# Adding a new failure so need to reupdate the count
119
new_stored_count = count_stored_tests()
120
# GZ 2011-09-16: Previously zombied the case at this point by
121
# clearing the dict as fallback, skip for now.
122
stored_count = new_stored_count
126
def _run_and_collect_case(case, res):
127
"""Run test case against result and use weakref to drop the refcount"""
129
return weakref.ref(case)
132
71
class TestLoader(unittest.TestLoader):
133
"""Custom TestLoader to extend the stock python one."""
72
"""Custome TestLoader to set the right TestSuite class."""
135
73
suiteClass = TestSuite
136
# Memoize test names by test class dict
139
def loadTestsFromModuleNames(self, names):
140
"""use a custom means to load tests from modules.
142
There is an undesirable glitch in the python TestLoader where a
143
import error is ignore. We think this can be solved by ensuring the
144
requested name is resolvable, if its not raising the original error.
146
result = self.suiteClass()
148
result.addTests(self.loadTestsFromModuleName(name))
151
def loadTestsFromModuleName(self, name):
152
result = self.suiteClass()
153
module = pyutils.get_named_object(name)
155
result.addTests(self.loadTestsFromModule(module))
158
def loadTestsFromModule(self, module):
159
"""Load tests from a module object.
161
This extension of the python test loader looks for an attribute
162
load_tests in the module object, and if not found falls back to the
163
regular python loadTestsFromModule.
165
If a load_tests attribute is found, it is called and the result is
168
load_tests should be defined like so:
169
>>> def load_tests(standard_tests, module, loader):
172
standard_tests is the tests found by the stock TestLoader in the
173
module, module and loader are the module and loader instances.
175
For instance, to run every test twice, you might do:
176
>>> def load_tests(standard_tests, module, loader):
177
>>> result = loader.suiteClass()
178
>>> for test in iter_suite_tests(standard_tests):
179
>>> result.addTests([test, test])
182
if sys.version_info < (2, 7):
183
basic_tests = super(TestLoader, self).loadTestsFromModule(module)
185
# GZ 2010-07-19: Python 2.7 unittest also uses load_tests but with
186
# a different and incompatible signature
187
basic_tests = super(TestLoader, self).loadTestsFromModule(module,
188
use_load_tests=False)
189
load_tests = getattr(module, "load_tests", None)
190
if load_tests is not None:
191
return load_tests(basic_tests, module, self)
195
def getTestCaseNames(self, test_case_class):
196
test_fn_names = self.test_func_names.get(test_case_class, None)
197
if test_fn_names is not None:
198
# We already know them
201
test_fn_names = unittest.TestLoader.getTestCaseNames(self,
203
self.test_func_names[test_case_class] = test_fn_names
207
class FilteredByModuleTestLoader(TestLoader):
208
"""A test loader that import only the needed modules."""
210
def __init__(self, needs_module):
213
:param needs_module: a callable taking a module name as a
214
parameter returing True if the module should be loaded.
216
TestLoader.__init__(self)
217
self.needs_module = needs_module
219
def loadTestsFromModuleName(self, name):
220
if self.needs_module(name):
221
return TestLoader.loadTestsFromModuleName(self, name)
223
return self.suiteClass()
226
75
class TestVisitor(object):
227
76
"""A visitor for Tests"""
229
77
def visitSuite(self, aTestSuite):
232
79
def visitCase(self, aTestCase):