Validates that a .yaml or .json file conforms to the OpenAPI Specifications 3.x.
Project description
amati
amati is designed to validate that a file conforms to the OpenAPI Specification v3.x (OAS).
Name
"amati" means to observe in Malay, especially with attention to detail. It's also one of the plurals of beloved or favourite in Italian.
Usage
python amati/amati.py validate --help
usage: amati validate [-h] -s SPEC [--consistency-check] [--local] [--html-report]
options:
-h, --help show this help message and exit
-s, --spec SPEC The specification to be validated
--consistency-check Runs a consistency check between the input specification and the parsed specification
--local Store errors local to the caller in .amati/<file-name>.errors.json
--html-report Creates an HTML report of the errors, called <file-name>.errors.html, alongside <filename>.errors.json
Docker
A Dockerfile is available on DockerHub or docker pull benale/amati:alpha.
Whilst an alpha build, only the image tagged alpha will be maintained. If there are breaking API changes these will be detailed in releases. Releases can be separately watched using the custom option when watching this repository.
To run against a specific specification the location of the specification needs to be mounted in the container.
docker run -v "<path-to-specification>:/<mount-name> benale/amati:alpha validate --spec <path-to-spec> <options>
e.g. where you have a specification located in /Users/myuser/myrepo/myspec.yaml and create a mount /data:
docker run -v /Users/myuser/myrepo:/data benale/amati:alpha validate --spec /data/myspec.yaml --html-report
PyPI
amati is available on PyPI, to run everything:
>>> from amati import amati
>>> amati.run('tests/data/openapi.yaml', consistency_check=True, local=True, html_report=True)
True
Architecture
amati uses Pydantic, especially the validation, and typing to construct the entire OAS as a single data type. Passing a dictionary to the top-level data type runs all the validation in the Pydantic models constructing a single set of inherited classes and datatypes that validate that the API specification is accurate. To the extent that Pydantic is functional, amati has a functional core and an imperative shell.
Where the specification conforms, but relies on implementation-defined behavior (e.g. data type formats), a warning will be raised.
Contributing
Prerequisites
Starting
The project uses a pyproject.toml file to determine what to build.
To get started run:
sh bin/startup.sh
Testing and formatting
This project uses:
- Pytest as a testing framework
- Pyright on strict mode for type checking
- Ruff as a linter and formatter
- Hypothesis for test data generation
- Coverage on both the tests and code for test coverage
- Shellcheck for as SAST for shell scripts
It's expected that there are no errors and 100% of the code is reached and executed. The strategy for test coverage is based on parsing test specifications and not unit tests.
amati runs tests on the external specifications, detailed in tests/data/.amati.tests.yaml. To be able to run these tests the GitHub repos containing the specifications need to be available locally. Specific revisions of the repos can be downloaded by running the following, which will clone the repos into .amati/amati-tests-specs/<repo-name>.
python scripts/setup_test_specs.py
If there are some issues with the specification a JSON file detailing those should be placed into tests/data/ and the name of that file noted in tests/data/.amati.tests.yaml for the test suite to pick it up and check that the errors are expected. Any specifications that close the coverage gap are gratefully received.
To run everything, from linting, type checking to downloading test specs and building and testing the Docker image run:
sh bin/checks.sh
Docker
A Dockerfile is provided, to build:
docker build -t amati -f Dockerfile .
to run against a specific specification the location of the specification needs to be mounted in the container.
docker run -v "<path-to-specification>:/<mount-name> amati validate -s <path-to-spec> <options>
This can be tested against a provided specification, from the root directory
docker run --detach -v "$(pwd):/data" amati validate -s <path-to-spec> <options>
Data
There are some scripts to create the data needed by the project, for example, all the registered TLDs. To refresh the data, run:
python amati/amati.py refresh
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file amati-0.3.4.tar.gz.
File metadata
- Download URL: amati-0.3.4.tar.gz
- Upload date:
- Size: 147.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6af0ef46b4fb05d96f6613ade9e77a905365f17d418c2f9c542fb6434fbf41a
|
|
| MD5 |
86d239d896e428f5c0ef59f81359c0e1
|
|
| BLAKE2b-256 |
a5cc623c289f2c82bb5f72d3fee405a7e84b0203fbca5d04987e5b88132cf3b8
|
File details
Details for the file amati-0.3.4-py3-none-any.whl.
File metadata
- Download URL: amati-0.3.4-py3-none-any.whl
- Upload date:
- Size: 111.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c7670d76b0c449259b6c385f95a019d193a00431e3e43db64602415266792e0
|
|
| MD5 |
eb3d70df2cae56659affc536b9805019
|
|
| BLAKE2b-256 |
c6775863fe72851d3cb9625255fecf53a948741f1bc3e6015995fb7773d01fef
|