From: Michael Foord Date: Mon, 1 Nov 2010 22:11:53 +0000 (+0000) Subject: Merged revisions 86101 via svnmerge from X-Git-Tag: v2.7.1rc1~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5dc24e874da603d29d1e15035e38dd28e72a39f;p=thirdparty%2FPython%2Fcpython.git Merged revisions 86101 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86101 | michael.foord | 2010-11-01 21:09:03 +0000 (Mon, 01 Nov 2010) | 1 line Fix issue 9926. TestSuite subclasses that override __call__ are called correctly. ........ --- diff --git a/Lib/unittest/result.py b/Lib/unittest/result.py index 4b7cde658ac2..1f66f1bb18f3 100644 --- a/Lib/unittest/result.py +++ b/Lib/unittest/result.py @@ -35,6 +35,7 @@ class TestResult(object): formatted traceback of the error that occurred. """ _previousTestClass = None + _testRunEntered = False _moduleSetUpFailed = False def __init__(self, stream=None, descriptions=None, verbosity=None): self.failfast = False diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py index 8602107eb8b8..e8fbdc31fed7 100644 --- a/Lib/unittest/suite.py +++ b/Lib/unittest/suite.py @@ -80,23 +80,11 @@ class TestSuite(BaseTestSuite): subclassing, do not forget to call the base class constructor. """ + def run(self, result, debug=False): + topLevel = False + if getattr(result, '_testRunEntered', False) is False: + result._testRunEntered = topLevel = True - def run(self, result): - self._wrapped_run(result) - self._tearDownPreviousClass(None, result) - self._handleModuleTearDown(result) - return result - - def debug(self): - """Run the tests without collecting errors in a TestResult""" - debug = _DebugResult() - self._wrapped_run(debug, True) - self._tearDownPreviousClass(None, debug) - self._handleModuleTearDown(debug) - - ################################ - # private methods - def _wrapped_run(self, result, debug=False): for test in self: if result.shouldStop: break @@ -111,13 +99,23 @@ class TestSuite(BaseTestSuite): getattr(result, '_moduleSetUpFailed', False)): continue - if hasattr(test, '_wrapped_run'): - test._wrapped_run(result, debug) - elif not debug: + if not debug: test(result) else: test.debug() + if topLevel: + self._tearDownPreviousClass(None, result) + self._handleModuleTearDown(result) + return result + + def debug(self): + """Run the tests without collecting errors in a TestResult""" + debug = _DebugResult() + self.run(debug, True) + + ################################ + def _handleClassSetUp(self, test, result): previousClass = getattr(result, '_previousTestClass', None) currentClass = test.__class__ diff --git a/Lib/unittest/test/test_suite.py b/Lib/unittest/test/test_suite.py index f4a7468e7198..d212bd05dc4e 100644 --- a/Lib/unittest/test/test_suite.py +++ b/Lib/unittest/test/test_suite.py @@ -345,5 +345,19 @@ class Test_TestSuite(unittest.TestCase, TestEquality): self.assertEqual(result.testsRun, 2) + def test_overriding_call(self): + class MySuite(unittest.TestSuite): + called = False + def __call__(self, *args, **kw): + self.called = True + unittest.TestSuite.__call__(self, *args, **kw) + + suite = MySuite() + wrapper = unittest.TestSuite() + wrapper.addTest(suite) + wrapper(unittest.TestResult()) + self.assertTrue(suite.called) + + if __name__ == '__main__': unittest.main() diff --git a/Misc/NEWS b/Misc/NEWS index b9e38e2963d5..720ecc12125d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -66,6 +66,8 @@ Core and Builtins Library ------- +- Issue 120176: Wrapped TestSuite subclass does not get __call__ executed + - Issue 6706: asyncore accept() method no longer raises EWOULDBLOCK/ECONNABORTED on incomplete connection attempt but returns None instead.