Property-based testing framework for Open API and GraphQL based apps
Project description
Schemathesis is a modern API testing tool for web applications built with Open API and GraphQL specifications.
It reads the application schema and generates test cases, which will ensure that your 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.
Simple to use and yet powerful to uncover hard-to-find errors thanks to the property-based testing approach backed by state-of-the-art Hypothesis library.
📣 Please fill out our quick survey so that we can learn how satisfied you are with Schemathesis, and what improvements we should make. Thank you!
Features
Content-Type, schema, and status code conformance checks for Open API;
Testing of explicit examples from the input schema;
Stateful testing via Open API links;
Concurrent test execution;
Targeted testing;
Storing and replaying network requests;
Built-in ASGI / WSGI application support;
Code samples for easy failure reproduction;
Ready-to-go Docker image;
Configurable with user-defined checks, string formats, hooks, and targets.
Installation
To install Schemathesis via pip run the following command:
pip install schemathesis
Usage
You can use Schemathesis in the command line:
schemathesis run --stateful=links --checks all http://0.0.0.0:8081/schema.yaml
Or in your Python tests:
import schemathesis
schema = schemathesis.from_uri("http://0.0.0.0:8081/schema.yaml")
@schema.parametrize()
def test_api(case):
case.call_and_validate()
CLI is simple to use and requires no coding; the in-code approach gives more flexibility.
Both examples above will run hundreds of requests against the API under test and report all found failures and inconsistencies along with instructions to reproduce them.
💡 See a complete working example project in the /example directory. 💡
Contributing
Any contribution to development, testing, or any other area is highly appreciated and useful to the project. For guidance on how to contribute to Schemathesis, see the contributing guidelines.
Support this project
Hi, my name is Dmitry! I started this project during my work at Kiwi.com. I am grateful to them for all the support they provided to this project during its early days and for the opportunity to evolve Schemathesis independently.
In order to grow the community of contributors and users, and allow me to devote more time to this project, please donate today.
Also, I occasionally write posts about Schemathesis in my blog and offer consulting services for businesses.
Commercial support
If you are interested in the effective integration of Schemathesis to your private project, you can contact me via email or Twitter and I will help you do that.
Links
Documentation: https://schemathesis.readthedocs.io/en/stable/
Releases: https://pypi.org/project/schemathesis/
Issue tracker: https://github.com/schemathesis/schemathesis/issues
Additional content:
An article about Schemathesis by @Stranger6667
Effective API schemas testing from DevConf.cz by @Stranger6667
A video from EuroPython 2020 by @hultner
Schemathesis tutorial with an accompanying video by Red Hat
Using Hypothesis and Schemathesis to Test FastAPI by @amalshaji
License
The code in this project is licensed under MIT license. By contributing to Schemathesis, you agree that your contributions will be licensed under its MIT license.
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
Built Distribution
Hashes for schemathesis-3.7.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 770ba5093fdc0c326f33ccc9778830593a334772213d4bc1aaf3d476b86db9a8 |
|
MD5 | 7cef339e6ff8e29459c27a4b6ca74a7c |
|
BLAKE2b-256 | b36f4ea806e12e230a4ac0570e5c23a1b9846baf98b91d38b781252bdcc3e1d4 |