2020-11-26 05:05:02 +00:00
|
|
|
from openapi_core.validation.response.datatypes import ( # type: ignore
|
|
|
|
OpenAPIResponse,
|
|
|
|
ResponseValidationResult,
|
|
|
|
)
|
|
|
|
from openapi_core.validation.response import validators # type: ignore
|
|
|
|
from tornado.httpclient import HTTPResponse # type: ignore
|
|
|
|
|
|
|
|
from .requests import TornadoRequestFactory
|
|
|
|
|
|
|
|
|
|
|
|
class TornadoResponseFactory:
|
|
|
|
@classmethod
|
|
|
|
def create(cls, response: HTTPResponse) -> OpenAPIResponse:
|
|
|
|
mimetype = response.headers.get("Content-Type", "text/html")
|
|
|
|
return OpenAPIResponse(
|
2021-01-06 19:50:15 +00:00
|
|
|
data=response.body if response.body else b"",
|
2020-11-26 05:05:02 +00:00
|
|
|
status_code=response.code,
|
|
|
|
mimetype=mimetype,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class ResponseValidator(validators.ResponseValidator):
|
|
|
|
def validate(self, response: HTTPResponse) -> ResponseValidationResult:
|
|
|
|
return super().validate(
|
|
|
|
TornadoRequestFactory.create(response.request),
|
|
|
|
TornadoResponseFactory.create(response),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
__all__ = ["ResponseValidator", "TornadoResponseFactory"]
|