README.txt 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. README FOR IDLE TESTS IN IDLELIB.IDLE_TEST
  2. 0. Quick Start
  3. Automated unit tests were added in 3.3 for Python 3.x.
  4. To run the tests from a command line:
  5. python -m test.test_idle
  6. Human-mediated tests were added later in 3.4.
  7. python -m idlelib.idle_test.htest
  8. 1. Test Files
  9. The idle directory, idlelib, has over 60 xyz.py files. The idle_test
  10. subdirectory contains test_xyz.py for each implementation file xyz.py.
  11. To add a test for abc.py, open idle_test/template.py and immediately
  12. Save As test_abc.py. Insert 'abc' on the first line, and replace
  13. 'zzdummy' with 'abc.
  14. Remove the imports of requires and tkinter if not needed. Otherwise,
  15. add to the tkinter imports as needed.
  16. Add a prefix to 'Test' for the initial test class. The template class
  17. contains code needed or possibly needed for gui tests. See the next
  18. section if doing gui tests. If not, and not needed for further classes,
  19. this code can be removed.
  20. Add the following at the end of abc.py. If an htest was added first,
  21. insert the import and main lines before the htest lines.
  22. if __name__ == "__main__":
  23. from unittest import main
  24. main('idlelib.idle_test.test_abc', verbosity=2, exit=False)
  25. The ', exit=False' is only needed if an htest follows.
  26. 2. GUI Tests
  27. When run as part of the Python test suite, Idle GUI tests need to run
  28. test.support.requires('gui'). A test is a GUI test if it creates a
  29. tkinter.Tk root or master object either directly or indirectly by
  30. instantiating a tkinter or idle class. GUI tests cannot run in test
  31. processes that either have no graphical environment available or are not
  32. allowed to use it.
  33. To guard a module consisting entirely of GUI tests, start with
  34. from test.support import requires
  35. requires('gui')
  36. To guard a test class, put "requires('gui')" in its setUpClass function.
  37. The template.py file does this.
  38. To avoid interfering with other GUI tests, all GUI objects must be
  39. destroyed and deleted by the end of the test. The Tk root created in a
  40. setUpX function should be destroyed in the corresponding tearDownX and
  41. the module or class attribute deleted. Others widgets should descend
  42. from the single root and the attributes deleted BEFORE root is
  43. destroyed. See https://bugs.python.org/issue20567.
  44. @classmethod
  45. def setUpClass(cls):
  46. requires('gui')
  47. cls.root = tk.Tk()
  48. cls.text = tk.Text(root)
  49. @classmethod
  50. def tearDownClass(cls):
  51. del cls.text
  52. cls.root.update_idletasks()
  53. cls.root.destroy()
  54. del cls.root
  55. The update_idletasks call is sometimes needed to prevent the following
  56. warning either when running a test alone or as part of the test suite
  57. (#27196). It should not hurt if not needed.
  58. can't invoke "event" command: application has been destroyed
  59. ...
  60. "ttk::ThemeChanged"
  61. If a test creates instance 'e' of EditorWindow, call 'e._close()' before
  62. or as the first part of teardown. The effect of omitting this depends
  63. on the later shutdown. Then enable the after_cancel loop in the
  64. template. This prevents messages like the following.
  65. bgerror failed to handle background error.
  66. Original error: invalid command name "106096696timer_event"
  67. Error in bgerror: can't invoke "tk" command: application has been destroyed
  68. Requires('gui') causes the test(s) it guards to be skipped if any of
  69. these conditions are met:
  70. - The tests are being run by regrtest.py, and it was started without
  71. enabling the "gui" resource with the "-u" command line option.
  72. - The tests are being run on Windows by a service that is not allowed
  73. to interact with the graphical environment.
  74. - The tests are being run on Linux and X Windows is not available.
  75. - The tests are being run on Mac OSX in a process that cannot make a
  76. window manager connection.
  77. - tkinter.Tk cannot be successfully instantiated for some reason.
  78. - test.support.use_resources has been set by something other than
  79. regrtest.py and does not contain "gui".
  80. Tests of non-GUI operations should avoid creating tk widgets. Incidental
  81. uses of tk variables and messageboxes can be replaced by the mock
  82. classes in idle_test/mock_tk.py. The mock text handles some uses of the
  83. tk Text widget.
  84. 3. Running Unit Tests
  85. Assume that xyz.py and test_xyz.py both end with a unittest.main() call.
  86. Running either from an Idle editor runs all tests in the test_xyz file
  87. with the version of Python running Idle. Test output appears in the
  88. Shell window. The 'verbosity=2' option lists all test methods in the
  89. file, which is appropriate when developing tests. The 'exit=False'
  90. option is needed in xyx.py files when an htest follows.
  91. The following command lines also run all test methods, including
  92. GUI tests, in test_xyz.py. (Both '-m idlelib' and '-m idlelib.idle'
  93. start Idle and so cannot run tests.)
  94. python -m idlelib.xyz
  95. python -m idlelib.idle_test.test_xyz
  96. The following runs all idle_test/test_*.py tests interactively.
  97. >>> import unittest
  98. >>> unittest.main('idlelib.idle_test', verbosity=2)
  99. The following run all Idle tests at a command line. Option '-v' is the
  100. same as 'verbosity=2'.
  101. python -m unittest -v idlelib.idle_test
  102. python -m test -v -ugui test_idle
  103. python -m test.test_idle
  104. IDLE tests are 'discovered' by idlelib.idle_test.__init__.load_tests
  105. when this is imported into test.test_idle. Normally, neither file
  106. should be changed when working on individual test modules. The third
  107. command runs unittest indirectly through regrtest. The same happens when
  108. the entire test suite is run with 'python -m test'. So that command must
  109. work for buildbots to stay green. IDLE tests must not disturb the
  110. environment in a way that makes other tests fail (GH-62281).
  111. To test subsets of modules, see idlelib.idle_test.__init__. This
  112. can be used to find refleaks or possible sources of "Theme changed"
  113. tcl messages (GH-71383).
  114. To run an individual Testcase or test method, extend the dotted name
  115. given to unittest on the command line or use the test -m option. The
  116. latter allows use of other regrtest options. When using the latter,
  117. all components of the pattern must be present, but any can be replaced
  118. by '*'.
  119. python -m unittest -v idlelib.idle_test.test_xyz.Test_case.test_meth
  120. python -m test -m idlelib.idle_test.text_xyz.Test_case.test_meth test_idle
  121. The test suite can be run in an IDLE user process from Shell.
  122. >>> import test.autotest # Issue 25588, 2017/10/13, 3.6.4, 3.7.0a2.
  123. There are currently failures not usually present, and this does not
  124. work when run from the editor.
  125. 4. Human-mediated Tests
  126. Human-mediated tests are widget tests that cannot be automated but need
  127. human verification. They are contained in idlelib/idle_test/htest.py,
  128. which has instructions. (Some modules need an auxiliary function,
  129. identified with "# htest # on the header line.) The set is about
  130. complete, though some tests need improvement. To run all htests, run the
  131. htest file from an editor or from the command line with:
  132. python -m idlelib.idle_test.htest
  133. 5. Test Coverage
  134. Install the coverage package into your Python 3.6 site-packages
  135. directory. (Its exact location depends on the OS).
  136. > python3 -m pip install coverage
  137. (On Windows, replace 'python3 with 'py -3.6' or perhaps just 'python'.)
  138. The problem with running coverage with repository python is that
  139. coverage uses absolute imports for its submodules, hence it needs to be
  140. in a directory in sys.path. One solution: copy the package to the
  141. directory containing the cpython repository. Call it 'dev'. Then run
  142. coverage either directly or from a script in that directory so that
  143. 'dev' is prepended to sys.path.
  144. Either edit or add dev/.coveragerc so it looks something like this.
  145. ---
  146. # .coveragerc sets coverage options.
  147. [run]
  148. branch = True
  149. [report]
  150. # Regexes for lines to exclude from consideration
  151. exclude_lines =
  152. # Don't complain if non-runnable code isn't run:
  153. if 0:
  154. if __name__ == .__main__.:
  155. .*# htest #
  156. if not _utest:
  157. if _htest:
  158. ---
  159. The additions for IDLE are 'branch = True', to test coverage both ways,
  160. and the last three exclude lines, to exclude things peculiar to IDLE
  161. that are not executed during tests.
  162. A script like the following cover.bat (for Windows) is very handy.
  163. ---
  164. @echo off
  165. rem Usage: cover filename [test_ suffix] # proper case required by coverage
  166. rem filename without .py, 2nd parameter if test is not test_filename
  167. setlocal
  168. set py=f:\dev\3x\pcbuild\win32\python_d.exe
  169. set src=idlelib.%1
  170. if "%2" EQU "" set tst=f:/dev/3x/Lib/idlelib/idle_test/test_%1.py
  171. if "%2" NEQ "" set tst=f:/dev/ex/Lib/idlelib/idle_test/test_%2.py
  172. %py% -m coverage run --pylib --source=%src% %tst%
  173. %py% -m coverage report --show-missing
  174. %py% -m coverage html
  175. start htmlcov\3x_Lib_idlelib_%1_py.html
  176. rem Above opens new report; htmlcov\index.html displays report index
  177. ---
  178. The second parameter was added for tests of module x not named test_x.
  179. (There were several before modules were renamed, now only one is left.)