Skip to main content

Django test utility for validating Swagger documentation

Project description

Django Swagger Tester

https://img.shields.io/pypi/v/django-swagger-tester.svg https://img.shields.io/pypi/pyversions/django-swagger-tester.svg https://img.shields.io/pypi/djversions/django-swagger-tester.svg Documentation Status https://codecov.io/gh/sondrelg/django-swagger-tester/branch/master/graph/badge.svg

https://img.shields.io/badge/code%20style-black-000000.svg Checked with mypy https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white

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:

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-swagger-tester-1.0.2.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

django_swagger_tester-1.0.2-py3-none-any.whl (27.7 kB view details)

Uploaded Python 3

File details

Details for the file django-swagger-tester-1.0.2.tar.gz.

File metadata

  • Download URL: django-swagger-tester-1.0.2.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.8.2 Linux/5.0.0-1035-azure

File hashes

Hashes for django-swagger-tester-1.0.2.tar.gz
Algorithm Hash digest
SHA256 2aa74c2836032429d5fccfd2f195abed6cb71c82a6bc335d5c4becff45e94e43
MD5 1389545cc57a9c6040e9bbe3d69c913f
BLAKE2b-256 f7617d488dfa55773d7d5a57213ead13ffa85f38368261391783305d49aecbfa

See more details on using hashes here.

File details

Details for the file django_swagger_tester-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_swagger_tester-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ac18616bbc65380597ab2df96e2fc4e85f0137b796c11e3c086cf568bc598948
MD5 74f8c72d0ad608ff606dd3c902152f74
BLAKE2b-256 b28076e7493336bb94df7ec4bbae16fbac84654cdd4f4edbfe154cfcaccc2bb9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page