Library for testing api endpoints
Project description
contract-test-framework contains an implementation of contract testing in Python. Under the package name fellowship
How to use from console:
If you want to validate an REST API, run Fellowship in validate mode. If your contracts follow the Jinja2 syntax, make sure that you give the path to config.yaml in environment variable contract_test_config. You can see examples of contracts and config at example_contract.json. Request part of the contract specifies the endpoint to make the request to. While everything under properties defines the JSON schema to validate against. Fellowship validates these contracts against a meta-schema before it makes the request. Example of how to run from console:
$ fellowship validate path/to/contract_directory/
To generate a contract in console, run in generate mode, with the following syntax:: fellowship generate path_of_the contract_to_generate request_kwargs expected_json. Request_kwargs is the request as a dictionary, the dictionary can take following parameters:
url: can be given as a full url, or just the endpoint (/api/v1/test)it will then fill out the Jinja 2 syntax for you{{ config.protocol }}://{{ config.host}}/api/v1/test, when validatingprotocol and config will be filled from config.yaml headers: can be given as a dictionary {“Accept”: “application/json”}, ifleft empty it will automatically fill as{{ config.default_headers | jsonify }}.data: The body of the request
The last expected argument is the expected json response from the Rest API. The contract will generate with only types and required for all fields. If you want to validate the values, you need to fill the consts and enums manually.
$ fellowship generate sample.json '{"url": "/test", "method": "GET"}' \
'{"json": "expected_response"}'
Features
REST endpoint contract testing and contract rendering.
Future development plans includes to support gRPC and message-based communication
Installation
fellowship is available on PyPI. You can install using pip:
$ pip install fellowship
Running the Test Suite
If you have tox installed (perhaps via pip install tox or your package manager), running tox in the directory of your source checkout will run fellowship’s test suite.
Contributing
See how to contribute in CONTRIBUTING.rst.
The code and the issues are hosted on GitHub.
The project is licensed under BSD-3-Clause.
The documentation is hosted on read the docs
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
File details
Details for the file fellowship-0.0.5.tar.gz
.
File metadata
- Download URL: fellowship-0.0.5.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17e6c6b63d822f9d5c007675ddcf716cda7f3d34c90c48ef878980d12e45f34d |
|
MD5 | 9d3101c39d507801bda1a6d2a2d4b2ba |
|
BLAKE2b-256 | 94a350be89c1a6b54bd407a2006467e4bead18d04488a6ab286019d3f16b9ca2 |