up vote 6 down vote favorite
share [g+] share [fb]

I have a module that imports unittest and has some TestCases. I would like to accept some command line options (for example below, the name of a data file), but when I try to pass the option I get the message "option -i not recognized". Is it possible to have unittest + provide options to the app (note: I'm using optparse to handle the options)? Thanks.

$ python test_app_data.py -i data_1.txt

option -i not recognized

=====================

follow-up: this is an implementation of the suggested solution:

import cfg_master  #has the optparse option-handling code

...

if __name__ == '__main__':    
    #add you app's options here...
    options_tpl = ('-i', '--in_dir', '-o', '--out_dir')
    del_lst = []
    for i,option in enumerate(sys.argv):
        if option in options_tpl:
            del_lst.append(i)
            del_lst.append(i+1)

    del_lst.reverse()
    for i in del_lst:
        del sys.argv[i]

    unittest.main()
link|improve this question

In general terms, yes. In this case, the answer appears to depend very much on details which you haven't given. – Craig McQueen Jun 22 '09 at 23:35
feedback

3 Answers

up vote 12 down vote accepted

In your if __name__ == '__main__': section, which you're not showing us, you'll need to optparse and then del sys.argv[1:] before you pas control to unittest code, so that the latter code doesn't try to interpret your command line options again when you've already dealt with them. (It's a bit harder to have some options of your own and also pass some down to unittest, though it can be done if you do have such complex needs).

link|improve this answer
great, thanks; just to confirm: first allow optparse to handle the (possibly multiple and variable) app options, then delete them from sys.argv, and finally allow unittest to take over? – jd. Jun 22 '09 at 23:46
@jd yep, that's the gist of it! – Alex Martelli Jun 23 '09 at 0:10
Brilliant, thanks Alex! I couldn't work this out at all :P – Skilldrick Jan 15 '10 at 22:46
but what do you do if you want to pass arguments to unittest.main()? – Matt Joiner Feb 8 '10 at 15:57
1  
@Matt, set sys.argv to have exactly those args you want unittest.main to parse -- no more, no less. – Alex Martelli Feb 8 '10 at 16:19
feedback

Building on Alex's answer, it's actually pretty easy to do using argparse:

if __name__ == '__main__':
    parser = argparse.ArgumentParser()
    parser.add_argument('--input', default='My Input')
    parser.add_argument('filename', default='some_file.txt')
    parser.add_argument('unittest_args', nargs='*')

    args = parser.parse_args()
    # TODO: Go do something with args.input and args.filename

    # Now set the sys.argv to the unittest_args (leaving sys.argv[0] alone)
    sys.argv[1:] = args.unittest_args
    unittest.main()

I haven't tested all of the flags you can pass into unittest to see if they work or not, but passing test names in does work, e.g.:

python test.py --input=foo data.txt MyTest

Runs MyTest with foo and data.txt.

link|improve this answer
feedback

You should not take arguments and options to run unittests, as you make them run under different, less predictable conditions this way. You should figure out why you need to run tests with different data, and make you test suite complete enough to cover the ground of all data sets without being run differently each time.

link|improve this answer
i receive weekly data reports (files); i'd like to feed these new reports to the unittests, before generating public reports. If for some reason the structure or type of the data has changed (e.g. a new column field was added, a data range changed and a bug is unveiled) I'd like to catch them with the tests. Hope this makes sense. – jd. Jun 23 '09 at 0:13
sure but thats data validation, not unittesting. – ironfroggy Jun 23 '09 at 12:07
How about for conditional test skipping? I run all my test cases by doing unittest's test discovery, but it'd be nice to be able to have annotations on certain tests like @skipUnless('-full' in sys.argv) so that I can have an easy command line way of running all tests, or only some. – Adam Parkin Nov 9 '11 at 22:54
And if you're wondering why I may want to do that, how about for easy separation of quick unit tests vs longer regression or stress tests? – Adam Parkin Nov 9 '11 at 23:08
feedback

Your Answer

 
or
required, but never shown

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