2017-09-21 11:51:37 +00:00
|
|
|
import json
|
|
|
|
import pytest
|
|
|
|
from six import iteritems
|
|
|
|
|
2018-08-21 17:33:24 +00:00
|
|
|
from openapi_core.extensions.models.models import BaseModel
|
2018-04-18 10:39:03 +00:00
|
|
|
from openapi_core.schema.media_types.exceptions import (
|
|
|
|
InvalidContentType, InvalidMediaTypeValue,
|
2017-09-21 11:51:37 +00:00
|
|
|
)
|
2018-04-17 12:18:40 +00:00
|
|
|
from openapi_core.schema.media_types.models import MediaType
|
|
|
|
from openapi_core.schema.operations.models import Operation
|
2018-04-18 10:39:03 +00:00
|
|
|
from openapi_core.schema.parameters.exceptions import (
|
|
|
|
MissingRequiredParameter, InvalidParameterValue, EmptyParameterValue,
|
|
|
|
)
|
2018-04-17 12:18:40 +00:00
|
|
|
from openapi_core.schema.parameters.models import Parameter
|
|
|
|
from openapi_core.schema.paths.models import Path
|
|
|
|
from openapi_core.schema.request_bodies.models import RequestBody
|
|
|
|
from openapi_core.schema.responses.models import Response
|
2018-04-18 10:39:03 +00:00
|
|
|
from openapi_core.schema.schemas.exceptions import (
|
2018-05-25 15:32:09 +00:00
|
|
|
UndefinedSchemaProperty, MissingSchemaProperty, NoOneOfSchema,
|
2018-04-18 10:39:03 +00:00
|
|
|
)
|
2018-04-17 12:18:40 +00:00
|
|
|
from openapi_core.schema.schemas.models import Schema
|
2018-04-18 10:39:03 +00:00
|
|
|
from openapi_core.schema.servers.exceptions import InvalidServer
|
2018-04-17 12:18:40 +00:00
|
|
|
from openapi_core.schema.servers.models import Server, ServerVariable
|
2017-09-21 11:51:37 +00:00
|
|
|
from openapi_core.shortcuts import create_spec
|
2018-04-17 12:38:23 +00:00
|
|
|
from openapi_core.validation.request.validators import RequestValidator
|
|
|
|
from openapi_core.validation.response.validators import ResponseValidator
|
2018-04-17 14:37:52 +00:00
|
|
|
from openapi_core.wrappers.mock import MockRequest, MockResponse
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestPetstore(object):
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def spec_dict(self, factory):
|
|
|
|
return factory.spec_from_file("data/v3.0/petstore.yaml")
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def spec(self, spec_dict):
|
|
|
|
return create_spec(spec_dict)
|
|
|
|
|
2017-11-06 16:50:00 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def request_validator(self, spec):
|
|
|
|
return RequestValidator(spec)
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def response_validator(self, spec):
|
|
|
|
return ResponseValidator(spec)
|
|
|
|
|
2017-09-21 11:51:37 +00:00
|
|
|
def test_spec(self, spec, spec_dict):
|
2017-09-25 11:22:55 +00:00
|
|
|
url = 'http://petstore.swagger.io/v1'
|
2017-09-22 08:14:07 +00:00
|
|
|
assert spec.info.title == spec_dict['info']['title']
|
|
|
|
assert spec.info.version == spec_dict['info']['version']
|
|
|
|
|
2017-09-25 11:22:55 +00:00
|
|
|
assert spec.get_server_url() == url
|
|
|
|
|
|
|
|
for idx, server in enumerate(spec.servers):
|
|
|
|
assert type(server) == Server
|
|
|
|
|
|
|
|
server_spec = spec_dict['servers'][idx]
|
|
|
|
assert server.url == server_spec['url']
|
|
|
|
assert server.default_url == url
|
|
|
|
|
|
|
|
for variable_name, variable in iteritems(server.variables):
|
|
|
|
assert type(variable) == ServerVariable
|
|
|
|
assert variable.name == variable_name
|
|
|
|
|
|
|
|
variable_spec = server_spec['variables'][variable_name]
|
|
|
|
assert variable.default == variable_spec['default']
|
|
|
|
assert variable.enum == variable_spec.get('enum')
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
for path_name, path in iteritems(spec.paths):
|
|
|
|
assert type(path) == Path
|
|
|
|
assert path.name == path_name
|
|
|
|
|
|
|
|
for http_method, operation in iteritems(path.operations):
|
|
|
|
assert type(operation) == Operation
|
|
|
|
assert operation.path_name == path_name
|
|
|
|
assert operation.http_method == http_method
|
2018-07-23 16:02:51 +00:00
|
|
|
assert operation.operation_id is not None
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
operation_spec = spec_dict['paths'][path_name][http_method]
|
2017-11-06 11:00:13 +00:00
|
|
|
|
|
|
|
responses_spec = operation_spec.get('responses')
|
|
|
|
|
|
|
|
for http_status, response in iteritems(operation.responses):
|
|
|
|
assert type(response) == Response
|
|
|
|
assert response.http_status == http_status
|
|
|
|
|
|
|
|
response_spec = responses_spec[http_status]
|
2017-11-06 14:57:08 +00:00
|
|
|
|
|
|
|
if not response_spec:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# @todo: test with defererence
|
|
|
|
if '$ref' in response_spec:
|
|
|
|
continue
|
|
|
|
|
2017-11-06 11:00:13 +00:00
|
|
|
description_spec = response_spec['description']
|
|
|
|
|
|
|
|
assert response.description == description_spec
|
|
|
|
|
|
|
|
for mimetype, media_type in iteritems(response.content):
|
|
|
|
assert type(media_type) == MediaType
|
|
|
|
assert media_type.mimetype == mimetype
|
|
|
|
|
|
|
|
content_spec = response_spec['content'][mimetype]
|
2018-07-24 07:47:02 +00:00
|
|
|
|
|
|
|
example_spec = content_spec.get('example')
|
|
|
|
assert media_type.example == example_spec
|
|
|
|
|
2017-11-06 11:00:13 +00:00
|
|
|
schema_spec = content_spec.get('schema')
|
|
|
|
assert bool(schema_spec) == bool(media_type.schema)
|
|
|
|
|
|
|
|
if not schema_spec:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# @todo: test with defererence
|
|
|
|
if '$ref' in schema_spec:
|
|
|
|
continue
|
|
|
|
|
|
|
|
assert type(media_type.schema) == Schema
|
2018-05-30 13:46:54 +00:00
|
|
|
assert media_type.schema.type.value ==\
|
|
|
|
schema_spec['type']
|
2017-11-06 11:00:13 +00:00
|
|
|
assert media_type.schema.required == schema_spec.get(
|
2017-11-06 16:50:00 +00:00
|
|
|
'required', [])
|
2017-11-06 11:00:13 +00:00
|
|
|
|
|
|
|
for parameter_name, parameter in iteritems(
|
|
|
|
response.headers):
|
|
|
|
assert type(parameter) == Parameter
|
|
|
|
assert parameter.name == parameter_name
|
|
|
|
|
|
|
|
headers_spec = response_spec['headers']
|
|
|
|
parameter_spec = headers_spec[parameter_name]
|
|
|
|
schema_spec = parameter_spec.get('schema')
|
|
|
|
assert bool(schema_spec) == bool(parameter.schema)
|
|
|
|
|
|
|
|
if not schema_spec:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# @todo: test with defererence
|
|
|
|
if '$ref' in schema_spec:
|
|
|
|
continue
|
|
|
|
|
|
|
|
assert type(parameter.schema) == Schema
|
2017-11-14 13:36:05 +00:00
|
|
|
assert parameter.schema.type.value ==\
|
|
|
|
schema_spec['type']
|
2018-05-30 08:41:34 +00:00
|
|
|
assert parameter.schema.format ==\
|
2017-11-14 13:36:05 +00:00
|
|
|
schema_spec.get('format')
|
2017-11-06 11:00:13 +00:00
|
|
|
assert parameter.schema.required == schema_spec.get(
|
2017-11-06 16:50:00 +00:00
|
|
|
'required', [])
|
2017-11-06 11:00:13 +00:00
|
|
|
|
2017-09-21 11:51:37 +00:00
|
|
|
request_body_spec = operation_spec.get('requestBody')
|
|
|
|
|
|
|
|
assert bool(request_body_spec) == bool(operation.request_body)
|
|
|
|
|
|
|
|
if not request_body_spec:
|
|
|
|
continue
|
|
|
|
|
|
|
|
assert type(operation.request_body) == RequestBody
|
|
|
|
assert bool(operation.request_body.required) ==\
|
|
|
|
request_body_spec.get('required', False)
|
|
|
|
|
2017-10-09 14:57:07 +00:00
|
|
|
for mimetype, media_type in iteritems(
|
2017-09-21 11:51:37 +00:00
|
|
|
operation.request_body.content):
|
|
|
|
assert type(media_type) == MediaType
|
2017-10-09 14:57:07 +00:00
|
|
|
assert media_type.mimetype == mimetype
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-10-09 14:57:07 +00:00
|
|
|
content_spec = request_body_spec['content'][mimetype]
|
2017-09-21 11:51:37 +00:00
|
|
|
schema_spec = content_spec.get('schema')
|
|
|
|
assert bool(schema_spec) == bool(media_type.schema)
|
|
|
|
|
|
|
|
if not schema_spec:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# @todo: test with defererence
|
|
|
|
if '$ref' in schema_spec:
|
|
|
|
continue
|
|
|
|
|
|
|
|
assert type(media_type.schema) == Schema
|
2017-11-14 13:36:05 +00:00
|
|
|
assert media_type.schema.type.value ==\
|
|
|
|
schema_spec['type']
|
2018-05-30 08:41:34 +00:00
|
|
|
assert media_type.schema.format ==\
|
2017-11-14 13:36:05 +00:00
|
|
|
schema_spec.get('format')
|
2017-09-21 11:51:37 +00:00
|
|
|
assert media_type.schema.required == schema_spec.get(
|
|
|
|
'required', False)
|
|
|
|
|
2017-09-22 08:14:07 +00:00
|
|
|
if not spec.components:
|
|
|
|
return
|
|
|
|
|
|
|
|
for schema_name, schema in iteritems(spec.components.schemas):
|
|
|
|
assert type(schema) == Schema
|
|
|
|
|
2017-11-06 16:50:00 +00:00
|
|
|
def test_get_pets(self, spec, response_validator):
|
2017-09-25 11:22:55 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
2017-09-21 11:51:37 +00:00
|
|
|
query_params = {
|
|
|
|
'limit': '20',
|
|
|
|
}
|
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 13:20:23 +00:00
|
|
|
host_url, 'GET', '/pets',
|
2017-09-25 11:22:55 +00:00
|
|
|
path_pattern=path_pattern, args=query_params,
|
|
|
|
)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
2017-09-25 13:20:23 +00:00
|
|
|
body = request.get_body(spec)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
assert parameters == {
|
|
|
|
'query': {
|
|
|
|
'limit': 20,
|
2017-10-18 13:42:10 +00:00
|
|
|
'page': 1,
|
2017-10-19 11:28:28 +00:00
|
|
|
'search': '',
|
2017-09-21 11:51:37 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-25 13:20:23 +00:00
|
|
|
assert body is None
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-06 16:50:00 +00:00
|
|
|
data_json = {
|
|
|
|
'data': [],
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
response = MockResponse(data)
|
|
|
|
|
|
|
|
response_result = response_validator.validate(request, response)
|
2017-11-14 13:36:05 +00:00
|
|
|
|
|
|
|
assert response_result.errors == []
|
2018-08-21 17:33:24 +00:00
|
|
|
assert isinstance(response_result.data, BaseModel)
|
|
|
|
assert response_result.data.data == []
|
2017-11-14 13:36:05 +00:00
|
|
|
|
2017-11-14 16:05:03 +00:00
|
|
|
def test_get_pets_ids_param(self, spec, response_validator):
|
2017-11-14 13:36:05 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
|
|
|
query_params = {
|
|
|
|
'limit': '20',
|
|
|
|
'ids': ['12', '13'],
|
|
|
|
}
|
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'GET', '/pets',
|
|
|
|
path_pattern=path_pattern, args=query_params,
|
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
assert parameters == {
|
|
|
|
'query': {
|
|
|
|
'limit': 20,
|
|
|
|
'page': 1,
|
|
|
|
'search': '',
|
|
|
|
'ids': [12, 13],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert body is None
|
|
|
|
|
|
|
|
data_json = {
|
|
|
|
'data': [],
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
response = MockResponse(data)
|
|
|
|
|
|
|
|
response_result = response_validator.validate(request, response)
|
2017-11-14 16:05:03 +00:00
|
|
|
|
|
|
|
assert response_result.errors == []
|
2018-08-21 17:33:24 +00:00
|
|
|
assert isinstance(response_result.data, BaseModel)
|
|
|
|
assert response_result.data.data == []
|
2017-11-14 16:05:03 +00:00
|
|
|
|
|
|
|
def test_get_pets_tags_param(self, spec, response_validator):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
|
|
|
query_params = [
|
|
|
|
('limit', '20'),
|
|
|
|
('tags', 'cats,dogs'),
|
|
|
|
]
|
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'GET', '/pets',
|
|
|
|
path_pattern=path_pattern, args=query_params,
|
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
assert parameters == {
|
|
|
|
'query': {
|
|
|
|
'limit': 20,
|
|
|
|
'page': 1,
|
|
|
|
'search': '',
|
|
|
|
'tags': ['cats', 'dogs'],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert body is None
|
|
|
|
|
|
|
|
data_json = {
|
|
|
|
'data': [],
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
response = MockResponse(data)
|
|
|
|
|
|
|
|
response_result = response_validator.validate(request, response)
|
2017-11-06 16:50:00 +00:00
|
|
|
|
|
|
|
assert response_result.errors == []
|
2018-08-21 17:33:24 +00:00
|
|
|
assert isinstance(response_result.data, BaseModel)
|
|
|
|
assert response_result.data.data == []
|
2017-11-06 16:50:00 +00:00
|
|
|
|
2018-08-17 10:42:52 +00:00
|
|
|
def test_get_pets_parameter_deserialization_error(self, spec):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
|
|
|
query_params = {
|
|
|
|
'limit': 1,
|
|
|
|
'tags': 12,
|
|
|
|
}
|
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'GET', '/pets',
|
|
|
|
path_pattern=path_pattern, args=query_params,
|
|
|
|
)
|
|
|
|
|
|
|
|
with pytest.raises(InvalidParameterValue):
|
|
|
|
request.get_parameters(spec)
|
|
|
|
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
assert body is None
|
|
|
|
|
2017-09-25 14:15:00 +00:00
|
|
|
def test_get_pets_wrong_parameter_type(self, spec):
|
2017-09-25 11:22:55 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
2017-09-25 14:15:00 +00:00
|
|
|
query_params = {
|
|
|
|
'limit': 'twenty',
|
|
|
|
}
|
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 13:20:23 +00:00
|
|
|
host_url, 'GET', '/pets',
|
2017-09-25 14:15:00 +00:00
|
|
|
path_pattern=path_pattern, args=query_params,
|
2017-09-25 11:22:55 +00:00
|
|
|
)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
with pytest.raises(InvalidParameterValue):
|
2017-09-21 11:51:37 +00:00
|
|
|
request.get_parameters(spec)
|
|
|
|
|
2017-09-25 13:20:23 +00:00
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
assert body is None
|
|
|
|
|
2017-09-25 14:15:00 +00:00
|
|
|
def test_get_pets_raises_missing_required_param(self, spec):
|
2017-09-25 11:22:55 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 13:20:23 +00:00
|
|
|
host_url, 'GET', '/pets',
|
2017-09-25 14:15:00 +00:00
|
|
|
path_pattern=path_pattern,
|
2017-09-25 11:22:55 +00:00
|
|
|
)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2018-04-18 10:39:03 +00:00
|
|
|
with pytest.raises(MissingRequiredParameter):
|
2017-09-25 14:15:00 +00:00
|
|
|
request.get_parameters(spec)
|
|
|
|
|
2017-09-25 13:20:23 +00:00
|
|
|
body = request.get_body(spec)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-09-25 13:20:23 +00:00
|
|
|
assert body is None
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
def test_get_pets_empty_value(self, spec):
|
2017-09-25 11:22:55 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
2017-09-21 11:51:37 +00:00
|
|
|
query_params = {
|
|
|
|
'limit': '',
|
|
|
|
}
|
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 13:20:23 +00:00
|
|
|
host_url, 'GET', '/pets',
|
2017-09-25 11:22:55 +00:00
|
|
|
path_pattern=path_pattern, args=query_params,
|
|
|
|
)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2018-04-18 10:39:03 +00:00
|
|
|
with pytest.raises(EmptyParameterValue):
|
2017-10-18 13:42:10 +00:00
|
|
|
request.get_parameters(spec)
|
2017-09-25 13:20:23 +00:00
|
|
|
body = request.get_body(spec)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-09-25 13:20:23 +00:00
|
|
|
assert body is None
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
def test_get_pets_none_value(self, spec):
|
2017-09-25 11:22:55 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
2017-09-21 11:51:37 +00:00
|
|
|
query_params = {
|
|
|
|
'limit': None,
|
|
|
|
}
|
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 13:20:23 +00:00
|
|
|
host_url, 'GET', '/pets',
|
2017-09-25 11:22:55 +00:00
|
|
|
path_pattern=path_pattern, args=query_params,
|
|
|
|
)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
|
|
|
assert parameters == {
|
|
|
|
'query': {
|
|
|
|
'limit': None,
|
2017-10-18 13:42:10 +00:00
|
|
|
'page': 1,
|
2017-10-19 11:28:28 +00:00
|
|
|
'search': '',
|
2017-09-21 11:51:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-25 13:20:23 +00:00
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
assert body is None
|
|
|
|
|
2018-05-25 15:32:09 +00:00
|
|
|
def test_post_birds(self, spec, spec_dict):
|
2017-09-25 11:22:55 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
2017-09-22 08:14:07 +00:00
|
|
|
pet_name = 'Cat'
|
|
|
|
pet_tag = 'cats'
|
|
|
|
pet_street = 'Piekna'
|
|
|
|
pet_city = 'Warsaw'
|
2018-02-28 12:01:05 +00:00
|
|
|
pet_healthy = False
|
2017-09-21 11:51:37 +00:00
|
|
|
data_json = {
|
2017-09-22 08:14:07 +00:00
|
|
|
'name': pet_name,
|
|
|
|
'tag': pet_tag,
|
2017-10-17 13:46:09 +00:00
|
|
|
'position': '2',
|
2017-09-22 08:14:07 +00:00
|
|
|
'address': {
|
|
|
|
'street': pet_street,
|
|
|
|
'city': pet_city,
|
2018-02-28 12:01:05 +00:00
|
|
|
},
|
|
|
|
'healthy': pet_healthy,
|
2018-05-25 15:32:09 +00:00
|
|
|
'wings': {
|
|
|
|
'healthy': pet_healthy,
|
|
|
|
}
|
2018-02-28 12:01:05 +00:00
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
2018-07-09 11:10:05 +00:00
|
|
|
headers = {
|
|
|
|
'api_key': '12345',
|
|
|
|
}
|
|
|
|
cookies = {
|
|
|
|
'user': '123',
|
|
|
|
}
|
2018-02-28 12:01:05 +00:00
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'POST', '/pets',
|
|
|
|
path_pattern=path_pattern, data=data,
|
2018-07-09 11:10:05 +00:00
|
|
|
headers=headers, cookies=cookies,
|
2018-02-28 12:01:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
2018-07-09 11:10:05 +00:00
|
|
|
assert parameters == {
|
|
|
|
'header': {
|
|
|
|
'api_key': 12345,
|
|
|
|
},
|
|
|
|
'cookie': {
|
|
|
|
'user': 123,
|
|
|
|
},
|
|
|
|
}
|
2018-02-28 12:01:05 +00:00
|
|
|
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
schemas = spec_dict['components']['schemas']
|
|
|
|
pet_model = schemas['PetCreate']['x-model']
|
|
|
|
address_model = schemas['Address']['x-model']
|
|
|
|
assert body.__class__.__name__ == pet_model
|
|
|
|
assert body.name == pet_name
|
|
|
|
assert body.tag == pet_tag
|
|
|
|
assert body.position == 2
|
|
|
|
assert body.address.__class__.__name__ == address_model
|
|
|
|
assert body.address.street == pet_street
|
|
|
|
assert body.address.city == pet_city
|
|
|
|
assert body.healthy == pet_healthy
|
|
|
|
|
2018-05-25 15:32:09 +00:00
|
|
|
def test_post_cats(self, spec, spec_dict):
|
2018-02-28 12:01:05 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
|
|
|
pet_name = 'Cat'
|
|
|
|
pet_tag = 'cats'
|
|
|
|
pet_street = 'Piekna'
|
|
|
|
pet_city = 'Warsaw'
|
2018-05-25 15:32:09 +00:00
|
|
|
pet_healthy = False
|
2018-02-28 12:01:05 +00:00
|
|
|
data_json = {
|
|
|
|
'name': pet_name,
|
|
|
|
'tag': pet_tag,
|
|
|
|
'position': '2',
|
|
|
|
'address': {
|
|
|
|
'street': pet_street,
|
|
|
|
'city': pet_city,
|
|
|
|
},
|
|
|
|
'healthy': pet_healthy,
|
2018-05-25 15:32:09 +00:00
|
|
|
'ears': {
|
|
|
|
'healthy': pet_healthy,
|
|
|
|
}
|
2017-09-21 11:51:37 +00:00
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
2018-07-09 11:10:05 +00:00
|
|
|
headers = {
|
|
|
|
'api_key': '12345',
|
|
|
|
}
|
|
|
|
cookies = {
|
|
|
|
'user': '123',
|
|
|
|
}
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 13:20:23 +00:00
|
|
|
host_url, 'POST', '/pets',
|
2017-09-25 11:22:55 +00:00
|
|
|
path_pattern=path_pattern, data=data,
|
2018-07-09 11:10:05 +00:00
|
|
|
headers=headers, cookies=cookies,
|
2017-09-25 11:22:55 +00:00
|
|
|
)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-09-25 13:20:23 +00:00
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
2018-07-09 11:10:05 +00:00
|
|
|
assert parameters == {
|
|
|
|
'header': {
|
|
|
|
'api_key': 12345,
|
|
|
|
},
|
|
|
|
'cookie': {
|
|
|
|
'user': 123,
|
|
|
|
},
|
|
|
|
}
|
2017-09-25 13:20:23 +00:00
|
|
|
|
|
|
|
body = request.get_body(spec)
|
2017-09-22 08:14:07 +00:00
|
|
|
|
|
|
|
schemas = spec_dict['components']['schemas']
|
|
|
|
pet_model = schemas['PetCreate']['x-model']
|
|
|
|
address_model = schemas['Address']['x-model']
|
2017-09-25 13:20:23 +00:00
|
|
|
assert body.__class__.__name__ == pet_model
|
|
|
|
assert body.name == pet_name
|
|
|
|
assert body.tag == pet_tag
|
2017-10-17 13:46:09 +00:00
|
|
|
assert body.position == 2
|
2017-09-25 13:20:23 +00:00
|
|
|
assert body.address.__class__.__name__ == address_model
|
|
|
|
assert body.address.street == pet_street
|
|
|
|
assert body.address.city == pet_city
|
2018-05-25 15:32:09 +00:00
|
|
|
assert body.healthy == pet_healthy
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2018-05-25 15:32:09 +00:00
|
|
|
def test_post_cats_boolean_string(self, spec, spec_dict):
|
2017-09-25 14:15:00 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
2018-05-25 15:32:09 +00:00
|
|
|
pet_name = 'Cat'
|
|
|
|
pet_tag = 'cats'
|
|
|
|
pet_street = 'Piekna'
|
|
|
|
pet_city = 'Warsaw'
|
|
|
|
pet_healthy = 'false'
|
|
|
|
data_json = {
|
|
|
|
'name': pet_name,
|
|
|
|
'tag': pet_tag,
|
|
|
|
'position': '2',
|
|
|
|
'address': {
|
|
|
|
'street': pet_street,
|
|
|
|
'city': pet_city,
|
|
|
|
},
|
|
|
|
'healthy': pet_healthy,
|
|
|
|
'ears': {
|
|
|
|
'healthy': pet_healthy,
|
|
|
|
}
|
|
|
|
}
|
2017-09-25 14:15:00 +00:00
|
|
|
data = json.dumps(data_json)
|
2018-07-09 11:10:05 +00:00
|
|
|
headers = {
|
|
|
|
'api_key': '12345',
|
|
|
|
}
|
|
|
|
cookies = {
|
|
|
|
'user': '123',
|
|
|
|
}
|
2017-09-25 14:15:00 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 14:15:00 +00:00
|
|
|
host_url, 'POST', '/pets',
|
|
|
|
path_pattern=path_pattern, data=data,
|
2018-07-09 11:10:05 +00:00
|
|
|
headers=headers, cookies=cookies,
|
2017-09-25 14:15:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
2018-07-09 11:10:05 +00:00
|
|
|
assert parameters == {
|
|
|
|
'header': {
|
|
|
|
'api_key': 12345,
|
|
|
|
},
|
|
|
|
'cookie': {
|
|
|
|
'user': 123,
|
|
|
|
},
|
|
|
|
}
|
2017-09-25 14:15:00 +00:00
|
|
|
|
2018-05-25 15:32:09 +00:00
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
schemas = spec_dict['components']['schemas']
|
|
|
|
pet_model = schemas['PetCreate']['x-model']
|
|
|
|
address_model = schemas['Address']['x-model']
|
|
|
|
assert body.__class__.__name__ == pet_model
|
|
|
|
assert body.name == pet_name
|
|
|
|
assert body.tag == pet_tag
|
|
|
|
assert body.position == 2
|
|
|
|
assert body.address.__class__.__name__ == address_model
|
|
|
|
assert body.address.street == pet_street
|
|
|
|
assert body.address.city == pet_city
|
|
|
|
assert body.healthy is False
|
2017-09-25 14:15:00 +00:00
|
|
|
|
2018-05-25 15:32:09 +00:00
|
|
|
def test_post_no_one_of_schema(self, spec, spec_dict):
|
2017-09-25 14:15:00 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
|
|
|
pet_name = 'Cat'
|
|
|
|
alias = 'kitty'
|
|
|
|
data_json = {
|
|
|
|
'name': pet_name,
|
|
|
|
'alias': alias,
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
2018-07-09 11:10:05 +00:00
|
|
|
headers = {
|
|
|
|
'api_key': '12345',
|
|
|
|
}
|
|
|
|
cookies = {
|
|
|
|
'user': '123',
|
|
|
|
}
|
2017-09-25 14:15:00 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 14:15:00 +00:00
|
|
|
host_url, 'POST', '/pets',
|
|
|
|
path_pattern=path_pattern, data=data,
|
2018-07-09 11:10:05 +00:00
|
|
|
headers=headers, cookies=cookies,
|
2017-09-25 14:15:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
2018-07-09 11:10:05 +00:00
|
|
|
assert parameters == {
|
|
|
|
'header': {
|
|
|
|
'api_key': 12345,
|
|
|
|
},
|
|
|
|
'cookie': {
|
|
|
|
'user': 123,
|
|
|
|
},
|
|
|
|
}
|
2017-09-25 14:15:00 +00:00
|
|
|
|
2018-05-25 15:32:09 +00:00
|
|
|
with pytest.raises(NoOneOfSchema):
|
2017-09-25 14:15:00 +00:00
|
|
|
request.get_body(spec)
|
|
|
|
|
2018-05-25 15:32:09 +00:00
|
|
|
def test_post_cats_only_required_body(self, spec, spec_dict):
|
2017-09-25 14:15:00 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
|
|
|
pet_name = 'Cat'
|
2018-05-25 15:32:09 +00:00
|
|
|
pet_healthy = True
|
2017-09-25 14:15:00 +00:00
|
|
|
data_json = {
|
|
|
|
'name': pet_name,
|
2018-05-25 15:32:09 +00:00
|
|
|
'ears': {
|
|
|
|
'healthy': pet_healthy,
|
|
|
|
}
|
2017-09-25 14:15:00 +00:00
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
2018-07-09 11:10:05 +00:00
|
|
|
headers = {
|
|
|
|
'api_key': '12345',
|
|
|
|
}
|
|
|
|
cookies = {
|
|
|
|
'user': '123',
|
|
|
|
}
|
2017-09-25 14:15:00 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 14:15:00 +00:00
|
|
|
host_url, 'POST', '/pets',
|
|
|
|
path_pattern=path_pattern, data=data,
|
2018-07-09 11:10:05 +00:00
|
|
|
headers=headers, cookies=cookies,
|
2017-09-25 14:15:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
2018-07-09 11:10:05 +00:00
|
|
|
assert parameters == {
|
|
|
|
'header': {
|
|
|
|
'api_key': 12345,
|
|
|
|
},
|
|
|
|
'cookie': {
|
|
|
|
'user': 123,
|
|
|
|
},
|
|
|
|
}
|
2017-09-25 14:15:00 +00:00
|
|
|
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
schemas = spec_dict['components']['schemas']
|
|
|
|
pet_model = schemas['PetCreate']['x-model']
|
|
|
|
assert body.__class__.__name__ == pet_model
|
|
|
|
assert body.name == pet_name
|
2017-10-17 13:02:21 +00:00
|
|
|
assert not hasattr(body, 'tag')
|
|
|
|
assert not hasattr(body, 'address')
|
2017-09-25 14:15:00 +00:00
|
|
|
|
2017-10-09 14:57:07 +00:00
|
|
|
def test_post_pets_raises_invalid_mimetype(self, spec):
|
2017-09-25 11:22:55 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
2017-09-21 11:51:37 +00:00
|
|
|
data_json = {
|
|
|
|
'name': 'Cat',
|
|
|
|
'tag': 'cats',
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
2018-07-09 11:10:05 +00:00
|
|
|
headers = {
|
|
|
|
'api_key': '12345',
|
|
|
|
}
|
|
|
|
cookies = {
|
|
|
|
'user': '123',
|
|
|
|
}
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 13:20:23 +00:00
|
|
|
host_url, 'POST', '/pets',
|
2017-10-09 14:57:07 +00:00
|
|
|
path_pattern=path_pattern, data=data, mimetype='text/html',
|
2018-07-09 11:10:05 +00:00
|
|
|
headers=headers, cookies=cookies,
|
2017-09-25 11:22:55 +00:00
|
|
|
)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-09-25 13:20:23 +00:00
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
2018-07-09 11:10:05 +00:00
|
|
|
assert parameters == {
|
|
|
|
'header': {
|
|
|
|
'api_key': 12345,
|
|
|
|
},
|
|
|
|
'cookie': {
|
|
|
|
'user': 123,
|
|
|
|
},
|
|
|
|
}
|
2017-09-25 13:20:23 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
with pytest.raises(InvalidContentType):
|
2017-09-21 11:51:37 +00:00
|
|
|
request.get_body(spec)
|
|
|
|
|
2018-07-09 11:10:05 +00:00
|
|
|
def test_post_pets_missing_cookie(self, spec, spec_dict):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
|
|
|
pet_name = 'Cat'
|
|
|
|
pet_healthy = True
|
|
|
|
data_json = {
|
|
|
|
'name': pet_name,
|
|
|
|
'ears': {
|
|
|
|
'healthy': pet_healthy,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
headers = {
|
|
|
|
'api_key': '12345',
|
|
|
|
}
|
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'POST', '/pets',
|
|
|
|
path_pattern=path_pattern, data=data,
|
|
|
|
headers=headers,
|
|
|
|
)
|
|
|
|
|
|
|
|
with pytest.raises(MissingRequiredParameter):
|
|
|
|
request.get_parameters(spec)
|
|
|
|
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
schemas = spec_dict['components']['schemas']
|
|
|
|
pet_model = schemas['PetCreate']['x-model']
|
|
|
|
assert body.__class__.__name__ == pet_model
|
|
|
|
assert body.name == pet_name
|
|
|
|
assert not hasattr(body, 'tag')
|
|
|
|
assert not hasattr(body, 'address')
|
|
|
|
|
|
|
|
def test_post_pets_missing_header(self, spec, spec_dict):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
|
|
|
pet_name = 'Cat'
|
|
|
|
pet_healthy = True
|
|
|
|
data_json = {
|
|
|
|
'name': pet_name,
|
|
|
|
'ears': {
|
|
|
|
'healthy': pet_healthy,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
cookies = {
|
|
|
|
'user': '123',
|
|
|
|
}
|
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'POST', '/pets',
|
|
|
|
path_pattern=path_pattern, data=data,
|
|
|
|
cookies=cookies,
|
|
|
|
)
|
|
|
|
|
|
|
|
with pytest.raises(MissingRequiredParameter):
|
|
|
|
request.get_parameters(spec)
|
|
|
|
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
schemas = spec_dict['components']['schemas']
|
|
|
|
pet_model = schemas['PetCreate']['x-model']
|
|
|
|
assert body.__class__.__name__ == pet_model
|
|
|
|
assert body.name == pet_name
|
|
|
|
assert not hasattr(body, 'tag')
|
|
|
|
assert not hasattr(body, 'address')
|
|
|
|
|
2017-09-25 11:22:55 +00:00
|
|
|
def test_post_pets_raises_invalid_server_error(self, spec):
|
|
|
|
host_url = 'http://flowerstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets'
|
|
|
|
data_json = {
|
|
|
|
'name': 'Cat',
|
|
|
|
'tag': 'cats',
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
2018-07-09 11:10:05 +00:00
|
|
|
headers = {
|
|
|
|
'api_key': '12345',
|
|
|
|
}
|
|
|
|
cookies = {
|
|
|
|
'user': '123',
|
|
|
|
}
|
2017-09-25 11:22:55 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 13:20:23 +00:00
|
|
|
host_url, 'POST', '/pets',
|
2017-10-09 14:57:07 +00:00
|
|
|
path_pattern=path_pattern, data=data, mimetype='text/html',
|
2018-07-09 11:10:05 +00:00
|
|
|
headers=headers, cookies=cookies,
|
2017-09-25 11:22:55 +00:00
|
|
|
)
|
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
with pytest.raises(InvalidServer):
|
2017-09-25 13:20:23 +00:00
|
|
|
request.get_parameters(spec)
|
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
with pytest.raises(InvalidServer):
|
2017-09-25 11:22:55 +00:00
|
|
|
request.get_body(spec)
|
|
|
|
|
2017-11-06 16:50:00 +00:00
|
|
|
def test_get_pet(self, spec, response_validator):
|
2017-09-25 11:22:55 +00:00
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets/{petId}'
|
2017-09-21 11:51:37 +00:00
|
|
|
view_args = {
|
|
|
|
'petId': '1',
|
|
|
|
}
|
2017-11-03 11:18:48 +00:00
|
|
|
request = MockRequest(
|
2017-09-25 13:20:23 +00:00
|
|
|
host_url, 'GET', '/pets/1',
|
2017-09-25 11:22:55 +00:00
|
|
|
path_pattern=path_pattern, view_args=view_args,
|
2017-09-21 11:51:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
|
|
|
assert parameters == {
|
|
|
|
'path': {
|
|
|
|
'petId': 1,
|
|
|
|
}
|
|
|
|
}
|
2017-09-25 13:20:23 +00:00
|
|
|
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
assert body is None
|
2017-11-06 16:50:00 +00:00
|
|
|
|
2018-08-21 17:33:24 +00:00
|
|
|
data_id = 1
|
|
|
|
data_name = 'test'
|
2017-11-06 16:50:00 +00:00
|
|
|
data_json = {
|
|
|
|
'data': {
|
2018-08-21 17:33:24 +00:00
|
|
|
'id': data_id,
|
|
|
|
'name': data_name,
|
2017-11-06 16:50:00 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
response = MockResponse(data)
|
|
|
|
|
|
|
|
response_result = response_validator.validate(request, response)
|
|
|
|
|
|
|
|
assert response_result.errors == []
|
2018-08-21 17:33:24 +00:00
|
|
|
assert isinstance(response_result.data, BaseModel)
|
|
|
|
assert isinstance(response_result.data.data, BaseModel)
|
|
|
|
assert response_result.data.data.id == data_id
|
|
|
|
assert response_result.data.data.name == data_name
|
2018-04-04 10:26:21 +00:00
|
|
|
|
|
|
|
def test_get_pet_not_found(self, spec, response_validator):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets/{petId}'
|
|
|
|
view_args = {
|
|
|
|
'petId': '1',
|
|
|
|
}
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'GET', '/pets/1',
|
|
|
|
path_pattern=path_pattern, view_args=view_args,
|
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
|
|
|
assert parameters == {
|
|
|
|
'path': {
|
|
|
|
'petId': 1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
assert body is None
|
|
|
|
|
2018-08-21 17:33:24 +00:00
|
|
|
code = 404
|
|
|
|
message = 'Not found'
|
|
|
|
rootCause = 'Pet not found'
|
2018-04-04 10:26:21 +00:00
|
|
|
data_json = {
|
|
|
|
'code': 404,
|
2018-08-21 17:33:24 +00:00
|
|
|
'message': message,
|
|
|
|
'rootCause': rootCause,
|
2018-04-04 10:26:21 +00:00
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
response = MockResponse(data, status_code=404)
|
|
|
|
|
|
|
|
response_result = response_validator.validate(request, response)
|
|
|
|
|
|
|
|
assert response_result.errors == []
|
2018-08-21 17:33:24 +00:00
|
|
|
assert isinstance(response_result.data, BaseModel)
|
|
|
|
assert response_result.data.code == code
|
|
|
|
assert response_result.data.message == message
|
|
|
|
assert response_result.data.rootCause == rootCause
|
2018-04-23 18:50:29 +00:00
|
|
|
|
2018-05-30 13:46:54 +00:00
|
|
|
def test_get_pet_wildcard(self, spec, response_validator):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/pets/{petId}'
|
|
|
|
view_args = {
|
|
|
|
'petId': '1',
|
|
|
|
}
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'GET', '/pets/1',
|
|
|
|
path_pattern=path_pattern, view_args=view_args,
|
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
|
|
|
assert parameters == {
|
|
|
|
'path': {
|
|
|
|
'petId': 1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
assert body is None
|
|
|
|
|
|
|
|
data = b'imagedata'
|
|
|
|
response = MockResponse(data, mimetype='image/png')
|
|
|
|
|
|
|
|
response_result = response_validator.validate(request, response)
|
|
|
|
|
|
|
|
assert response_result.errors == []
|
|
|
|
assert response_result.data == data
|
|
|
|
|
2018-04-23 18:50:29 +00:00
|
|
|
def test_get_tags(self, spec, response_validator):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/tags'
|
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'GET', '/tags',
|
|
|
|
path_pattern=path_pattern,
|
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
assert parameters == {}
|
|
|
|
assert body is None
|
|
|
|
|
2018-05-30 08:41:34 +00:00
|
|
|
data_json = ['cats', 'birds']
|
2018-04-23 18:50:29 +00:00
|
|
|
data = json.dumps(data_json)
|
|
|
|
response = MockResponse(data)
|
|
|
|
|
|
|
|
response_result = response_validator.validate(request, response)
|
|
|
|
|
|
|
|
assert response_result.errors == []
|
|
|
|
assert response_result.data == data_json
|
2018-05-25 15:32:09 +00:00
|
|
|
|
|
|
|
def test_post_tags_extra_body_properties(self, spec, spec_dict):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/tags'
|
|
|
|
pet_name = 'Dog'
|
|
|
|
alias = 'kitty'
|
|
|
|
data_json = {
|
|
|
|
'name': pet_name,
|
|
|
|
'alias': alias,
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'POST', '/tags',
|
|
|
|
path_pattern=path_pattern, data=data,
|
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
|
|
|
assert parameters == {}
|
|
|
|
|
|
|
|
with pytest.raises(UndefinedSchemaProperty):
|
|
|
|
request.get_body(spec)
|
|
|
|
|
|
|
|
def test_post_tags_empty_body(self, spec, spec_dict):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/tags'
|
|
|
|
data_json = {}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'POST', '/tags',
|
|
|
|
path_pattern=path_pattern, data=data,
|
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
|
|
|
assert parameters == {}
|
|
|
|
|
|
|
|
with pytest.raises(MissingSchemaProperty):
|
|
|
|
request.get_body(spec)
|
|
|
|
|
|
|
|
def test_post_tags_wrong_property_type(self, spec):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/tags'
|
|
|
|
tag_name = 123
|
|
|
|
data = json.dumps(tag_name)
|
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'POST', '/tags',
|
|
|
|
path_pattern=path_pattern, data=data,
|
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
|
|
|
|
assert parameters == {}
|
|
|
|
|
|
|
|
with pytest.raises(InvalidMediaTypeValue):
|
|
|
|
request.get_body(spec)
|
2018-05-30 10:15:17 +00:00
|
|
|
|
|
|
|
def test_post_tags_additional_properties(
|
|
|
|
self, spec, response_validator):
|
|
|
|
host_url = 'http://petstore.swagger.io/v1'
|
|
|
|
path_pattern = '/v1/tags'
|
|
|
|
pet_name = 'Dog'
|
|
|
|
data_json = {
|
|
|
|
'name': pet_name,
|
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
|
|
|
|
request = MockRequest(
|
|
|
|
host_url, 'POST', '/tags',
|
|
|
|
path_pattern=path_pattern, data=data,
|
|
|
|
)
|
|
|
|
|
|
|
|
parameters = request.get_parameters(spec)
|
|
|
|
body = request.get_body(spec)
|
|
|
|
|
|
|
|
assert parameters == {}
|
2018-08-21 17:33:24 +00:00
|
|
|
assert isinstance(body, BaseModel)
|
|
|
|
assert body.name == pet_name
|
2018-05-30 10:15:17 +00:00
|
|
|
|
2018-08-21 17:33:24 +00:00
|
|
|
code = 400
|
|
|
|
message = 'Bad request'
|
|
|
|
rootCause = 'Tag already exist'
|
|
|
|
additionalinfo = 'Tag Dog already exist'
|
2018-05-30 10:15:17 +00:00
|
|
|
data_json = {
|
2018-08-21 17:33:24 +00:00
|
|
|
'code': code,
|
|
|
|
'message': message,
|
|
|
|
'rootCause': rootCause,
|
|
|
|
'additionalinfo': additionalinfo,
|
2018-05-30 10:15:17 +00:00
|
|
|
}
|
|
|
|
data = json.dumps(data_json)
|
|
|
|
response = MockResponse(data, status_code=404)
|
|
|
|
|
|
|
|
response_result = response_validator.validate(request, response)
|
|
|
|
|
|
|
|
assert response_result.errors == []
|
2018-08-21 17:33:24 +00:00
|
|
|
assert isinstance(response_result.data, BaseModel)
|
|
|
|
assert response_result.data.code == code
|
|
|
|
assert response_result.data.message == message
|
|
|
|
assert response_result.data.rootCause == rootCause
|
|
|
|
assert response_result.data.additionalinfo == additionalinfo
|