blob: d6ff734b8ba16c948bbdbc4036d36c17ca98e194 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`test` --- Regression tests package for Python
2===================================================
3
4.. module:: test
5 :synopsis: Regression tests package containing the testing suite for Python.
6.. sectionauthor:: Brett Cannon <brett@python.org>
7
Brett Cannon3a4e50c2010-07-23 11:31:31 +00008.. note::
9 The :mod:`test` package is meant for internal use by Python only. It is
10 documented for the benefit of the core developers of Python. Any use of
11 this package outside of Python's standard library is discouraged as code
12 mentioned here can change or be removed without notice between releases of
13 Python.
14
Georg Brandl116aa622007-08-15 14:28:22 +000015
16The :mod:`test` package contains all regression tests for Python as well as the
Nick Coghlan47384702009-04-22 16:13:36 +000017modules :mod:`test.support` and :mod:`test.regrtest`.
18:mod:`test.support` is used to enhance your tests while
Georg Brandl116aa622007-08-15 14:28:22 +000019:mod:`test.regrtest` drives the testing suite.
20
21Each module in the :mod:`test` package whose name starts with ``test_`` is a
22testing suite for a specific module or feature. All new tests should be written
23using the :mod:`unittest` or :mod:`doctest` module. Some older tests are
24written using a "traditional" testing style that compares output printed to
25``sys.stdout``; this style of test is considered deprecated.
26
27
28.. seealso::
29
30 Module :mod:`unittest`
31 Writing PyUnit regression tests.
32
33 Module :mod:`doctest`
34 Tests embedded in documentation strings.
35
36
37.. _writing-tests:
38
39Writing Unit Tests for the :mod:`test` package
40----------------------------------------------
41
Georg Brandl116aa622007-08-15 14:28:22 +000042It is preferred that tests that use the :mod:`unittest` module follow a few
43guidelines. One is to name the test module by starting it with ``test_`` and end
44it with the name of the module being tested. The test methods in the test module
45should start with ``test_`` and end with a description of what the method is
46testing. This is needed so that the methods are recognized by the test driver as
47test methods. Also, no documentation string for the method should be included. A
48comment (such as ``# Tests function returns only True or False``) should be used
49to provide documentation for test methods. This is done because documentation
50strings get printed out if they exist and thus what test is being run is not
51stated.
52
53A basic boilerplate is often used::
54
55 import unittest
Nick Coghlan47384702009-04-22 16:13:36 +000056 from test import support
Georg Brandl116aa622007-08-15 14:28:22 +000057
58 class MyTestCase1(unittest.TestCase):
59
60 # Only use setUp() and tearDown() if necessary
61
62 def setUp(self):
63 ... code to execute in preparation for tests ...
64
65 def tearDown(self):
66 ... code to execute to clean up after tests ...
67
68 def test_feature_one(self):
69 # Test feature one.
70 ... testing code ...
71
72 def test_feature_two(self):
73 # Test feature two.
74 ... testing code ...
75
76 ... more test methods ...
77
78 class MyTestCase2(unittest.TestCase):
79 ... same structure as MyTestCase1 ...
80
81 ... more test classes ...
82
83 def test_main():
Nick Coghlan47384702009-04-22 16:13:36 +000084 support.run_unittest(MyTestCase1,
Georg Brandl116aa622007-08-15 14:28:22 +000085 MyTestCase2,
86 ... list other tests ...
87 )
88
89 if __name__ == '__main__':
90 test_main()
91
92This boilerplate code allows the testing suite to be run by :mod:`test.regrtest`
93as well as on its own as a script.
94
95The goal for regression testing is to try to break code. This leads to a few
96guidelines to be followed:
97
98* The testing suite should exercise all classes, functions, and constants. This
Florent Xicluna53b506be2010-03-18 20:00:57 +000099 includes not just the external API that is to be presented to the outside
100 world but also "private" code.
Georg Brandl116aa622007-08-15 14:28:22 +0000101
102* Whitebox testing (examining the code being tested when the tests are being
103 written) is preferred. Blackbox testing (testing only the published user
Florent Xicluna53b506be2010-03-18 20:00:57 +0000104 interface) is not complete enough to make sure all boundary and edge cases
105 are tested.
Georg Brandl116aa622007-08-15 14:28:22 +0000106
107* Make sure all possible values are tested including invalid ones. This makes
Florent Xicluna53b506be2010-03-18 20:00:57 +0000108 sure that not only all valid values are acceptable but also that improper
109 values are handled correctly.
Georg Brandl116aa622007-08-15 14:28:22 +0000110
111* Exhaust as many code paths as possible. Test where branching occurs and thus
112 tailor input to make sure as many different paths through the code are taken.
113
114* Add an explicit test for any bugs discovered for the tested code. This will
115 make sure that the error does not crop up again if the code is changed in the
116 future.
117
118* Make sure to clean up after your tests (such as close and remove all temporary
119 files).
120
121* If a test is dependent on a specific condition of the operating system then
122 verify the condition already exists before attempting the test.
123
124* Import as few modules as possible and do it as soon as possible. This
125 minimizes external dependencies of tests and also minimizes possible anomalous
126 behavior from side-effects of importing a module.
127
128* Try to maximize code reuse. On occasion, tests will vary by something as small
Florent Xicluna53b506be2010-03-18 20:00:57 +0000129 as what type of input is used. Minimize code duplication by subclassing a
130 basic test class with a class that specifies the input::
Georg Brandl116aa622007-08-15 14:28:22 +0000131
132 class TestFuncAcceptsSequences(unittest.TestCase):
133
134 func = mySuperWhammyFunction
135
136 def test_func(self):
137 self.func(self.arg)
138
139 class AcceptLists(TestFuncAcceptsSequences):
Florent Xiclunab14930c2010-03-13 15:26:44 +0000140 arg = [1, 2, 3]
Georg Brandl116aa622007-08-15 14:28:22 +0000141
142 class AcceptStrings(TestFuncAcceptsSequences):
143 arg = 'abc'
144
145 class AcceptTuples(TestFuncAcceptsSequences):
Florent Xiclunab14930c2010-03-13 15:26:44 +0000146 arg = (1, 2, 3)
Georg Brandl116aa622007-08-15 14:28:22 +0000147
148
149.. seealso::
150
151 Test Driven Development
152 A book by Kent Beck on writing tests before code.
153
154
155.. _regrtest:
156
157Running tests using :mod:`test.regrtest`
158----------------------------------------
159
160:mod:`test.regrtest` can be used as a script to drive Python's regression test
161suite. Running the script by itself automatically starts running all regression
162tests in the :mod:`test` package. It does this by finding all modules in the
163package whose name starts with ``test_``, importing them, and executing the
Florent Xicluna53b506be2010-03-18 20:00:57 +0000164function :func:`test_main` if present. The names of tests to execute may also
165be passed to the script. Specifying a single regression test (:program:`python
166regrtest.py` :option:`test_spam.py`) will minimize output and only print
167whether the test passed or failed and thus minimize output.
Georg Brandl116aa622007-08-15 14:28:22 +0000168
169Running :mod:`test.regrtest` directly allows what resources are available for
170tests to use to be set. You do this by using the :option:`-u` command-line
171option. Run :program:`python regrtest.py` :option:`-uall` to turn on all
172resources; specifying :option:`all` as an option for :option:`-u` enables all
173possible resources. If all but one resource is desired (a more common case), a
174comma-separated list of resources that are not desired may be listed after
175:option:`all`. The command :program:`python regrtest.py`
176:option:`-uall,-audio,-largefile` will run :mod:`test.regrtest` with all
177resources except the :option:`audio` and :option:`largefile` resources. For a
178list of all resources and more command-line options, run :program:`python
179regrtest.py` :option:`-h`.
180
181Some other ways to execute the regression tests depend on what platform the
Florent Xicluna53b506be2010-03-18 20:00:57 +0000182tests are being executed on. On Unix, you can run :program:`make`
183:option:`test` at the top-level directory where Python was built. On Windows,
184executing :program:`rt.bat` from your :file:`PCBuild` directory will run all
185regression tests.
Georg Brandl116aa622007-08-15 14:28:22 +0000186
187
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000188:mod:`test.support` --- Utility functions for tests
Georg Brandl7f01a132009-09-16 15:58:14 +0000189===================================================
Georg Brandl116aa622007-08-15 14:28:22 +0000190
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000191.. module:: test.support
Georg Brandl116aa622007-08-15 14:28:22 +0000192 :synopsis: Support for Python regression tests.
193
194
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000195The :mod:`test.support` module provides support for Python's regression
Georg Brandl116aa622007-08-15 14:28:22 +0000196tests.
197
198This module defines the following exceptions:
199
200
201.. exception:: TestFailed
202
203 Exception to be raised when a test fails. This is deprecated in favor of
204 :mod:`unittest`\ -based tests and :class:`unittest.TestCase`'s assertion
205 methods.
206
207
Georg Brandl116aa622007-08-15 14:28:22 +0000208.. exception:: ResourceDenied
209
Florent Xicluna53b506be2010-03-18 20:00:57 +0000210 Subclass of :exc:`unittest.SkipTest`. Raised when a resource (such as a
211 network connection) is not available. Raised by the :func:`requires`
212 function.
Georg Brandl116aa622007-08-15 14:28:22 +0000213
Nick Coghlanb1304932008-07-13 12:25:08 +0000214The :mod:`test.support` module defines the following constants:
Georg Brandl116aa622007-08-15 14:28:22 +0000215
216
217.. data:: verbose
218
219 :const:`True` when verbose output is enabled. Should be checked when more
220 detailed information is desired about a running test. *verbose* is set by
221 :mod:`test.regrtest`.
222
223
Georg Brandl116aa622007-08-15 14:28:22 +0000224.. data:: is_jython
225
226 :const:`True` if the running interpreter is Jython.
227
228
229.. data:: TESTFN
230
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000231 Set to a name that is safe to use as the name of a temporary file. Any
232 temporary file that is created should be closed and unlinked (removed).
Georg Brandl116aa622007-08-15 14:28:22 +0000233
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000234The :mod:`test.support` module defines the following functions:
Georg Brandl116aa622007-08-15 14:28:22 +0000235
236
237.. function:: forget(module_name)
238
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000239 Remove the module named *module_name* from ``sys.modules`` and delete any
Georg Brandl116aa622007-08-15 14:28:22 +0000240 byte-compiled files of the module.
241
242
243.. function:: is_resource_enabled(resource)
244
Florent Xiclunab14930c2010-03-13 15:26:44 +0000245 Return :const:`True` if *resource* is enabled and available. The list of
Georg Brandl116aa622007-08-15 14:28:22 +0000246 available resources is only set when :mod:`test.regrtest` is executing the
247 tests.
248
249
Georg Brandl7f01a132009-09-16 15:58:14 +0000250.. function:: requires(resource, msg=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000251
Florent Xiclunab14930c2010-03-13 15:26:44 +0000252 Raise :exc:`ResourceDenied` if *resource* is not available. *msg* is the
Florent Xicluna53b506be2010-03-18 20:00:57 +0000253 argument to :exc:`ResourceDenied` if it is raised. Always returns
254 :const:`True` if called by a function whose ``__name__`` is ``'__main__'``.
255 Used when tests are executed by :mod:`test.regrtest`.
Georg Brandl116aa622007-08-15 14:28:22 +0000256
257
258.. function:: findfile(filename)
259
Florent Xicluna53b506be2010-03-18 20:00:57 +0000260 Return the path to the file named *filename*. If no match is found
261 *filename* is returned. This does not equal a failure since it could be the
262 path to the file.
Georg Brandl116aa622007-08-15 14:28:22 +0000263
264
265.. function:: run_unittest(*classes)
266
267 Execute :class:`unittest.TestCase` subclasses passed to the function. The
Florent Xicluna53b506be2010-03-18 20:00:57 +0000268 function scans the classes for methods starting with the prefix ``test_``
269 and executes the tests individually.
Georg Brandl116aa622007-08-15 14:28:22 +0000270
271 It is also legal to pass strings as parameters; these should be keys in
272 ``sys.modules``. Each associated module will be scanned by
273 ``unittest.TestLoader.loadTestsFromModule()``. This is usually seen in the
274 following :func:`test_main` function::
275
276 def test_main():
Nick Coghlan47384702009-04-22 16:13:36 +0000277 support.run_unittest(__name__)
Georg Brandl116aa622007-08-15 14:28:22 +0000278
279 This will run all tests defined in the named module.
280
Georg Brandl116aa622007-08-15 14:28:22 +0000281
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000282.. function:: check_warnings(*filters, quiet=True)
Thomas Woutersed03b412007-08-28 21:37:11 +0000283
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000284 A convenience wrapper for :func:`warnings.catch_warnings()` that makes it
285 easier to test that a warning was correctly raised. It is approximately
286 equivalent to calling ``warnings.catch_warnings(record=True)`` with
287 :meth:`warnings.simplefilter` set to ``always`` and with the option to
288 automatically validate the results that are recorded.
Benjamin Petersonfcf5d632008-10-16 23:24:44 +0000289
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000290 ``check_warnings`` accepts 2-tuples of the form ``("message regexp",
291 WarningCategory)`` as positional arguments. If one or more *filters* are
292 provided, or if the optional keyword argument *quiet* is :const:`False`,
293 it checks to make sure the warnings are as expected: each specified filter
294 must match at least one of the warnings raised by the enclosed code or the
295 test fails, and if any warnings are raised that do not match any of the
296 specified filters the test fails. To disable the first of these checks,
297 set *quiet* to :const:`True`.
Florent Xiclunab14930c2010-03-13 15:26:44 +0000298
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000299 If no arguments are specified, it defaults to::
Florent Xiclunab14930c2010-03-13 15:26:44 +0000300
Florent Xicluna53b506be2010-03-18 20:00:57 +0000301 check_warnings(("", Warning), quiet=True)
Florent Xiclunab14930c2010-03-13 15:26:44 +0000302
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000303 In this case all warnings are caught and no errors are raised.
Benjamin Petersonfcf5d632008-10-16 23:24:44 +0000304
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000305 On entry to the context manager, a :class:`WarningRecorder` instance is
306 returned. The underlying warnings list from
307 :func:`~warnings.catch_warnings` is available via the recorder object's
308 :attr:`warnings` attribute. As a convenience, the attributes of the object
309 representing the most recent warning can also be accessed directly through
310 the recorder object (see example below). If no warning has been raised,
311 then any of the attributes that would otherwise be expected on an object
312 representing a warning will return :const:`None`.
Thomas Woutersed03b412007-08-28 21:37:11 +0000313
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000314 The recorder object also has a :meth:`reset` method, which clears the
315 warnings list.
Thomas Woutersed03b412007-08-28 21:37:11 +0000316
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000317 The context manager is designed to be used like this::
Florent Xiclunab14930c2010-03-13 15:26:44 +0000318
319 with check_warnings(("assertion is always true", SyntaxWarning),
320 ("", UserWarning)):
321 exec('assert(False, "Hey!")')
322 warnings.warn(UserWarning("Hide me!"))
323
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000324 In this case if either warning was not raised, or some other warning was
325 raised, :func:`check_warnings` would raise an error.
326
327 When a test needs to look more deeply into the warnings, rather than
328 just checking whether or not they occurred, code like this can be used::
329
Florent Xiclunab14930c2010-03-13 15:26:44 +0000330 with check_warnings(quiet=True) as w:
Thomas Woutersed03b412007-08-28 21:37:11 +0000331 warnings.warn("foo")
Florent Xiclunab14930c2010-03-13 15:26:44 +0000332 assert str(w.args[0]) == "foo"
Nick Coghlanb1304932008-07-13 12:25:08 +0000333 warnings.warn("bar")
Florent Xiclunab14930c2010-03-13 15:26:44 +0000334 assert str(w.args[0]) == "bar"
335 assert str(w.warnings[0].args[0]) == "foo"
336 assert str(w.warnings[1].args[0]) == "bar"
Benjamin Petersonfcf5d632008-10-16 23:24:44 +0000337 w.reset()
338 assert len(w.warnings) == 0
Thomas Woutersed03b412007-08-28 21:37:11 +0000339
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000340
341 Here all warnings will be caught, and the test code tests the captured
342 warnings directly.
343
Ezio Melottif8754a62010-03-21 07:16:43 +0000344 .. versionchanged:: 3.2
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000345 New optional arguments *filters* and *quiet*.
Florent Xiclunab14930c2010-03-13 15:26:44 +0000346
Thomas Woutersed03b412007-08-28 21:37:11 +0000347
348.. function:: captured_stdout()
349
Senthil Kumaranaf1d4342010-05-18 03:26:11 +0000350 This is a context manager that runs the :keyword:`with` statement body using
Thomas Woutersed03b412007-08-28 21:37:11 +0000351 a :class:`StringIO.StringIO` object as sys.stdout. That object can be
Guido van Rossum7736b5b2008-01-15 21:44:53 +0000352 retrieved using the ``as`` clause of the :keyword:`with` statement.
Thomas Woutersed03b412007-08-28 21:37:11 +0000353
354 Example use::
355
356 with captured_stdout() as s:
Collin Winterc79461b2007-09-01 23:34:30 +0000357 print("hello")
Thomas Woutersed03b412007-08-28 21:37:11 +0000358 assert s.getvalue() == "hello"
359
Thomas Woutersed03b412007-08-28 21:37:11 +0000360
Nick Coghlanfce769e2009-04-11 14:30:59 +0000361.. function:: import_module(name, deprecated=False)
362
363 This function imports and returns the named module. Unlike a normal
364 import, this function raises :exc:`unittest.SkipTest` if the module
365 cannot be imported.
366
367 Module and package deprecation messages are suppressed during this import
368 if *deprecated* is :const:`True`.
369
370 .. versionadded:: 3.1
371
372
Nick Coghlan47384702009-04-22 16:13:36 +0000373.. function:: import_fresh_module(name, fresh=(), blocked=(), deprecated=False)
Nick Coghlanfce769e2009-04-11 14:30:59 +0000374
Nick Coghlan47384702009-04-22 16:13:36 +0000375 This function imports and returns a fresh copy of the named Python module
376 by removing the named module from ``sys.modules`` before doing the import.
377 Note that unlike :func:`reload`, the original module is not affected by
378 this operation.
379
380 *fresh* is an iterable of additional module names that are also removed
381 from the ``sys.modules`` cache before doing the import.
382
383 *blocked* is an iterable of module names that are replaced with :const:`0`
384 in the module cache during the import to ensure that attempts to import
385 them raise :exc:`ImportError`.
386
387 The named module and any modules named in the *fresh* and *blocked*
388 parameters are saved before starting the import and then reinserted into
389 ``sys.modules`` when the fresh import is complete.
Nick Coghlanfce769e2009-04-11 14:30:59 +0000390
391 Module and package deprecation messages are suppressed during this import
392 if *deprecated* is :const:`True`.
393
Nick Coghlan47384702009-04-22 16:13:36 +0000394 This function will raise :exc:`unittest.SkipTest` is the named module
395 cannot be imported.
396
397 Example use::
398
399 # Get copies of the warnings module for testing without
400 # affecting the version being used by the rest of the test suite
401 # One copy uses the C implementation, the other is forced to use
402 # the pure Python fallback implementation
403 py_warnings = import_fresh_module('warnings', blocked=['_warnings'])
404 c_warnings = import_fresh_module('warnings', fresh=['_warnings'])
405
Nick Coghlanfce769e2009-04-11 14:30:59 +0000406 .. versionadded:: 3.1
407
408
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000409The :mod:`test.support` module defines the following classes:
Georg Brandl116aa622007-08-15 14:28:22 +0000410
Georg Brandl7f01a132009-09-16 15:58:14 +0000411.. class:: TransientResource(exc, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000412
413 Instances are a context manager that raises :exc:`ResourceDenied` if the
414 specified exception type is raised. Any keyword arguments are treated as
415 attribute/value pairs to be compared against any exception raised within the
416 :keyword:`with` statement. Only if all pairs match properly against
417 attributes on the exception is :exc:`ResourceDenied` raised.
418
Georg Brandl116aa622007-08-15 14:28:22 +0000419
420.. class:: EnvironmentVarGuard()
421
Florent Xicluna53b506be2010-03-18 20:00:57 +0000422 Class used to temporarily set or unset environment variables. Instances can
423 be used as a context manager and have a complete dictionary interface for
424 querying/modifying the underlying ``os.environ``. After exit from the
425 context manager all changes to environment variables done through this
426 instance will be rolled back.
Georg Brandl116aa622007-08-15 14:28:22 +0000427
Georg Brandl705d9d52009-05-05 09:29:50 +0000428 .. versionchanged:: 3.1
Walter Dörwald155374d2009-05-01 19:58:58 +0000429 Added dictionary interface.
Georg Brandl116aa622007-08-15 14:28:22 +0000430
431.. method:: EnvironmentVarGuard.set(envvar, value)
432
Florent Xicluna53b506be2010-03-18 20:00:57 +0000433 Temporarily set the environment variable ``envvar`` to the value of
434 ``value``.
Georg Brandl116aa622007-08-15 14:28:22 +0000435
436
437.. method:: EnvironmentVarGuard.unset(envvar)
438
439 Temporarily unset the environment variable ``envvar``.
Nick Coghlanb1304932008-07-13 12:25:08 +0000440
Walter Dörwald155374d2009-05-01 19:58:58 +0000441
Benjamin Petersonfcf5d632008-10-16 23:24:44 +0000442.. class:: WarningsRecorder()
443
444 Class used to record warnings for unit tests. See documentation of
445 :func:`check_warnings` above for more details.