Django test utility for validating Swagger documentation
Project description
Django Swagger Tester
Documentation: https://django-swagger-tester.readthedocs.io
Repository: https://github.com/sondrelg/django-swagger-tester
This package is a simple test utility for your Django Swagger documentation.
Its aim is to make it easy for developers to catch and correct documentation errors in their Swagger docs by comparing documented responses to actual API responses, or validating documented request bodies using actual input serializers.
Features
The package has three main features:
Ensuring your docs comply with a single parameter naming standard.
Supported naming standards include camelCase, snake_case, kebab-case, and PascalCase.
Implementations
We currently support testing of:
Dynamically rendered Swagger docs, using drf_yasg
All implementations which render Swagger docs from a schema file (yaml or json)
If you’re using another method to generate your documentation and would like to use this package, feel free to add an issue, or create a PR. Adding a new implementation is as easy as adding the required logic needed to load the OpenAPI schema.
Installation
Install using pip:
pip install django-swagger-tester
Configuration
Settings
To use Django Swagger Settings in your project, your first need to add a SWAGGER_TESTER object to your settings.py:
SWAGGER_TESTER = {
'CASE': 'camel case',
'PATH': BASE_DIR + '/openapi-schema.yml' # not required for drf_yasg implementations
}
Parameters
CASE
The parameter naming standard you wish to enforce for your documentation.
Needs to be one of the following:
camel case
snake case
pascal case
kebab case
None
Your OpenAPI schema will be assessed to make sure all parameter names are correctly cased according to this preference. If you do not wish to enforce this check, you can specify None to skip this feature.
Example:
SWAGGER_TESTER = {
'CASE': 'snake case',
}
Default: camel case
PATH
The path to your OpenAPI specification.
Example:
SWAGGER_TESTER = {
'PATH': BASE_DIR + '/openapi-schema.yml',
}
This setting is not required if your swagger docs are generated.
CAMEL_CASE_PARSER
Should be set to True if you use djangorestframework-camel-case’s CamelCaseJSONParser or CamelCaseJSONRenderer for your API views.
By settings this to True, example values constructed in the validate_input function will be snake cased before it’s passed to a serializer. See the function docs for more info.
Example:
SWAGGER_TESTER = {
'CAMEL_CASE_PARSER': True,
}
Response Validation
To verify that your API response documentation is correct, we test the generated documentation against actual API responses.
A pytest implementation might look like this:
from django_swagger_tester.drf_yasg import validate_response # or replace drf_yasg with `static_schema`
def test_response_documentation(client):
response = client.get('api/v1/test/')
assert response.status_code == 200
assert response.json() == expected_response
# Test Swagger documentation
validate_response(response=response, method='GET', route='api/v1/test/')
A Django-test implementation might look like this:
class MyApiTest(APITestCase):
def setUp(self) -> None:
user, _ = User.objects.update_or_create(username='test_user')
self.client.force_authenticate(user=user)
self.path = '/api/v1/test/'
def test_get_200(self) -> None:
"""
Verifies that a 200 is returned for a valid GET request to the /test/ endpoint.
"""
response = self.client.get(self.path, headers={'Content-Type': 'application/json'})
expected_response = [...]
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), expected_response)
# Test Swagger documentation
validate_response(response=response, method='GET', route=self.path)
You can also test more than a single response at the time:
def test_response_documentation(client):
# 201 - Resource created
response = client.post('api/v1/test/', data=...)
validate_response(response=response, method='POST', route='api/v1/test/')
# 200 - Idempotency --> if an object exists, return it with a 200 without creating a new resource
response = client.post('api/v1/test/', data=...)
validate_response(response=response, method='POST', route='api/v1/test/')
# 400 - Bad data
response = client.post('api/v1/test/', data=bad_data)
validate_response(response=response, method='POST', route='api/v1/test/')
Input Validation
To make sure your request body documentation is accurate, and will stay accurate, it can be useful to set up tests.
Considering most APIs will use input serializers for input validation, it seems sensible to just run the example documentation on your serializer.
A pytest implementation of input validation might look like this:
from myapp.api.serializers import MyAPISerializer # <-- your custom serializer def test_request_body_documentation(client): """ Verifies that our request body documentation is representative of a valid request body. """ from django_swagger_tester.drf_yasg import validate_input # or replace drf_yasg with `static_schema` validate_input(serializer=MyAPISerializer, method='POST', route='api/v1/test/', camel_case_parser=True)
The camel_case_parser argument should be set to True if you are using CamelCaseJSONParser or CamelCaseJSONRenderer from the djangorestframework-camel-case package.
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
File details
Details for the file django-swagger-tester-1.0.4.tar.gz
.
File metadata
- Download URL: django-swagger-tester-1.0.4.tar.gz
- Upload date:
- Size: 21.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.9 CPython/3.8.3 Linux/5.3.0-1032-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54a42dcbe7ee3d0520ab610f34fd82b53fb3c65b6cbbc0307af7631bb65239c3 |
|
MD5 | 55f504f9df22aa2c2b275d3c98d2d7db |
|
BLAKE2b-256 | 7854cf692ca27ec463899b64749a6da6150adc19e8afc68a25e7701c41eab178 |
File details
Details for the file django_swagger_tester-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: django_swagger_tester-1.0.4-py3-none-any.whl
- Upload date:
- Size: 28.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.9 CPython/3.8.3 Linux/5.3.0-1032-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 351abddd9ba85482a34179e74af3d71f2ed3f501b961d688c55fd97fd2829c6a |
|
MD5 | 71fe3559897a4a34e90fe2a95aae34ed |
|
BLAKE2b-256 | f6ea491d7dedd7e560381ab1055a70ae314d6dd967b575af1703b92300e0ad29 |