Property-based testing framework for Open API and GraphQL based apps
Project description
Schemathesis is a specification-centric API testing tool for Open API and GraphQL-based applications.
Why use Schemathesis?
Application crashes. Learn what payloads make your API crash, corrupt the database or hang forever.
Up-to-date API documentation. Never worry that your API consumers will use an incorrect specification or outdated payload example.
Instant debugging. Get a detailed failure report with a single cURL command to reproduce the problem immediately.
How does it work?
Schemathesis reads the application schema and generates test cases, which will ensure that your application is compliant with its schema and never crashes.
The application under test could be written in any language; the only thing you need is a valid API schema in a supported format.
Read more about how it works in our research paper.
How do I start?
Schemathesis is available as a service, standalone CLI, or a Python library.
The service enables you to verify your API schema in a few clicks, CLI gives more control. Schemathesis.io has a free tier, so you can combine the CLI flexibility with rich visuals by uploading your test results there.
If you use GitHub Actions, there is a native GitHub app that reports test results directly to your pull requests.
Features
Open API: Schema conformance, explicit examples, stateful testing;
GraphQL: queries generation;
Multi-worker test execution;
Storing and replaying tests;
ASGI / WSGI support;
Generated code samples (cURL, Python);
Docker image;
Customizable checks & test generation;
CLI installation
To install Schemathesis via pip run the following command:
pip install schemathesis
This command installs the st entrypoint.
You can also use our Docker image without installing Schemathesis as a Python package.
Usage
You can use Schemathesis in the command line directly:
st run --checks all https://example.schemathesis.io/openapi.json
Or via Docker:
docker run schemathesis/schemathesis:stable \
run --checks all https://example.schemathesis.io/openapi.json
Or in your Python tests:
import schemathesis
schema = schemathesis.from_uri("https://example.schemathesis.io/openapi.json")
@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. 💡
Support
If you want to integrate Schemathesis into your company workflows or improve its effectiveness, feel free to reach out to support@schemathesis.io.
Schemathesis.io also runs workshops about effective API testing. Signup here
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.
Links
Documentation: https://schemathesis.readthedocs.io/en/stable/
Releases: https://pypi.org/project/schemathesis/
Issue tracker: https://github.com/schemathesis/schemathesis/issues
Additional content:
Research paper: Deriving Semantics-Aware Fuzzers from Web API Schemas by @Zac-HD and @Stranger6667
An article about Schemathesis by @Stranger6667
Effective API schemas testing from DevConf.cz by @Stranger6667
How to use Schemathesis to test Flask API in GitHub Actions by @lina-is-here
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
Non-English content:
A tutorial (RUS) about Schemathesis by @Stranger6667
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.16.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bacee135e1d9dd07230791679165fcc7a408785885a6327cb7096e37e6c7d59 |
|
MD5 | d805e0247a6d7cf6709507e3bae72c6e |
|
BLAKE2b-256 | b0b5124b00bfaa47bd8161d064343b7dca74ce6628afe0374a79de80dba48a3e |