]> granicus.if.org Git - python/commitdiff
Issue #20567: Delete class attribute gui widgets in idle tests.
authorTerry Jan Reedy <tjreedy@udel.edu>
Thu, 27 Feb 2014 23:47:49 +0000 (18:47 -0500)
committerTerry Jan Reedy <tjreedy@udel.edu>
Thu, 27 Feb 2014 23:47:49 +0000 (18:47 -0500)
Code patch by Serhiy Storchaka

Lib/idlelib/idle_test/README.txt
Lib/idlelib/idle_test/test_formatparagraph.py
Lib/idlelib/idle_test/test_idlehistory.py
Lib/idlelib/idle_test/test_searchengine.py
Lib/idlelib/idle_test/test_text.py
Lib/test/test_idle.py

index d0dde2505cad3e162d5bc2e2690fbff9218dc633..6b924831930fda5e64054e54be2cb30d524ca33e 100644 (file)
@@ -41,9 +41,10 @@ idle class. For the benefit of buildbot machines that do not have a graphics
 screen, gui tests must be 'guarded' by "requires('gui')" in a setUp
 function or method. This will typically be setUpClass.
 
-All gui objects must be destroyed by the end of the test, perhaps in a tearDown
-function. Creating the Tk root directly in a setUp allows a reference to be saved
-so it can be properly destroyed in the corresponding tearDown. 
+To avoid interfering with other gui tests, all gui objects must be destroyed
+and deleted by the end of the test.  If a widget, such as a Tk root, is created
+in a setUpX function, destroy it in the corresponding tearDownX.  For module
+and class attributes, also delete the widget.
 ---
     @classmethod
     def setUpClass(cls):
@@ -53,6 +54,7 @@ so it can be properly destroyed in the corresponding tearDown.
     @classmethod
     def tearDownClass(cls):
         cls.root.destroy()
+        del cls.root
 ---
 
 Support.requires('gui') returns true if it is either called in a main module
index 818c9d4b674b3be219e440bc25a693141372162c..f4a7c2d6803fe0e9b228245c9f5466a5394aab54 100644 (file)
@@ -277,6 +277,9 @@ class FormatEventTest(unittest.TestCase):
     @classmethod
     def tearDownClass(cls):
         cls.root.destroy()
+        del cls.root
+        del cls.text
+        del cls.formatter
 
     def test_short_line(self):
         self.text.insert('1.0', "Short line\n")
index b27db9191d0b188c8db8f46f53231c47b6231aa2..d7c3d7039388f51d8d36e9a4b5fdb08b563d94c8 100644 (file)
@@ -80,6 +80,7 @@ class FetchTest(unittest.TestCase):
     @classmethod
     def tearDownClass(cls):
         cls.root.destroy()
+        del cls.root
 
     def fetch_test(self, reverse, line, prefix, index, *, bell=False):
         # Perform one fetch as invoked by Alt-N or Alt-P
index fdf38bd0ba2aa5e3ec23e7eba24ba3bd9a6b4c11..129a5a35a68636587ca3dd027e94dfe0f8fe2ff1 100644 (file)
@@ -64,6 +64,7 @@ class GetSelectionTest(unittest.TestCase):
 ##    @classmethod
 ##    def tearDownClass(cls):
 ##        cls.root.destroy()
+##        del cls.root
 
     def test_get_selection(self):
         # text = Text(master=self.root)
@@ -219,6 +220,7 @@ class SearchTest(unittest.TestCase):
 ##    @classmethod
 ##    def tearDownClass(cls):
 ##        cls.root.destroy()
+##        del cls.root
 
     def test_search(self):
         Equal = self.assertEqual
@@ -261,6 +263,7 @@ class ForwardBackwardTest(unittest.TestCase):
 ##    @classmethod
 ##    def tearDownClass(cls):
 ##        cls.root.destroy()
+##        del cls.root
 
     @classmethod
     def setUpClass(cls):
index 367bf38498636364bcab203723f45e93cfbe7d68..5ac2fd74e3e9881995f5fae5b20109995c77741c 100644 (file)
@@ -221,6 +221,7 @@ class TkTextTest(TextTest, unittest.TestCase):
     @classmethod
     def tearDownClass(cls):
         cls.root.destroy()
+        del cls.root
 
 
 if __name__ == '__main__':
index 819151eda4af40ed2b2b769ff191156713565152..7770ee59e42654c28ea61661bfae48e87ae3e499 100644 (file)
@@ -14,6 +14,7 @@ if use_resources and 'gui' in use_resources:
     try:
         root = tk.Tk()
         root.destroy()
+        del root
     except tk.TclError:
         while 'gui' in use_resources:
             use_resources.remove('gui')