How to generate dynamic unit tests in python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T10:38:44Z http://stackoverflow.com/feeds/question/32899 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/32899/how-to-generate-dynamic-unit-tests-in-python 3 How to generate dynamic unit tests in python? Peter Hoffmann 2008-08-28T17:49:02Z 2009-05-01T03:59:06Z <p>I have some kind of test data and want to create an unit test for each item. My first idea was to do it like this:</p> <pre><code>import unittest l = [["foo", "a", "a",], ["bar", "a", "b"], ["lee", "b", "b"]] class TestSequence(unittest.TestCase): def testsample(self): for name, a,b in l: print "test", name self.assertEqual(a,b) if __name__ == '__main__': unittest.main() </code></pre> <p>The downside of this is that it handles all data in one test. I would like to generate one test for each item on the fly. Any suggestions?</p> http://stackoverflow.com/questions/32899/how-to-generate-dynamic-unit-tests-in-python/32939#32939 5 Answer by mojo for How to generate dynamic unit tests in python? mojo 2008-08-28T18:02:33Z 2008-08-28T18:02:33Z <p>i use something like this:</p> <pre><code>import unittest l = [["foo", "a", "a",], ["bar", "a", "b"], ["lee", "b", "b"]] class TestSequense(unittest.TestCase): pass def test_generator(a, b): def test(self): self.assertEqual(a,b) return test if __name__ == '__main__': for t in l: test_name = 'test_%s' % t[0] test = test_generator(t[1], t[2]) setattr(TestSequense, test_name, test) unittest.main() </code></pre> http://stackoverflow.com/questions/32899/how-to-generate-dynamic-unit-tests-in-python/34094#34094 4 Answer by codeape for How to generate dynamic unit tests in python? codeape 2008-08-29T07:10:31Z 2008-08-29T07:10:31Z <p>The <a href="http://www.somethingaboutorange.com/mrl/projects/nose/" rel="nofollow">nose</a> testing framework <a href="http://www.somethingaboutorange.com/mrl/projects/nose/#test-generators" rel="nofollow">supports this</a>. </p> <p>Example (the code below is the entire contents of the file containing the test):</p> <pre><code>param_list = [('a', 'a'), ('a', 'b'), ('b', 'b')] def test_generator(): for params in param_list: yield check_em, params[0], params[1] def check_em(a, b): assert a == b </code></pre> <p>The output of the nosetests command:</p> <pre><code>> nosetests -v testgen.test_generator('a', 'a') ... ok testgen.test_generator('a', 'b') ... FAIL testgen.test_generator('b', 'b') ... ok ====================================================================== FAIL: testgen.test_generator('a', 'b') ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/lib/python2.5/site-packages/nose-0.10.1-py2.5.egg/nose/case.py", line 203, in runTest self.test(*self.arg) File "testgen.py", line 7, in check_em assert a == b AssertionError ---------------------------------------------------------------------- Ran 3 tests in 0.006s FAILED (failures=1) </code></pre> http://stackoverflow.com/questions/32899/how-to-generate-dynamic-unit-tests-in-python/810127#810127 0 Answer by bignose for How to generate dynamic unit tests in python? bignose 2009-05-01T03:59:06Z 2009-05-01T03:59:06Z <p>You would benefit from trying the <a href="https://launchpad.net/testscenarios" rel="nofollow">TestScenarios</a> library.</p> <blockquote> <p>testscenarios provides clean dependency injection for python unittest style tests. This can be used for interface testing (testing many implementations via a single test suite) or for classic dependency injection (provide tests with dependencies externally to the test code itself, allowing easy testing in different situations).</p> </blockquote>