]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-34900: Make TestCase.debug() work with subtests (GH-9707)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 12 Oct 2018 11:07:44 +0000 (04:07 -0700)
committerBerker Peksag <berker.peksag@gmail.com>
Fri, 12 Oct 2018 11:07:44 +0000 (14:07 +0300)
(cherry picked from commit da2bf9f66d0c95b988c5d87646d168f65499b316)

Co-authored-by: Bruno Oliveira <nicoddemus@gmail.com>
Lib/unittest/case.py
Lib/unittest/test/test_case.py
Misc/NEWS.d/next/Library/2018-10-05-05-55-53.bpo-34900.8RNiFu.rst [new file with mode: 0644]

index c3634ec997f86bd3b278124efbe19113e9dfbe21..402fa47f285acb6c06b30f0e2c7451787c42fab7 100644 (file)
@@ -509,7 +509,7 @@ class TestCase(object):
         case as failed but resumes execution at the end of the enclosed
         block, allowing further test code to be executed.
         """
-        if not self._outcome.result_supports_subtests:
+        if self._outcome is None or not self._outcome.result_supports_subtests:
             yield
             return
         parent = self._subtest
index b84959150542bdfe95529dee196d1be5aae48397..04da9d0cec7b2dccf273922011bb79846d370fea 100644 (file)
@@ -425,6 +425,20 @@ class Test_TestCase(unittest.TestCase, TestEquality, TestHashing):
         expected = ['a1', 'a2', 'b1']
         self.assertEqual(events, expected)
 
+    def test_subtests_debug(self):
+        # Test debug() with a test that uses subTest() (bpo-34900)
+        events = []
+
+        class Foo(unittest.TestCase):
+            def test_a(self):
+                events.append('test case')
+                with self.subTest():
+                    events.append('subtest 1')
+
+        Foo('test_a').debug()
+
+        self.assertEqual(events, ['test case', 'subtest 1'])
+
     # "This class attribute gives the exception raised by the test() method.
     # If a test framework needs to use a specialized exception, possibly to
     # carry additional information, it must subclass this exception in
diff --git a/Misc/NEWS.d/next/Library/2018-10-05-05-55-53.bpo-34900.8RNiFu.rst b/Misc/NEWS.d/next/Library/2018-10-05-05-55-53.bpo-34900.8RNiFu.rst
new file mode 100644 (file)
index 0000000..20e3a0e
--- /dev/null
@@ -0,0 +1,2 @@
+Fixed :meth:`unittest.TestCase.debug` when used to call test methods with
+subtests.  Patch by Bruno Oliveira.