Skip to main content

Automatically generate arguments of Python functions.

Project description

ExploTest

ExploTest is a tool that turns exploratory test runs into unit tests by capturing and serializing run-time arguments. By adding the @explore decorator to any function, ExploTest automatically generates unit tests with assertions based on the previous execution values.

Installation

pip install ExploTest

Local Installation

python3 -m pip install -e <path/to/explotest>

Usage

On any function or method (except for closures), add the @explore decorator. When this function (the function-under-test or FUT) is called at runtime, a unit test will be generated and saved in same directory as the file of the FUT.

The @explore decorator accepts two optional parameters, mode and explicit_record.

Configuration

mode determines how the run-time arguments are reconstructed in the unit test:

  • Setting this to "p" or "pickle" results in ExploTest "pickling" (a Python specific binary serialization) each argument into a file, then loading this file in the unit test. ExploTest uses the dill library for pickling, which enables support for function arguments among others. However, objects that cannot be pickled ( e.g., Pandas DataFrames) cannot be saved. This is the default behaviour.
  • Setting this to "a" results in ExploTest attempting to reconstruct the parameter by creating a new object and setting all its fields to the runtime argument. For example, when running the code
class Bar:
    x = 1


@explore(mode="a")
def baz(b):
    return


baz(Bar())

the unit test

@pytest.fixture
def generate_b():
    clone_b = scratchpad.Bar.__new__(scratchpad.Bar)
    setattr(clone_b, 'x', 1)
    return clone_b


def test_baz(generate_b):
    b = generate_b
    return_value = scratchpad.baz(b)
    assert return_value is None

is generated. This will not work for some objects, namely ones that are "more" than just a collection of fields or have fields that cannot be setattr'd. In this case, ExploTest will try to fall back on pickling.

explicit_record determines when ExploTest generates a unit test. By default, this is False and so ExploTest generates a unit test everytime a function with the @explore decorator is called. However, this may become unwieldy if the function is called many times and only certain tests are desired. By setting explicit_record to True in a function, a unit test will only be created if the function body calls explotest_record(). Note that due to implementation details, this is not thread safe.

For example,

@explore(explicit_record=True)
def fib(n):
    if n <= 1:
        explotest_record()
        return 1
    return fib(n - 1) + fib(n - 2)

A unit test will only be generated for when n <= 1.

Development Setup

Create a venv, then install pip-tools. Run pip-compile as specified.

python3 -m venv .venv
pip install pip-tools
pip-compile -o requirements.txt ./pyproject.toml
pip install -r requirements.txt

Copyright

ExploTest is free and open source software, licensed under the GNU LGPL v3 or any later version.

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

explotest-1.0.4.tar.gz (26.3 kB view details)

Uploaded Source

Built Distribution

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

explotest-1.0.4-py3-none-any.whl (24.7 kB view details)

Uploaded Python 3

File details

Details for the file explotest-1.0.4.tar.gz.

File metadata

  • Download URL: explotest-1.0.4.tar.gz
  • Upload date:
  • Size: 26.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for explotest-1.0.4.tar.gz
Algorithm Hash digest
SHA256 60cf096d8ef8a47418ddcce7dcefffee1eea67b855414ca7a78d4c637a6ed56b
MD5 ad9318d5ec4e2ae3dc1ae56ce2f70d9f
BLAKE2b-256 ca909bf982821c76ed865ab2ecac1f01b1d86d65a5dfe36362bfacfad425a49a

See more details on using hashes here.

Provenance

The following attestation bundles were made for explotest-1.0.4.tar.gz:

Publisher: python-publish.yml on kliu04/explotest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file explotest-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: explotest-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 24.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for explotest-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 e8b8f0d69716dfe8ab9866a718f8ded7338420ba48e26f8655d0807a0b3755af
MD5 65868734b2fd64ac5c6bcf791a666e4a
BLAKE2b-256 78416b1dfc37ef5c9a2e2446821199dcce9a59fd3a83ef9007433698842bfe96

See more details on using hashes here.

Provenance

The following attestation bundles were made for explotest-1.0.4-py3-none-any.whl:

Publisher: python-publish.yml on kliu04/explotest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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