Each unit test tests one bit of functionality in the software. Unit tests are entirely automated and complete quickly. Unit tests for the entire system are gathered into one test suite, and may all be run in a single batch. The result of a unit test is simple: either it passes, or it doesn't. All this means you can test the entire system at any time without inconvenience, and quickly see what passes and what fails.
Unit Tests in the Twisted Philosophy
The Twisted development team adheres to the practice of Extreme Programming (XP), and the usage of unit tests is a cornerstone XP practice. Unit tests are a tool to give you increased confidence. You changed an algorithm -- did you break something? Run the unit tests. If a test fails, you know where to look, because each test covers only a small amount of code, and you know it has something to do with the changes you just made. If all the tests pass, you're good to go, and you don't need to second-guess yourself or worry that you just accidently broke someone else's program.
What to Test, What Not to Test
You don't have to write a test for every single method you write, only production methods that could possibly break.
-- Kent Beck, Extreme Programming Explained, p. 58.
Running the Tests
How
From the root of the Twisted source tree, run:
$ bin/trial -R twisted
You'll find that having something like this in your emacs init files is quite handy:
(defun runtests () (interactive) (compile "python /somepath/Twisted/bin/trial -R /somepath/Twisted")) (global-set-key [(alt t)] 'runtests)
When
Always always always be sure all the tests pass before committing any code. If someone else checks out code at the start of a development session and finds failing tests, they will not be happy and may decide to hunt you down.
Since this is a geographically dispersed team, the person who can help you get your code working probably isn't in the room with you. You may want to share your work in progress over the network, but you want to leave the main Subversion tree in good working order. So use a branch, and merge your changes back in only after your problem is solved and all the unit tests pass again.
Adding a Test
Please don't add new modules to Twisted without adding tests for them too. Otherwise we could change something which breaks your module and not find out until later, making it hard to know exactly what the change that broke it was, or until after a release, and nobody wants broken code in a release.
Tests go in Twisted/twisted/test/, and are named test_foo.py
,
where foo
is the name of the module or package being tested.
Extensive documentation on using the PyUnit framework for writing
unit tests can be found in the links
section below.
One deviation from the standard PyUnit documentation: To ensure
that any variations in test results are due to variations in the
code or environment and not the test process itself, Twisted ships
with its own, compatible, testing framework. That just
means that when you import the unittest module, you will from twisted.trial import unittest
instead of the
standard import unittest
.
As long as you have followed the module naming and placement
conventions, trial
will be smart
enough to pick up any new tests you write.
Skipping tests, TODO items
Trial, the Twisted unit test framework, has some extensions which are designed to encourage developers to add new tests. One common situation is that a test exercises some optional functionality: maybe it depends upon certain external libraries being available, maybe it only works on certain operating systems. The important common factor is that nobody considers these limitations to be a bug.
To make it easy to test as much as possible, some tests may be skipped in
certain situations. Individual test cases can raise the
SkipTest
exception to indicate that they should be skipped, and
the remainder of the test is not run. In the summary (the very last thing
printed, at the bottom of the test output) the test is counted as a
skip
instead of a success
or fail
. This should be used
inside a conditional which looks for the necessary prerequisites:
def testSSHClient(self): if not ssh_path: raise unittest.SkipTest, "cannot find ssh, nothing to test" foo() # do actual test after the SkipTest
You can also set the .skip
attribute on the method, with a string to
indicate why the test is being skipped. This is convenient for temporarily
turning off a test case, but it can also be set conditionally (by
manipulating the class attributes after they've been defined):
def testThing(self): dotest() testThing.skip = "disabled locally"
class MyTestCase(unittest.TestCase): def testOne(self): ... def testThing(self): dotest() if not haveThing: MyTestCase.testThing.im_func.skip = "cannot test without Thing" # but testOne() will still run
Finally, you can turn off an entire TestCase at once by setting the .skip attribute on the class. If you organize your tests by the functionality they depend upon, this is a convenient way to disable just the tests which cannot be run.
class SSLTestCase(unittest.TestCase): ... class TCPTestCase(unittest.TestCase): ... if not haveSSL: SSLTestCase.skip = "cannot test without SSL support" # but TCPTestCase will still run
.todo and Testing New Functionality
Two good practices which arise from the XP
development process are
sometimes at odds with each other:
- Unit tests are a good thing. Good developers recoil in horror when they see a failing unit test. They should drop everything until the test has been fixed.
- Good developers write the unit tests first. Once tests are done, they write implementation code until the unit tests pass. Then they stop.
These two goals will sometimes conflict. The unit tests that are written first, before any implementation has been done, are certain to fail. We want developers to commit their code frequently, for reliability and to improve coordination between multiple people working on the same problem together. While the code is being written, other developers (those not involved in the new feature) should not have to pay attention to failures in the new code. We should not dilute our well-indoctrinated Failing Test Horror Syndrome by crying wolf when an incomplete module has not yet started passing its unit tests. To do so would either teach the module author to put off writing or committing their unit tests until after all the functionality is working, or it would teach the other developers to ignore failing test cases. Both are bad things.
.todo
is intended to solve this problem. When a developer first
starts writing the unit tests for functionality that has not yet been
implemented, they can set the .todo
attribute on the test
methods that are expected to fail. These methods will still be run, but
their failure will not be counted the same as normal failures: they will go
into an expected failures
category. Developers should learn to treat
this category as a second-priority queue, behind actual test failures.
As the developer implements the feature, the tests will eventually start
passing. This is surprising: after all those tests are marked as being
expected to fail. The .todo tests which nevertheless pass are put into a
unexpected success
category. The developer should remove the .todo
tag from these tests. At that point, they become normal tests, and their
failure is once again cause for immediate action by the entire development
team.
The life cycle of a test is thus:
- Test is created, marked
.todo
. Test fails:expected failure
. - Code is written, test starts to pass.
unexpected success
. .todo
tag is removed. Test passes.success
.- Code is broken, test starts to fail.
failure
. Developers spring into action. - Code is fixed, test passes once more.
success
.
Any test which remains marked with .todo
for too long should
be examined. Either it represents functionality which nobody is working on,
or the test is broken in some fashion and needs to be fixed.
Associating Test Cases With Source Files
Please add a test-case-name
tag to the source file that is
covered by your new test. This is a comment at the beginning of the file
which looks like one of the following:
# -*- test-case-name: twisted.test.test_defer -*-
or
#!/usr/bin/python # -*- test-case-name: twisted.test.test_defer -*-
This format is understood by emacs to mark File Variables
. The
intention is to accept test-case-name
anywhere emacs would on
the first or second line of the file (but not in the File
Variables:
block that emacs accepts at the end of the file). If you
need to define other emacs file variables, you can either put them in the
File Variables:
block or use a semicolon-separated list of
variable definitions:
# -*- test-case-name: twisted.test.test_defer; fill-column: 75; -*-
If the code is exercised by multiple test cases, those may be marked by
using a comma-separated list of tests, as follows: (NOTE: not all tools can
handle this yet.. trial --testmodule
does, though)
# -*- test-case-name: twisted.test.test_defer,twisted.test.test_tcp -*-
The test-case-name
tag will allow trial
--testmodule twisted/dir/myfile.py
to determine which test cases need
to be run to exercise the code in myfile.py
. Several tools (as
well as twisted-dev.el
's F9 command) use this to automatically
run the right tests.
Links
- A chapter on Unit Testing in Mark Pilgrim's Dive Into Python.
unittest
module documentation, in the Python Library Reference.- UnitTests on the PortlandPatternRepository Wiki, where all the cool ExtremeProgramming kids hang out.
- Unit Tests in Extreme Programming: A Gentle Introduction.
- Ron Jeffries espouses on the importance of Unit Tests at 100%.
- Ron Jeffries writes about the Unit Test in the Extreme Programming practices of C3.
- PyUnit's homepage.
- The twisted/test directory in Subversion.
See also Tips for writing tests for Twisted code.