============================= Projects extending Hypothesis ============================= Hypothesis has been eagerly used and extended by the open source community. This page lists extensions and applications; you can find more or newer packages by searching PyPI `by keyword `_ or `filter by classifier `_, or search `libraries.io `_. If there's something missing which you think should be here, let us know! .. note:: Being listed on this page does not imply that the Hypothesis maintainers endorse a package. ------------------- External strategies ------------------- Some packages provide strategies directly: * :pypi:`hypothesis-fspaths` - strategy to generate filesystem paths. * :pypi:`hypothesis-geojson` - strategy to generate `GeoJson `_. * :pypi:`hypothesis-geometry` - strategies to generate geometric objects. * :pypi:`hs-dbus-signature` - strategy to generate arbitrary `D-Bus signatures `_. * :pypi:`hypothesis-sqlalchemy` - strategies to generate :pypi:`SQLAlchemy` objects. * :pypi:`hypothesis-ros` - strategies to generate messages and parameters for the `Robot Operating System `_. * :pypi:`hypothesis-csv` - strategy to generate CSV files. * :pypi:`hypothesis-networkx` - strategy to generate :pypi:`networkx` graphs. * :pypi:`hypothesis-bio` - strategies for bioinformatics data, such as DNA, codons, FASTA, and FASTQ formats. * :pypi:`hypothesmith` - strategy to generate syntatically-valid Python code. Others provide a function to infer a strategy from some other schema: * :pypi:`hypothesis-jsonschema` - infer strategies from `JSON schemas `_. * :pypi:`lollipop-hypothesis` - infer strategies from :pypi:`lollipop` schemas. * :pypi:`hypothesis-drf` - infer strategies from a :pypi:`djangorestframework` serialiser. * :pypi:`hypothesis-graphql` - infer strategies from `GraphQL schemas `_. * :pypi:`hypothesis-mongoengine` - infer strategies from a :pypi:`mongoengine` model. * :pypi:`hypothesis-pb` - infer strategies from `Protocol Buffer `_ schemas. Or some other custom integration, such as a :ref:`"hypothesis" entry point `: * :pypi:`deal` is a design-by-contract library with built-in Hypothesis support. * :pypi:`icontract-hypothesis` infers strategies from :pypi:`icontract` code contracts. * :pypi:`Pandera` schemas all have a ``.strategy()`` method, which returns a strategy for matching :class:`~pandas:pandas.DataFrame`\ s. * :pypi:`Pydantic` automatically registers constrained types - so :func:`~hypothesis.strategies.builds` and :func:`~hypothesis.strategies.from_type` "just work" regardless of the underlying implementation. ----------------- Other cool things ----------------- :pypi:`schemathesis` is a tool for testing web applications built with `Open API / Swagger specifications `_. It reads the schema and generates test cases which will ensure that the application is compliant with its schema. The application under test could be written in any language, the only thing you need is a valid API schema in a supported format. Includes CLI and convenient :pypi:`pytest` integration. Powered by Hypothesis and :pypi:`hypothesis-jsonschema`, inspired by the earlier :pypi:`swagger-conformance` library. `Trio `_ is an async framework with "an obsessive focus on usability and correctness", so naturally it works with Hypothesis! :pypi:`pytest-trio` includes :ref:`a custom hook ` that allows ``@given(...)`` to work with Trio-style async test functions, and :pypi:`hypothesis-trio` includes stateful testing extensions to support concurrent programs. :pypi:`pymtl3` is "an open-source Python-based hardware generation, simulation, and verification framework with multi-level hardware modeling support", which ships with Hypothesis integrations to check that all of those levels are equivalent, from function-level to register-transfer level and even to hardware. :pypi:`libarchimedes` makes it easy to use Hypothesis in `the Hy language `_, a Lisp embedded in Python. :pypi:`battle_tested` is a fuzzing tool that will show you how your code can fail - by trying all kinds of inputs and reporting whatever happens. :pypi:`pytest-subtesthack` functions as a workaround for :issue:`377`. :pypi:`returns` uses Hypothesis to verify that Higher Kinded Types correctly implement functor, applicative, monad, and other laws; allowing a declarative approach to be combined with traditional pythonic code. :pypi:`icontract-hypothesis` includes a :doc:`ghostwriter ` for test files and IDE integrations such as `icontract-hypothesis-vim `_, `icontract-hypothesis-pycharm `_, and `icontract-hypothesis-vscode `_ - you can run a quick 'smoke test' with only a few keystrokes for any type-annotated function, even if it doesn't have any contracts! -------------------- Writing an extension -------------------- *See* :gh-file:`CONTRIBUTING.rst` *for more information.* New strategies can be added to Hypothesis, or published as an external package on PyPI - either is fine for most strategies. If in doubt, ask! It's generally much easier to get things working outside, because there's more freedom to experiment and fewer requirements in stability and API style. We're happy to review and help with external packages as well as pull requests! If you're thinking about writing an extension, please name it ``hypothesis-{something}`` - a standard prefix makes the community more visible and searching for extensions easier. And make sure you use the ``Framework :: Hypothesis`` trove classifier! On the other hand, being inside gets you access to some deeper implementation features (if you need them) and better long-term guarantees about maintenance. We particularly encourage pull requests for new composable primitives that make implementing other strategies easier, or for widely used types in the standard library. Strategies for other things are also welcome; anything with external dependencies just goes in ``hypothesis.extra``. Tools such as assertion helpers may also need to check whether the current test is using Hypothesis: .. autofunction:: hypothesis.currently_in_test_context .. _entry-points: -------------------------------------------------- Hypothesis integration via setuptools entry points -------------------------------------------------- If you would like to ship Hypothesis strategies for a custom type - either as part of the upstream library, or as a third-party extension, there's a catch: :func:`~hypothesis.strategies.from_type` only works after the corresponding call to :func:`~hypothesis.strategies.register_type_strategy`, and you'll have the same problem with :func:`~hypothesis.register_random`. This means that either - you have to try importing Hypothesis to register the strategy when *your* library is imported, though that's only useful at test time, or - the user has to call a 'register the strategies' helper that you provide before running their tests `Entry points `__ are Python's standard way of automating the latter: when you register a ``"hypothesis"`` entry point in your ``setup.py``, we'll import and run it automatically when *hypothesis* is imported. Nothing happens unless Hypothesis is already in use, and it's totally seamless for downstream users! Let's look at an example. You start by adding a function somewhere in your package that does all the Hypothesis-related setup work: .. code-block:: python # mymodule.py class MyCustomType: def __init__(self, x: int): assert x >= 0, f"got {x}, but only positive numbers are allowed" self.x = x def _hypothesis_setup_hook(): import hypothesis.strategies as st st.register_type_strategy(MyCustomType, st.integers(min_value=0)) and then tell ``setuptools`` that this is your ``"hypothesis"`` entry point: .. code-block:: python # setup.py # You can list a module to import by dotted name entry_points = {"hypothesis": ["_ = mymodule.a_submodule"]} # Or name a specific function too, and Hypothesis will call it for you entry_points = {"hypothesis": ["_ = mymodule:_hypothesis_setup_hook"]} And that's all it takes! .. note:: On Python 3.7, where the ``importlib.metadata`` module is not in the standard library, loading entry points requires either the :pypi:`importlib_metadata` (preferred) or :pypi:`setuptools` (fallback) package to be installed. Interaction with :pypi:`pytest-cov` ----------------------------------- Because pytest does not load plugins from entrypoints in any particular order, using the Hypothesis entrypoint may import your module before :pypi:`pytest-cov` starts. `This is a known issue `__, but there are workarounds. You can use :command:`coverage run pytest ...` instead of :command:`pytest --cov ...`, opting out of the pytest plugin entirely. Alternatively, you can ensure that Hypothesis is loaded after coverage measurement is started by disabling the entrypoint, and loading our pytest plugin from your ``conftest.py`` instead:: echo "pytest_plugins = ['hypothesis.extra.pytestplugin']\n" > tests/conftest.py pytest -p "no:hypothesispytest" ...