Combine contracts and automatic testing.
Project description
icontract-hypothesis
Icontract-hypothesis combines design-by-contract with automatic testing.
It is an integration between icontract library for design-by-contract and Hypothesis library for property-based testing.
The result is a powerful combination that allows you to automatically test your code. Instead of writing manually the Hypothesis search strategies for a function, icontract-hypothesis infers them based on the function’s precondition. This makes automatic testing as effortless as it goes.
You can use icontract-hypothesis:
As a library, to write succinct unit tests,
As a command-line tool or as a tool integrated in your IDE (e.g., icontract-hypothesis-vim, icontract-hypothesis-pycharm and icontract-hypothesis-vscode).
This allows you to automatically test functions during the development and use it in your continuous integration,
As a ghostwriter utility giving you a starting point for your more elaborate Hypothesis strategies.
Since the contracts live close to the code, evolving the code also automatically evolves the tests.
Usage
Library
There are two ways to integrate icontract-hypothesis in your tests as a library.
Only assume. First, you can use it for defining the assumptions of the test based on the precondition:
>>> from hypothesis import given
>>> import hypothesis.strategies as st
>>> import icontract
>>> import icontract_hypothesis
>>> @icontract.require(lambda x: x > 0)
... @icontract.ensure(lambda result: result > 0)
... def some_func(x: int) -> int:
... return x - 1000
>>> assume_preconditions = icontract_hypothesis.make_assume_preconditions(
... some_func)
>>> @given(x=st.integers())
... def test_some_func(x: int) -> None:
... assume_preconditions(x)
... some_func(x)
>>> test_some_func()
Traceback (most recent call last):
...
icontract.errors.ViolationError: File <doctest README.rst[4]>, line 2 in <module>:
result > 0:
result was -999
x was 1
The function assume_preconditions created by icontract_hypothesis.make_assume_preconditions will reject all the input values which do not satisfy the pre-conditions of some_func.
Infer strategy. Second, you can automatically infer the strategy and test the function:
>>> import icontract
>>> import icontract_hypothesis
>>> @icontract.require(lambda x: x > 0)
... @icontract.ensure(lambda result: result > 0)
... def some_func(x: int) -> int:
... return x - 1000
>>> icontract_hypothesis.test_with_inferred_strategy(some_func)
Traceback (most recent call last):
...
icontract.errors.ViolationError: File <doctest README.rst[10]>, line 2 in <module>:
result > 0:
result was -999
x was 1
Which approach to use depends on how you want to write your tests. The first approach, using assume_preconditions, is practical if you already defined your search strategy and you only want to exclude a few edge cases. The second approach, automatically inferring test strategies, is useful if you just want to test your function without specifying any particular search strategy.
Icontract-hypothesis guarantees that the inferred strategy must satisfy the preconditions. If it does not, you should consider it a bug in which case please create an issue so that we can fix it.
If you want to inspect the strategy or further refine it programmatically, use icontract_hypothesis.infer_strategy:
>>> import math
>>> import icontract
>>> import icontract_hypothesis
>>> @icontract.require(lambda x: x > 0)
... @icontract.require(lambda x: x > math.sqrt(x))
... def some_func(x: float) -> int:
... pass
>>> icontract_hypothesis.infer_strategy(some_func)
fixed_dictionaries({'x': floats(min_value=0, exclude_min=True).filter(lambda x: x > math.sqrt(x))})
Testing Tool
We provide pyicontract-hypothesis test command-line tool which you can use to automatically test a module.
usage: pyicontract-hypothesis test [-h] -p PATH
[--settings [SETTINGS [SETTINGS ...]]]
[--inspect] [-i [INCLUDE [INCLUDE ...]]]
[-e [EXCLUDE [EXCLUDE ...]]]
optional arguments:
-h, --help show this help message and exit
-p PATH, --path PATH Path to the Python file to test
--settings [SETTINGS [SETTINGS ...]]
Specify settings for Hypothesis
The settings are assigned by '='.
The value of the setting needs to be encoded as JSON.
Example: max_examples=500
--inspect Only show the strategy and the settings
No tests are executed.
-i [INCLUDE [INCLUDE ...]], --include [INCLUDE [INCLUDE ...]]
Regular expressions, lines or line ranges of the functions to process
If a line or line range overlaps the body of a function,
the function is considered included.
Example 1: ^do_something.*$
Example 2: 3
Example 3: 34-65
-e [EXCLUDE [EXCLUDE ...]], --exclude [EXCLUDE [EXCLUDE ...]]
Regular expressions, lines or line ranges of the functions to exclude
If a line or line range overlaps the body of a function,
the function is considered excluded.
Example 1: ^do_something.*$
Example 2: 3
Example 3: 34-65
Note that pyicontract-hypothesis test can be trivially integrated with your IDE if you can pass in the current cursor position and the current file name.
Ghostwriting Tool
Writing property-based tests by hand is tedious and can be partially automated. To that end, we implemented a ghostwriter utility pyicontract-hypothesis ghostwrite that generates a first draft based on pre-conditions that you manually refine further:
usage: pyicontract-hypothesis ghostwrite [-h] (-m MODULE | -p PATH)
[-o OUTPUT] [--explicit] [--bare]
[-i [INCLUDE [INCLUDE ...]]]
[-e [EXCLUDE [EXCLUDE ...]]]
optional arguments:
-h, --help show this help message and exit
-m MODULE, --module MODULE
Module to ghostwrite the unit tests for
-p PATH, --path PATH Path to the module to ghostwrite the unit tests for.
If the file represents a module reachable through
sys.path, use the qualified module name in
the unit test.
Otherwise, the module is represented as the stem
of the path with all non-identifier characters
replaced with an underscore ("_").
-o OUTPUT, --output OUTPUT
Path to the file where the output should be written.
If '-', writes to STDOUT.
--explicit Write the inferred strategies explicitly
This is practical if you want to tune and
refine the strategies and just want to use
ghostwriting as a starting point.
Mind that pyicontract-hypothesis does not
automatically fix imports as this is
usually project-specific. You have to fix imports
manually after the ghostwriting.
--bare Print only the body of the tests and omit header/footer
(such as TestCase class or import statements).
This is useful when you only want to inspect a single test or
include a single test function in a custom test suite.
-i [INCLUDE [INCLUDE ...]], --include [INCLUDE [INCLUDE ...]]
Regular expressions, lines or line ranges of the functions to process
If a line or line range overlaps the body of a function,
the function is considered included.
Example 1: ^do_something.*$
Example 2: 3
Example 3: 34-65
-e [EXCLUDE [EXCLUDE ...]], --exclude [EXCLUDE [EXCLUDE ...]]
Regular expressions, lines or line ranges of the functions to exclude
If a line or line range overlaps the body of a function,
the function is considered excluded.
Example 1: ^do_something.*$
Example 2: 3
Example 3: 34-65
The examples of ghostwritten tests are available at: tests/pyicontract_hypothesis/samples
Running Tools as Module
If for some reason you want to run the tools as a module, just invoke:
usage: icontract_hypothesis [-h] {test,ghostwrite} ...
Combine property-based testing with contracts of a Python module.
positional arguments:
{test,ghostwrite} Commands
test Test the functions automatically by inferring search
strategies from preconditions
ghostwrite Ghostwrite the unit tests with inferred search strategies
optional arguments:
-h, --help show this help message and exit
Installation
icontract-hypothesis is available on PyPI at https://pypi.org/project/icontract-hypothesis, so you can use pip:
pip3 install icontract-hypothesis
Search Strategies
A naive approach to fuzzy testing is to randomly sample input data, filter it based on pre-conditions and ensure post-conditions after the run. However, if your acceptable band of input values is narrow, the rejection sampling will become impractically slow.
For example, assume a pre-condition 5 < x < 10. Sampling from all possible integers for x will rarely hit the pre-condition (if ever) thus wasting valuable computational time. The problem is exacerbated as the number of arguments grow due to the curse of dimensionality.
Icontract-hypothesis tries to address the search strategies a bit more intelligently:
The pre-conditions are matched against common code patterns to define the strategies. For example, 5 < x < 10 gives a search strategy hypothesis.strategies.integers(min=6, max=9).
We currently match bounds on all available Hypothesis types (int, float, datetime.date etc.). We also match regular expressions on str arguments.
Pre-conditions which could not be matched, but operate on a single argument are inferred based on the type hint and composed with Hypothesis FilteredStrategy.
The remainder of the pre-conditions are enforced by filtering on the whole fixed dictionary which is finally passed into the function as keyword arguments.
There is an ongoing effort to move the strategy matching code into Hypothesis and develop it further to include many more cases. See this Hypothesis issue.
Note that static analysis of the source code may not determine all the defined names in various scopes as they can also be injected dynamically (e.g., setting __globals__ attribute or globals()[random.choice("abc")] = 1). As long as you keep fancy dynamic acrobatics out of your contracts, the strategy inference by icontract-hypothesis should work fine.
Classes
Hypothesis automatically builds composite input arguments (classes, dataclasses, named tuples etc.). If your class enforces pre-conditions in the constructor method (__init__), make sure that it inherits from icontract.DBC.
That way icontract-hypothesis will use hypothesis.strategies.register_type_strategy to register your class with Hypothesis and consider pre-conditions when building its instances.
It is important that you should not use hypothesis.strategies.builds with the classes using contracts in their constructors as builds will disregard the registered strategy. You should use hypothesis.strategies.from_type instead. See this comment on an Hypothesis issue and the corresponding answer.
Many times default inferred strategies for the constructors should be enough, though you are of course not restricted to them. You can register your own strategies with hypothesis.strategies.register_type_strategy . Icontract-hypothesis will respect the previous registrations and will not overwrite them.
IDE Plug-ins
Versioning
We follow Semantic Versioning. The version X.Y.Z indicates:
X is the major version (backward-incompatible),
Y is the minor version (backward-compatible), and
Z is the patch version (backward-compatible bug fix).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file icontract-hypothesis-1.1.7.tar.gz
.
File metadata
- Download URL: icontract-hypothesis-1.1.7.tar.gz
- Upload date:
- Size: 51.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40f5be35ae5a7d32b7058b579b1eb574367c80709de8bebb52bef685aa01662f |
|
MD5 | a7afaa66d53ba9047225edd3462ec608 |
|
BLAKE2b-256 | 8d8e958e577be5a3f74e87a83cb85cad3e5cd16d856079eee1daa015c26a751c |