A small library/framework used for testing your python source code.
Project description
tINI test
A lightweight Python test framework focused on simple test discovery and execution from the command line. The framework was tested using its own test suite and has 100% coverage. It was also stress tested on around 1K tests to test db connections on a temp sqlite3. It also allows pretty prints inside the tests while running.
Installation
pip install tINI-test
Usage
python3 -m tini_test [-r RUN MODE] [-v VERBOSITY] [-d DIRECTORY] [-f FILE] [-t TEST] [-h HELP]
Filter Combination Behavior
Filters are applied from broadest to narrowest scope:
- Discover tests within
-d(if provided) - Restrict to
-f(if provided) - Restrict to
-t(if provided)
- If used alone, the entire project is scanned.
- Options may be combined in any way.
Test Registration
@Test.case
def test_cats() -> None:
...
@Test.case()
def snakes() -> None:
...
The decorator accepts up to two optional callables.
@Test.case(
lambda: create_database(),
lambda: destroy_database()
)
def test_database() -> None:
...
@Test.case(setup, lambda: destr())
def test_database() -> None:
...
Catch exceptions
@Test.case
def test_math() -> None:
with WillRaise(NameError, ZeroDivisionError):
1/0
Notes: If one of the provided exceptions is not raised the test will fail and raise an ExceptionWasNotRaised error.
Comparisons
@Test.case
def test_list_values() -> None:
expected = [12345]
must_equal(expected, some_func())
Combo
@Test.case
def test_ints_dont_match() -> None:
a = 10
b = 20
with WillRaise(_IntegerMismatchError) as context:
must_equal(a, b)
must_equal('10 != 20', str(context.exception))
Misc
When comparing custom objects the test suite will try to autocompare them but it is better to be explicit and pass them a callable that will apply the correct comparison.
@Test.case
def test_must_equal_alien_object_with_eq() -> None:
expected = A(11)
actual = A(21)
comp_func = lambda a, b: a.attr == b.attr
must_equal(expected, actual, comp_func)
Test Discovery
The requested path is resolved relative to the current working directory.
A file is considered discoverable when:
- The file name begins with
test_ - The file exists inside a directory named
tests
Flow
-
Setup is executed before the test function runs.
-
Cleanup is executed after the test function completes.
-
Cleanup execution is still attempted when setup or test execution fails.
-
Maybe further down the road this will be made optional by a flag.
Run modes
Currently there are two modes sync amd async. In sync mode all tests run in sequential and in async they run concurrently.
tini_test -r sync
-d DIRECTORY
Limit test discovery to a specific directory.
tini_test -d test_math
All tests in the test_math dir will run.
-f FILE
Limit execution to tests contained in a specific file.
python3 -m tini_test -f test_concurrency
python3 -m tini_test -f test_concurrency.py
Notes: If multiple files with same name exist in different directories all will run.
-t TEST
Run a specific test function.
python3 -m tini_test -t function_name
Notes: If multiple functions with the same name are defined in different files only the first one spotted will run.
Verbosity Modes
NORMAL
Displays:
- Captured IO in the correct order
- Setup execution (if any)
- Test execution (if any)
- Cleanup execution (if any)
- Full exception details
- Stack traces
- Test discovery information
- Final summary stats
SORT
Works the same way as normal. But failures are sorted to the bottom.
The sorting is only applied per module .
*Maybe further down the road a flag to sort globally may be introduced.
MINIMAL
Minimal display:
- Failed tests ( names only )
- Associated stack traces
- Final execution summary
MINIMAL_NO_STACK is same as MINIMAL, except that no stack traces are shown.
SUPER_MINIMAL is same as MINIMAL_NO_STACK but less verbose.
Notes
While the discovery implementation will find tests with the same names or sub dirs with same names or even actual tests cases with same names, it is heavily discouraged.
Of course the above is somewhat cancelled because the algorithm tries to autocomplete the path, as a result when searching for a sub directory that exists in multiple sub directories with the same name, no guarantees are made that all tests will be excecuted.
Roadmap
- Register tests into groups (group-level setup/cleanup)
- Add global fail sort mode, not just per module.
- Add exclude dir arg
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tini_test-0.5.2.tar.gz.
File metadata
- Download URL: tini_test-0.5.2.tar.gz
- Upload date:
- Size: 49.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd13cbb77a8c886dc1f8bb869f2e1942366b68e54e5fa0d45c67269d5e8fea7a
|
|
| MD5 |
13fe6e9a7f69428375290ed7acfd991a
|
|
| BLAKE2b-256 |
06c3cdd52775db2d1e40eaf2d781fb367eae38e7c733ce6c44d23ffd71ad5c93
|
File details
Details for the file tini_test-0.5.2-py3-none-any.whl.
File metadata
- Download URL: tini_test-0.5.2-py3-none-any.whl
- Upload date:
- Size: 25.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d96b2980132b2c467907e3db9f0196df6266474c1d56c082034a5dda40c58d9c
|
|
| MD5 |
ce427fc017a62acd6edaacea75b78658
|
|
| BLAKE2b-256 |
2d8109d986ac7f934bf7b56606e1c6df28184a6a3c2890547a74682f58abe77c
|