Is there a way to automatically start the debugger at the point at which a unittest fails?

Right now I am just using pdb.set_trace() manually, but this is very tedius as I need to add it each time and take it out at the end.

For Example:

import unittest

class tests(unittest.TestCase):

    def setUp(self):
        pass

    def test_trigger_pdb(self):
    #this is the way I do it now
        try:
            assert 1==0
        except AssertionError:
            import pdb
            pdb.set_trace()

    def test_no_trigger(self):
        #this is the way I would like to do it:
        a=1
        b=2
        assert a==b
        #magically, pdb would start here 
        #so that I could inspect the values of a and b

if __name__=='__main__':
#In the documentation the unittest.TestCase has a debug() method but I don't understand how to use it
#A=tests()
#A.debug(A)

unittest.main()
link|improve this question

74% accept rate
feedback

2 Answers

up vote 4 down vote accepted
import functools
def debug_on(*exceptions):
    if not exceptions:
        exceptions = (AssertionError, )
    def decorator(f):
        @functools.wraps(f)
        def wrapper(*args, **kwargs):
            try:
                return f(*args, **kwargs)
            except exceptions:
                pdb.post_mortem(sys.exc_info()[2])
        return wrapper
    return decorator

class tests(unittest.TestCase):
    @debug_on()
    def test_trigger_pdb(self):
        assert 1 == 0

I corrected the code to call post_mortem on the exception instead of set_trace.

link|improve this answer
Rosh, thank you, this is almost there and answers the first part of my question (how to trigger). But I would like to be in the appropriate position to see the variables in the wrapped function (even if you could just tell me how to navigate to the appropriate position using the debugger, it would be enough to fully answer my question). I have edited my question to show you what I mean. – tjb Dec 9 '10 at 15:13
I updated the answer. Now it would run the debugger on the traceback of the exception. – Rosh Oxymoron Dec 9 '10 at 18:58
I'd also advise you to use a global flag to turn this debugging on and off. It would make running tests more complicated. I'd be pretty pissed off if I ran someone's test suite and it popped a debugger. – Rosh Oxymoron Dec 9 '10 at 20:10
Rosh, thanks. It works great. Point well taken about the global flag :) – tjb Dec 10 '10 at 7:53
feedback

I think what you are looking for is nose. It works like a test runner for unittest.

You can drop into the debugger on errors, with the following command:

nosetest --pdb
link|improve this answer
If you were to use self.assertEquals rather than plain assert, so that the test has a "failure" rather than an "error", then the command to run would be nosetest --pdb-failures. – jchl Dec 21 '11 at 10:58
On win32 with python 2.7, I installed nose with easy_install nose but then found the command was nosetests not nosetest. I also had to run with --pdb-failures. – GrantJ Feb 27 at 2:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.