Add a test case base class

Add a unittest test case class based on Tornado's AsyncHTTPTestCase
which validates responses against an OpenAPI 3 specification.
This commit is contained in:
Correl Roush 2021-02-25 22:55:07 -05:00
parent d05f5dfd32
commit 8b243ee565
2 changed files with 136 additions and 0 deletions

107
tests/test_testing.py Normal file
View file

@ -0,0 +1,107 @@
import json
from openapi_core.schema.responses.exceptions import InvalidResponse # type: ignore
import tornado.web
from tornado_openapi3.handler import OpenAPIRequestHandler
from tornado_openapi3.testing import AsyncOpenAPITestCase
def spec(responses: dict = dict()) -> dict:
return {
"openapi": "3.0.0",
"info": {
"title": "Test API",
"version": "1.0.0",
},
"components": {
"schemas": {
"resource": {
"type": "object",
"properties": {"name": {"type": "string"}},
"required": ["name"],
},
},
},
"paths": {
"/resource": {
"get": {
"responses": responses,
}
}
},
}
class BaseTestCase(AsyncOpenAPITestCase):
spec = spec()
custom_media_type_deserializers = {
"application/vnd.example.resource+json": json.loads,
}
def get_app(self) -> tornado.web.Application:
testcase = self
class ResourceHandler(OpenAPIRequestHandler):
spec = self.spec
custom_media_type_deserializers = self.custom_media_type_deserializers
async def get(self) -> None:
await testcase.get(self)
return tornado.web.Application([(r"/resource", ResourceHandler)])
async def get(self, handler: tornado.web.RequestHandler) -> None:
...
class SuccessTests(BaseTestCase):
spec = spec(
responses={
"200": {
"description": "Success",
"content": {
"application/vnd.example.resource+json": {
"schema": {"$ref": "#/components/schemas/resource"}
}
},
}
}
)
async def get(self, handler: tornado.web.RequestHandler) -> None:
handler.set_header("Content-Type", "application/vnd.example.resource+json")
handler.finish(json.dumps({"name": "Name"}))
def test_success(self) -> None:
response = self.fetch("/resource")
self.assertEqual(200, response.code)
class IncorrectResponseTests(BaseTestCase):
spec = spec(responses={"200": {"description": "Success"}})
async def get(self, handler: tornado.web.RequestHandler) -> None:
handler.set_status(418)
def test_unexpected_response_code(self) -> None:
with self.assertRaises(InvalidResponse) as context:
self.fetch("/resource")
self.assertEqual("418", context.exception.http_status)
class RaiseErrorTests(BaseTestCase):
spec = spec(
responses={
"418": {
"description": "I'm a teapot",
}
}
)
async def get(self, handler: tornado.web.RequestHandler) -> None:
handler.set_status(418)
def test_fetch_throws_error_on_expected_failure(self) -> None:
with self.assertRaises(tornado.httpclient.HTTPError) as context:
self.fetch("/resource", raise_error=True)
self.assertEqual(418, context.exception.code)

View file

@ -0,0 +1,29 @@
from typing import Any
import tornado.httpclient
import tornado.testing
from openapi_core import create_spec # type: ignore
from tornado_openapi3.responses import ResponseValidator
class AsyncOpenAPITestCase(tornado.testing.AsyncHTTPTestCase):
spec: dict = {}
custom_media_type_deserializers: dict = {}
def setUp(self) -> None:
super().setUp()
self.validator = ResponseValidator(
create_spec(self.spec),
custom_media_type_deserializers=self.custom_media_type_deserializers,
)
def fetch(
self, path: str, raise_error: bool = False, **kwargs: Any
) -> tornado.httpclient.HTTPResponse:
response = super().fetch(path, raise_error=False, **kwargs)
result = self.validator.validate(response)
result.raise_for_errors()
if raise_error:
response.rethrow()
return response