2021-02-26 03:55:07 +00:00
|
|
|
from typing import Any
|
|
|
|
|
2021-02-26 17:04:47 +00:00
|
|
|
import tornado.httpclient # type: ignore
|
|
|
|
import tornado.testing # type: ignore
|
2021-02-26 03:55:07 +00:00
|
|
|
|
2021-03-05 20:23:23 +00:00
|
|
|
from openapi_core import create_spec # type: ignore
|
2021-05-07 18:37:55 +00:00
|
|
|
from openapi_core.spec.paths import SpecPath # type: ignore
|
2021-02-26 03:55:07 +00:00
|
|
|
from tornado_openapi3.responses import ResponseValidator
|
|
|
|
|
|
|
|
|
|
|
|
class AsyncOpenAPITestCase(tornado.testing.AsyncHTTPTestCase):
|
2021-03-05 20:23:23 +00:00
|
|
|
"""A test case that starts up an HTTP server.
|
|
|
|
|
2021-03-19 15:17:18 +00:00
|
|
|
An async test case extending :class:`tornado.testing.AsyncHTTPTestCase`,
|
2021-03-05 20:23:23 +00:00
|
|
|
providing OpenAPI spec validation on the responses from your application and
|
|
|
|
raising errors in tests.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def spec_dict(self) -> dict:
|
|
|
|
"""The OpenAPI 3 specification
|
|
|
|
|
|
|
|
Override this in your test cases to load or define your OpenAPI 3 spec.
|
|
|
|
|
|
|
|
:rtype: dict
|
|
|
|
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
2021-02-26 17:03:04 +00:00
|
|
|
@property
|
2021-05-07 18:37:55 +00:00
|
|
|
def spec(self) -> SpecPath:
|
2021-02-27 04:03:33 +00:00
|
|
|
"""The OpenAPI 3 specification.
|
2021-02-26 17:03:04 +00:00
|
|
|
|
2021-03-05 20:23:23 +00:00
|
|
|
Override this in your test cases to customize how your OpenAPI 3 spec is
|
|
|
|
loaded and validated.
|
|
|
|
|
2021-03-19 15:17:18 +00:00
|
|
|
:rtype: :class:`openapi_core.schema.specs.model.Spec`
|
2021-02-26 17:03:04 +00:00
|
|
|
|
|
|
|
"""
|
2021-03-05 20:23:23 +00:00
|
|
|
return create_spec(self.spec_dict)
|
2021-02-26 17:03:04 +00:00
|
|
|
|
2021-03-18 15:03:36 +00:00
|
|
|
@property
|
|
|
|
def custom_formatters(self) -> dict:
|
|
|
|
"""A dictionary mapping value formats to formatter objects.
|
|
|
|
|
|
|
|
A formatter object must provide:
|
|
|
|
- validate(self, value) -> bool
|
|
|
|
- unmarshal(self, value) -> Any
|
|
|
|
"""
|
|
|
|
|
|
|
|
return dict()
|
|
|
|
|
2021-02-26 17:03:04 +00:00
|
|
|
@property
|
|
|
|
def custom_media_type_deserializers(self) -> dict:
|
|
|
|
"""A dictionary mapping media types to deserializing functions.
|
|
|
|
|
|
|
|
If your endpoints make use of content types beyond ``application/json``,
|
|
|
|
you must add them to this dictionary with a deserializing method that
|
|
|
|
converts the raw body (as ``bytes`` or ``str``) to Python objects.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return dict()
|
2021-02-26 03:55:07 +00:00
|
|
|
|
|
|
|
def setUp(self) -> None:
|
2021-02-26 17:03:04 +00:00
|
|
|
"""Hook method for setting up the test fixture before exercising it.
|
|
|
|
|
2021-03-19 15:17:18 +00:00
|
|
|
Instantiates the :class:`~tornado_openapi3.responses.ResponseValidator`
|
2021-02-26 17:03:04 +00:00
|
|
|
for this test case.
|
|
|
|
|
|
|
|
"""
|
2021-02-26 03:55:07 +00:00
|
|
|
super().setUp()
|
|
|
|
self.validator = ResponseValidator(
|
2021-02-27 04:03:33 +00:00
|
|
|
self.spec,
|
2021-03-18 15:03:36 +00:00
|
|
|
custom_formatters=self.custom_formatters,
|
2021-02-26 03:55:07 +00:00
|
|
|
custom_media_type_deserializers=self.custom_media_type_deserializers,
|
|
|
|
)
|
|
|
|
|
|
|
|
def fetch(
|
|
|
|
self, path: str, raise_error: bool = False, **kwargs: Any
|
|
|
|
) -> tornado.httpclient.HTTPResponse:
|
2021-02-26 17:03:04 +00:00
|
|
|
"""Convenience methiod to synchronously fetch a URL.
|
|
|
|
|
|
|
|
Extends the fetch method in Tornado's
|
|
|
|
:class:``tornado.testing.AsyncHTTPTestCase`` to perform OpenAPI 3
|
|
|
|
validation on the response received before returning it. If validation
|
|
|
|
fails, an :class:`openapi_core.exceptions.OpenAPIError` will be raised
|
|
|
|
describing the failure.
|
|
|
|
|
2021-04-03 05:06:02 +00:00
|
|
|
If the path begins with http:// or https://, it will be treated as a
|
|
|
|
full URL and will be fetched as-is, and no validation will occur.
|
|
|
|
|
2021-02-26 17:03:04 +00:00
|
|
|
"""
|
2021-04-03 05:06:02 +00:00
|
|
|
if path.lower().startswith(("http://", "https://")):
|
|
|
|
return super().fetch(path, raise_error=raise_error, **kwargs)
|
|
|
|
|
2021-02-26 03:55:07 +00:00
|
|
|
response = super().fetch(path, raise_error=False, **kwargs)
|
|
|
|
result = self.validator.validate(response)
|
|
|
|
result.raise_for_errors()
|
|
|
|
if raise_error:
|
|
|
|
response.rethrow()
|
|
|
|
return response
|