Generator is a helper for generating test methods for nose while still using unittest.
Free software: ISC license
Documentation: https://generator.readthedocs.org.
Installation
pip install test-generator
Introduction
Have you ever written tests that loop through a list of inputs to validate the functionality?
Something like?
from mything import thingy
class MyTestCase(unittest.TestCase):
def test_thingy(self):
for input in [
'a',
'b',
'cccc',
'ddd'
'eeeeee',
'f',
'g'
]:
self.assertTrue(thingy(input))
But running in a loop limits all the functionality in TestCase like per- test setUp or tearDown. It also fails on the first input and you can’t run a single test input, you have to run them all? (Doesn’t work well when each test is more complicated than this toy case).
Instead, what if you wrote your test like:
from generator import generator, generate
from mything import thingy
@generator
class MyTestCase(unittest.TestCase):
@generate('a', 'b', 'cccc', 'ddd', 'eeeeee', 'f', 'g')
def test_thingy(self, input):
self.assertTrue(thingy(input))
And when you run your tests, you see:
----------------------------------------------------------------------
Ran 7 tests in 0.001s
OK
Generator gives you simple decorators to mulitply your test methods based on an argument list. It’s great for checking a range of inputs, a list of error conditions or expected status codes.
Examples
API Client Error Handling
Let’s make sure our API client properly handles error conditions and raises a generic APIError under the conditions. We’ll use mock to patch out the actual API call to return our response.
import mock
from generator import generator, generate
from example import client, APIError
@generator
class TestAPIErrorHandling(unittest.TestCase):
@generate(400, 401, 403, 404, 500, 502, 503)
def test_error(self, status_code):
with mock.patch(client, '_request') as _request_stub:
_request_stub.return_value.status_code = status_code
self.assertRaises(APIError):
client.get('/path/')
Test Fixtures
Let’s make sure our API client properly handles error conditions and raises a generic APIError under the conditions. We’ll use mock to patch out the actual API call to return our response.
from generator import generator, generate
from example.sanitize import strip_tags
@generator
class TestStripTags(unittest.TestCase):
@generate(
('<h1>hi</h1>', 'hi'),
('<script></script>something', 'something'),
('<div class="important"><p>some text</p></div>', 'some text'),
)
def test_strip_tags(self, input, expected):
self.assertEqual(strip_tags(input), expected)
History
0.1.1 (2015-10-15)
First release on PyPI.
Release files for test-generator 0.1.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| test-generator-0.1.2.tar.gz | 13.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| test_generator-0.1.2-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size: 19.7 kB
Release files / test-generator-0.1.2.tar.gz
| Download URL | test-generator-0.1.2.tar.gz |
|---|---|
| Size | 13.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ad5925c814bfe79497b43df096e3bb52c166d1577f7aff160137301676232f4a
|
|
BLAKE2b-256 checksum How to use checksums |
1eb390a71f2f4f9de5467c5518f0d75876eb7501c07fa1e25353ceaa56da3973
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / test_generator-0.1.2-py2.py3-none-any.whl
| Download URL | test_generator-0.1.2-py2.py3-none-any.whl |
|---|---|
| Size | 6.0 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
7de659848ca3fafd6b64b802d06872d7c5eaa3835818083c4eb9c142e90fd904
|
|
BLAKE2b-256 checksum How to use checksums |
e31c6cf39cf103e6a6f5b236a882c6da38688af58da1e5cdb25afa18ea12683a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |