Skip to main content

Library

Project description

Testoot

codecov Documentation Status Maintainability

Testoot like "test out" of code for Python 3.4+. It's useful in unit and module testing when creating or rewriting test data is too boring. After you canonized the ideal output result all tests will pass until the data changes moment.

  • Writes data to the local filesystem storage
  • Supports binary, text, json and picklable objects
  • Different policies for resolving test conflicts

Currently integrates best with the PyTest, but other frameworks are also welcomed.

Example

One pytest function is the scope of the result. Newly calculated data compares with the original canonized result.

# testoot is the function scope helper fixture easy to setup
def test_simple(testoot: Testoot):
    result = {'a': 1}
    testoot.test(result)  # Commit first time

    result2 = {'a': 1}
    testoot.test(result2)  # Ok. No object result changes

    result3 = {'a': 3}  # Try commit change. Raised the AssertionError
    with pytest.raises(AssertionError) as e:
        testoot.test(result3)

To continue exploring you can visit the quickstart.

Using

pip3 install testoot

Documentation

https://testoot.readthedocs.io/

Development

Making virtualenv with development requirements:

python3 -m venv venv
venv/bin/pip install --upgrade pip
venv/bin/pip install -r requirements.txt

Testing

venv/bin/pytest -s tests
venv/bin/flake8 testoot --show-source --statistics
venv/bin/pytest --cov=testoot --cov-report html

Or for automatizing:

cp TEST.sh.example TEST.sh
chmod +x TEST.sh
./TEST.sh

Some tests uses console for user interaction. Add --canonize flag:

venv/bin/pytest -s tests --canonize

Building docs

Using sphinx:

cd docs
make

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

testoot-0.0.5.tar.gz (9.2 kB view details)

Uploaded Source

File details

Details for the file testoot-0.0.5.tar.gz.

File metadata

  • Download URL: testoot-0.0.5.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for testoot-0.0.5.tar.gz
Algorithm Hash digest
SHA256 59c1d56782fb4d9a9556ec858e9cd12439673217fcb738b9846e2427018e44f7
MD5 8a11cbb51669f19afa117d153b09f11e
BLAKE2b-256 e998a92ae6eff9ee64a0346ccff3c4675485e995c2fbf5022c12cb810287f509

See more details on using hashes here.

Supported by

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