Skip to main content

A small library/framework used for testing your python source code.

Project description

tINI test

Coverage

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. 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:

  1. Discover tests within -d (if provided)
  2. Restrict to -f (if provided)
  3. 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

tini_test-0.5.3.tar.gz (49.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tini_test-0.5.3-py3-none-any.whl (25.5 kB view details)

Uploaded Python 3

File details

Details for the file tini_test-0.5.3.tar.gz.

File metadata

  • Download URL: tini_test-0.5.3.tar.gz
  • Upload date:
  • Size: 49.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.6

File hashes

Hashes for tini_test-0.5.3.tar.gz
Algorithm Hash digest
SHA256 5ebd77275629f22296e0c15899e88dc6cea0d6459ec12353067be2b3bc5c74a5
MD5 1d91542669f025b0cf0768fbc9903e52
BLAKE2b-256 cbd87f0c0cc05217b4f02f0d2299750a8c3b6e912301f82be860db094cf48165

See more details on using hashes here.

File details

Details for the file tini_test-0.5.3-py3-none-any.whl.

File metadata

  • Download URL: tini_test-0.5.3-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

Hashes for tini_test-0.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3a9c1448ed609345292d2a20f9a54f98864ecce63b2b659dd215d90f3a0e4e67
MD5 78e9ace707dee1f615e4e0bb487228a2
BLAKE2b-256 8a7551aef539803032dc03e03e6a8836d22796a60a0757faad470be68a101433

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page