README.txt 5.49 KB
Newer Older
1 2
README FOR IDLE TESTS IN IDLELIB.IDLE_TEST

3 4
0. Quick Start

5
Automated unit tests were added in 3.3 for Python 3.x.
6 7 8 9
To run the tests from a command line:

python -m test.test_idle

10
Human-mediated tests were added later in 3.4.
11 12 13

python -m idlelib.idle_test.htest

14 15 16

1. Test Files

17
The idle directory, idlelib, has over 60 xyz.py files. The idle_test
18 19
subdirectory should contain a test_xyz.py for each, where 'xyz' is
lowercased even if xyz.py is not. Here is a possible template, with the
20
blanks after '.' and 'as', and before and after '_' to be filled in.
21

22
import unittest
23 24
from test.support import requires
import idlelib. as
25

26
class _Test(unittest.TestCase):
27 28 29 30

    def test_(self):

if __name__ == '__main__':
31 32
    unittest.main(verbosity=2)

33 34 35
Add the following at the end of xyy.py, with the appropriate name added
after 'test_'. Some files already have something like this for htest.
If so, insert the import and unittest.main lines before the htest lines.
36 37 38 39 40

if __name__ == "__main__":
    import unittest
    unittest.main('idlelib.idle_test.test_', verbosity=2, exit=False)

41 42


43 44
2. GUI Tests

45 46 47 48 49 50
When run as part of the Python test suite, Idle GUI tests need to run
test.support.requires('gui').  A test is a GUI test if it creates a
tkinter.Tk root or master object either directly or indirectly by
instantiating a tkinter or idle class.  GUI tests cannot run in test
processes that either have no graphical environment available or are not
allowed to use it.
51

52 53 54 55 56 57 58
To guard a module consisting entirely of GUI tests, start with

from test.support import requires
requires('gui')

To guard a test class, put "requires('gui')" in its setUpClass function.

59
To avoid interfering with other GUI tests, all GUI objects must be destroyed and
60 61 62 63
deleted by the end of the test.  The Tk root created in a setUpX function should
be destroyed in the corresponding tearDownX and the module or class attribute
deleted.  Others widgets should descend from the single root and the attributes
deleted BEFORE root is destroyed.  See https://bugs.python.org/issue20567.
64

65 66 67
    @classmethod
    def setUpClass(cls):
        requires('gui')
68
        cls.root = tk.Tk()
69
        cls.text = tk.Text(root)
70 71 72

    @classmethod
    def tearDownClass(cls):
73
        del cls.text
74
        cls.root.update_idletasks()
75
        cls.root.destroy()
76
        del cls.root
77

78 79 80 81 82
The update_idletasks call is sometimes needed to prevent the following warning
either when running a test alone or as part of the test suite (#27196).
  can't invoke "event" command: application has been destroyed
  ...
  "ttk::ThemeChanged"
83 84

Requires('gui') causes the test(s) it guards to be skipped if any of
85 86
these conditions are met:

87 88
 - The tests are being run by regrtest.py, and it was started without
   enabling the "gui" resource with the "-u" command line option.
89

90 91
 - The tests are being run on Windows by a service that is not allowed
   to interact with the graphical environment.
92 93 94

 - The tests are being run on Linux and X Windows is not available.

95 96
 - The tests are being run on Mac OSX in a process that cannot make a
   window manager connection.
97

98
 - tkinter.Tk cannot be successfully instantiated for some reason.
99

100 101
 - test.support.use_resources has been set by something other than
   regrtest.py and does not contain "gui".
102

103 104 105 106
Tests of non-GUI operations should avoid creating tk widgets. Incidental
uses of tk variables and messageboxes can be replaced by the mock
classes in idle_test/mock_tk.py. The mock text handles some uses of the
tk Text widget.
107 108


109
3. Running Unit Tests
110

111
Assume that xyz.py and test_xyz.py both end with a unittest.main() call.
112 113 114 115 116
Running either from an Idle editor runs all tests in the test_xyz file
with the version of Python running Idle.  Test output appears in the
Shell window.  The 'verbosity=2' option lists all test methods in the
file, which is appropriate when developing tests. The 'exit=False'
option is needed in xyx.py files when an htest follows.
117

118
The following command lines also run all test methods, including
119
GUI tests, in test_xyz.py. (Both '-m idlelib' and '-m idlelib.idle'
120
start Idle and so cannot run tests.)
121

122
python -m idlelib.xyz
123
python -m idlelib.idle_test.test_xyz
124

125 126 127 128 129
The following runs all idle_test/test_*.py tests interactively.

>>> import unittest
>>> unittest.main('idlelib.idle_test', verbosity=2)

130 131
The following run all Idle tests at a command line.  Option '-v' is the
same as 'verbosity=2'.
132 133

python -m unittest -v idlelib.idle_test
134
python -m test -v -ugui test_idle
135 136
python -m test.test_idle

137 138 139 140 141 142 143 144
The idle tests are 'discovered' by
idlelib.idle_test.__init__.load_tests, which is also imported into
test.test_idle. Normally, neither file should be changed when working on
individual test modules. The third command runs unittest indirectly
through regrtest. The same happens when the entire test suite is run
with 'python -m test'. So that command must work for buildbots to stay
green. Idle tests must not disturb the environment in a way that makes
other tests fail (issue 18081).
145

146 147
To run an individual Testcase or test method, extend the dotted name
given to unittest on the command line.
148

149
python -m unittest -v idlelib.idle_test.test_xyz.Test_case.test_meth
150 151 152 153


4. Human-mediated Tests

154 155 156 157 158 159
Human-mediated tests are widget tests that cannot be automated but need
human verification. They are contained in idlelib/idle_test/htest.py,
which has instructions.  (Some modules need an auxiliary function,
identified with "# htest # on the header line.)  The set is about
complete, though some tests need improvement. To run all htests, run the
htest file from an editor or from the command line with:
160 161

python -m idlelib.idle_test.htest