blob: c295cf4b13b0774e36451305f2ded5d2e3e4a305 [file] [log] [blame]
Brett Cannon066f3922003-05-07 22:02:17 +00001\section{\module{test} ---
2 Regression tests package for Python}
3
4\declaremodule{standard}{test}
5
6\sectionauthor{Brett Cannon}{brett@python.org}
7
8
9\modulesynopsis{Regression tests package containing the testing suite for
10Python.}
11
12
13The \module{test} package contains all regression tests for Python as well as
14the modules \module{test_support} and \module{regrtest.py}.
15\module{test_support} is used to enhance your tests while \module{regrtest.py}
16drives the testing suite.
17
18Each module in the \module{test} package whose name starts with
19\code{'test_'} is a testing suite for a specific module or feature.
20All new tests should be written using the \module{unittest} module; using
21\module{unittest} is not required but makes the tests more flexible and
22maintenance of the tests easier.
23Some older tests are written to use \module{doctest} and a ``traditional''
24testing style; these styles of tests will not be covered.
25
26\begin{seealso}
27\seemodule{unittest}{Writing PyUnit regression tests.}
28\seemodule{doctest}{Tests embedded in documentation strings.}
29\end{seealso}
30
31
32\subsection{test_support \label{test_support-docs}}
33
34The \module{test_support} module contains functions for assisting with writing
35regression tests.
36
37
38The \module{test_support} module defines the following exceptions:
39
40\begin{excdesc}{TestFailed}
41Exception to be raised when a test fails.
42\end{excdesc}
43
44\begin{excdesc}{TestSkipped}
45Subclass of \exception{TestFailed}.
46Raised when a test is skipped.
47This occurs when a needed resource (such as a network connection) is not
48available at the time of testing.
49\end{excdesc}
50
51\begin{excdesc}{ResourceDenied}
52Subclass of \exception{TestSkipped}.
53Raised when a resource (such as a network connection) is not available.
54Raised by the \function{requires} function.
55\end{excdesc}
56
57
58The \module{test_support} module defines the following constants:
59
60\begin{datadesc}{verbose}
61\constant{True} when verbose output is enabled.
62Should be checked when more detailed information is desired about a running
63test.
64\var{verbose} is set by \module{regrtest.py}.
65\end{datadesc}
66
67\begin{datadesc}{have_unicode}
68\constant{True} when Unicode support is available.
69\end{datadesc}
70
71\begin{datadesc}{is_jython}
72\constant{True} if the running interpreter is Jython.
73\end{datadesc}
74
75\begin{datadesc}{TESTFN}
76Set to the path that a temporary file may be created at.
77Any temporary that is created should be closed and unlinked (removed).
78\end{datadesc}
79
80
81The \module{test_support} module defines the following functions:
82
83\begin{funcdesc}{forget}{module_name}
84Removes the module named \var{module_name} from \module{sys.modules} and deletes
85any byte-compiled files of the module.
86\end{funcdesc}
87
88\begin{funcdesc}{is_resource_enabled}{resource}
89Returns \constant{True} if \var{resource} is enabled and available.
90The list of available resources is only set when \module{regrtest.py} is
91executing the tests.
92\end{funcdest}
93
94\begin{funcdesc}{requires}{resource\optional{, msg}}
95Raises \exception{ResourceDenied} if \var{resource} is not available.
96\var{msg} is the argument to \exception{ResourceDenied} if it is raised.
97Always returns true if called by a function whose \var{__name__} is
98\code{"__main__"}.
99Used when tests are executed by \module{regrtest.py}.
100\end{funcdesc}
101
102\begin{funcdesc}{findfile}{filename}
103Return the path to the file named \var{filename}.
104If no match is found \var{filename} is returned.
105This does not equal a failure since it could be the path to the file.
106\end{funcdesc}
107
108\begin{funcdesc}{run_unittest}{*classes}
109Execute \class{unittest.TestCase} subclasses passed to the function.
110The function scans the classes for methods starting with the name
111\code{"test_"} and executes the tests individually.
112This is the preferred way to execute tests.
113\end{datadesc}
114
115\begin{funcdesc}{run_suite}{suite\optional{, testclass=None}}
116Execute the \class{unittest.TestSuite} instance, \var{suite}.
117The optional argument \var{testclass} accepts one of the test classes in the
118suite so as to print out more detailed information on where the testing suite
119originated from.
120\end{funcdesc}
121
122
123
124\subsection{Writing Unit Tests for the \module{test} package \label{writing-tests}}
125
126It is preferred that tests for the \module{test} package use the
127\module{unittest} module and follow a few guidelines.
128One is to have the name of all the test methods start with \code{"test_"} as
129well as the module's name.
130This is needed so that the methods are recognized by the test driver as
131test methods.
132Also, no documentation string for the method should be included.
133A comment (such as
134\var{# Tests function returns only True or False}) should be used to provide
135documentation for test methods.
136This is done because documentation strings get printed out if they exist and
137thus what test is being run is not stated.
138
139A basic boilerplate is often used:
140
141\begin{verbatim}
142import unittest
143from test import test_support
144
145class MyTestCase1(unittest.TestCase):
146
147 # Only use setUp() and tearDown() if necessary
148
149 def setUp(self):
150 ... code to execute in preparation for tests ...
151
152 def tearDown(self):
153 ... code to execute to clean up after tests ...
154
155 def test_feature_one(self):
156 # Test feature one.
157 ... testing code ...
158
159 def test_feature_two(self):
160 # Test feature two.
161 ... testing code ...
162
163 ... more test methods ...
164
165class MyTestCase2(unittest.TestCase):
166 ... same structure as MyTestCase1 ...
167
168... more test classes ...
169
170def test_main():
171 test_support.run_unittest(MyTestCase1,
172 MyTestCase2,
173 ... list other tests ...
174 )
175
176if __name__ == '__main__':
177 test_main()
178\end{verbatim}
179
180This boilerplate code allows the testing suite to be run by \module{regrtest.py}
181as well as on its own as a script.
182
183The goal for regression testing is to try to break code.
184This leads to a few guidelines to be followed:
185
186\begin{itemize}
187\item The testing suite should exercise all classes, functions, and
188 constants.
189 This includes not just the external API that is to be presented to the
190 outside world but also "private" code.
191\item Whitebox testing (examining the code being tested when the tests are
192 being written) is preferred.
193 Blackbox testing (testing only the published user interface) is not
194 complete enough to make sure all boundary and edge cases are tested.
195\item Make sure all possible values are tested including invalid ones.
196 This makes sure that not only all valid values are acceptable but also
197 that improper values are handled correctly.
198\item Exhaust as many code paths as possible.
199 Test where branching occurs and thus tailor input to make sure as many
200 different paths through the code are taken.
201\item Add an explicit test for any bugs discovered for the tested code.
202 This will make sure that the error does not crop up again if the code is
203 changed in the future.
204\item Make sure to clean up after your tests (such as close and remove all
205 temporary files).
206\item Import as few modules as possible and do it as soon as possible.
207 This minimizes external dependencies of tests and also minimizes possible
208 anomalous behavior from side-effects of importing a module.
209\item Try to maximize code reuse.
210 On occasion tests will vary by something as small as what type of input
211 they take.
212 Minimize code duplication by subclassing a basic test class with a class
213 that specifies the input:
214\begin{verbatim}
215class TestFuncAcceptsSequences(unittest.TestCase):
216
217 func = mySuperWhammyFunction
218
219 def test_func(self):
220 self.func(self.arg)
221
222class AcceptLists(TestFuncAcceptsSequences):
223 arg = [1,2,3]
224
225class AcceptStrings(TestFuncAcceptsSequences):
226 arg = 'abc'
227
228class AcceptTuples(TestFuncAcceptsSequences):
229 arg = (1,2,3)
230\end{verbatim}
231\end{itemize}
232
233\begin{seealso}
234\seetitle{Test Driven Development}{A book by Kent Beck on writing tests before
235code}
236\end{seealso}
237
238
239
240\subsection{Running tests Using \module{regrtest.py} \label{regrtest}}
241
242\module{regrtest.py} is the script used to drive Python's regression test
243suite.
244Running the script by itself automatically starts running all
245regression tests in the \module{test} package.
246It does this by finding all modules in the package whose name starts with
247\code{test_}, importing them, and executing the function \function{test_main}
248if present.
249The names of tests to execute may also be passed to the script.
250Specifying a single regression test (\code{python regrtest.py test_spam.py})
251will minimize output and only print whether the test passed or failed and thus
252minimize output.
253
254Running \module{regrtest.py} directly allows what resources are
255available for tests to use to be set.
256You do this by using the \code{-u} command-line option.
257Run \code{python regrtest.py -uall} to turn on all resources;
258specifying \code{all} as an option for \code{-u} enables all possible
259resources.
260If all but one resource is desired (a more common case), a
261comma-separated list of resources that are not desired may be listed after
262\code{all}.
263The command \code{python regrtest.py -uall,-audio,-largefile} will run
264\module{regrtest.py} with all resources except the audio and largefile
265resources.
266For a list of all resources and more command-line options, run
267\code{python regrtest.py -h}.
268
269Some other ways to execute the regression tests depend on what platform the
270tests are being executed on.
271On \UNIX{}, you can run \code{make test} at the top-level directory
272where Python was built.
273On Windows, executing \code{rt.bat} from your PCBuild directory will run all
274regression tests.
275