2017-11-03 14:17:38 +00:00
|
|
|
import pytest
|
|
|
|
|
2017-11-06 13:32:31 +00:00
|
|
|
from flask.wrappers import Request, Response
|
2017-11-03 14:17:38 +00:00
|
|
|
from werkzeug.datastructures import EnvironHeaders, ImmutableMultiDict
|
|
|
|
from werkzeug.routing import Map, Rule, Subdomain
|
|
|
|
from werkzeug.test import create_environ
|
|
|
|
|
2018-04-17 14:37:52 +00:00
|
|
|
from openapi_core.wrappers.flask import (
|
|
|
|
FlaskOpenAPIRequest, FlaskOpenAPIResponse,
|
|
|
|
)
|
2019-06-11 21:29:16 +00:00
|
|
|
from openapi_core.shortcuts import create_spec
|
|
|
|
from openapi_core.validation.response.validators import ResponseValidator
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def environ_factory():
|
|
|
|
return create_environ
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def map():
|
|
|
|
return Map([
|
|
|
|
# Static URLs
|
|
|
|
Rule('/', endpoint='static/index'),
|
|
|
|
Rule('/about', endpoint='static/about'),
|
|
|
|
Rule('/help', endpoint='static/help'),
|
|
|
|
# Knowledge Base
|
|
|
|
Subdomain('kb', [
|
|
|
|
Rule('/', endpoint='kb/index'),
|
|
|
|
Rule('/browse/', endpoint='kb/browse'),
|
|
|
|
Rule('/browse/<int:id>/', endpoint='kb/browse'),
|
|
|
|
Rule('/browse/<int:id>/<int:page>', endpoint='kb/browse')
|
|
|
|
])
|
|
|
|
], default_subdomain='www')
|
2017-11-03 14:17:38 +00:00
|
|
|
|
|
|
|
|
2019-06-11 21:29:16 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def request_factory(map, environ_factory):
|
2017-11-03 14:17:38 +00:00
|
|
|
server_name = 'localhost'
|
|
|
|
|
2019-06-11 21:29:16 +00:00
|
|
|
def create_request(method, path, subdomain=None, query_string=None):
|
|
|
|
environ = environ_factory(query_string=query_string)
|
|
|
|
req = Request(environ)
|
|
|
|
urls = map.bind_to_environ(
|
|
|
|
environ, server_name=server_name, subdomain=subdomain)
|
|
|
|
req.url_rule, req.view_args = urls.match(
|
|
|
|
path, method, return_rule=True)
|
|
|
|
return req
|
|
|
|
return create_request
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def response_factory():
|
|
|
|
def create_response(data, status_code=200):
|
|
|
|
return Response(data, status=status_code)
|
|
|
|
return create_response
|
|
|
|
|
|
|
|
|
|
|
|
class TestFlaskOpenAPIRequest(object):
|
2017-11-03 14:17:38 +00:00
|
|
|
|
2017-11-14 16:05:03 +00:00
|
|
|
def test_simple(self, request_factory, request):
|
2017-11-03 14:17:38 +00:00
|
|
|
request = request_factory('GET', '/', subdomain='www')
|
|
|
|
|
|
|
|
openapi_request = FlaskOpenAPIRequest(request)
|
|
|
|
|
|
|
|
path = {}
|
|
|
|
query = ImmutableMultiDict([])
|
2017-11-14 16:05:03 +00:00
|
|
|
headers = EnvironHeaders(request.environ)
|
2017-11-03 14:17:38 +00:00
|
|
|
cookies = {}
|
|
|
|
assert openapi_request.parameters == {
|
|
|
|
'path': path,
|
|
|
|
'query': query,
|
2018-07-09 11:10:05 +00:00
|
|
|
'header': headers,
|
|
|
|
'cookie': cookies,
|
2017-11-03 14:17:38 +00:00
|
|
|
}
|
|
|
|
assert openapi_request.host_url == request.host_url
|
|
|
|
assert openapi_request.path == request.path
|
|
|
|
assert openapi_request.method == request.method.lower()
|
|
|
|
assert openapi_request.path_pattern == request.path
|
|
|
|
assert openapi_request.body == request.data
|
|
|
|
assert openapi_request.mimetype == request.mimetype
|
|
|
|
|
2017-11-14 16:05:03 +00:00
|
|
|
def test_multiple_values(self, request_factory, request):
|
2019-06-11 21:29:16 +00:00
|
|
|
request = request_factory('GET', '/', subdomain='www', query_string='a=b&a=c')
|
2017-11-14 16:05:03 +00:00
|
|
|
|
|
|
|
openapi_request = FlaskOpenAPIRequest(request)
|
|
|
|
|
|
|
|
path = {}
|
|
|
|
query = ImmutableMultiDict([
|
|
|
|
('a', 'b'), ('a', 'c'),
|
|
|
|
])
|
|
|
|
headers = EnvironHeaders(request.environ)
|
|
|
|
cookies = {}
|
|
|
|
assert openapi_request.parameters == {
|
|
|
|
'path': path,
|
|
|
|
'query': query,
|
2018-07-09 11:10:05 +00:00
|
|
|
'header': headers,
|
|
|
|
'cookie': cookies,
|
2017-11-14 16:05:03 +00:00
|
|
|
}
|
|
|
|
assert openapi_request.host_url == request.host_url
|
|
|
|
assert openapi_request.path == request.path
|
|
|
|
assert openapi_request.method == request.method.lower()
|
|
|
|
assert openapi_request.path_pattern == request.path
|
|
|
|
assert openapi_request.body == request.data
|
|
|
|
assert openapi_request.mimetype == request.mimetype
|
|
|
|
|
|
|
|
def test_url_rule(self, request_factory, request):
|
2017-11-03 14:17:38 +00:00
|
|
|
request = request_factory('GET', '/browse/12/', subdomain='kb')
|
|
|
|
|
|
|
|
openapi_request = FlaskOpenAPIRequest(request)
|
|
|
|
|
|
|
|
path = {'id': 12}
|
|
|
|
query = ImmutableMultiDict([])
|
2017-11-14 16:05:03 +00:00
|
|
|
headers = EnvironHeaders(request.environ)
|
2017-11-03 14:17:38 +00:00
|
|
|
cookies = {}
|
|
|
|
assert openapi_request.parameters == {
|
|
|
|
'path': path,
|
|
|
|
'query': query,
|
2018-07-09 11:10:05 +00:00
|
|
|
'header': headers,
|
|
|
|
'cookie': cookies,
|
2017-11-03 14:17:38 +00:00
|
|
|
}
|
|
|
|
assert openapi_request.host_url == request.host_url
|
|
|
|
assert openapi_request.path == request.path
|
|
|
|
assert openapi_request.method == request.method.lower()
|
2019-06-11 22:51:03 +00:00
|
|
|
assert openapi_request.path_pattern == '/browse/{id}/'
|
2017-11-03 14:17:38 +00:00
|
|
|
assert openapi_request.body == request.data
|
|
|
|
assert openapi_request.mimetype == request.mimetype
|
2017-11-06 13:32:31 +00:00
|
|
|
|
|
|
|
|
2017-11-06 14:05:06 +00:00
|
|
|
class TestFlaskOpenAPIResponse(object):
|
2017-11-06 13:32:31 +00:00
|
|
|
|
|
|
|
def test_invalid_server(self, response_factory):
|
2017-11-06 15:08:21 +00:00
|
|
|
response = response_factory('Not Found', status_code=404)
|
2017-11-06 13:32:31 +00:00
|
|
|
|
|
|
|
openapi_response = FlaskOpenAPIResponse(response)
|
|
|
|
|
2017-11-06 14:05:06 +00:00
|
|
|
assert openapi_response.response == response
|
|
|
|
assert openapi_response.data == response.data
|
2017-11-06 15:08:21 +00:00
|
|
|
assert openapi_response.status_code == response._status_code
|
2017-11-06 13:32:31 +00:00
|
|
|
assert openapi_response.mimetype == response.mimetype
|
2019-06-11 21:29:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestFlaskOpenAPIRequestValidation(object):
|
|
|
|
|
|
|
|
specfile = 'data/v3.0/flask_wrapper.yaml'
|
|
|
|
|
|
|
|
def test_response_validator_path_pattern(
|
|
|
|
self,
|
|
|
|
factory,
|
|
|
|
request_factory,
|
|
|
|
response_factory):
|
|
|
|
validator = ResponseValidator(create_spec(factory.spec_from_file(self.specfile)))
|
|
|
|
request = request_factory('GET', '/browse/12/', subdomain='kb')
|
|
|
|
openapi_request = FlaskOpenAPIRequest(request)
|
|
|
|
openapi_response = FlaskOpenAPIResponse(response_factory('Some item', status_code=200))
|
|
|
|
result = validator.validate(openapi_request, openapi_response)
|
|
|
|
assert not result.errors
|