2018-02-15 14:28:15 +00:00
|
|
|
import pytest
|
|
|
|
|
2018-04-18 10:39:03 +00:00
|
|
|
from openapi_core.schema.operations.exceptions import InvalidOperation
|
2018-02-15 14:28:15 +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
|
2018-04-17 14:37:52 +00:00
|
|
|
from openapi_core.wrappers.mock import MockRequest
|
2018-02-15 14:28:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestMinimal(object):
|
|
|
|
|
|
|
|
servers = [
|
|
|
|
"http://minimal.test/",
|
|
|
|
"https://bad.remote.domain.net/",
|
|
|
|
"http://localhost",
|
|
|
|
"http://localhost:8080",
|
|
|
|
"https://u:p@a.b:1337"
|
|
|
|
]
|
|
|
|
|
|
|
|
spec_paths = [
|
|
|
|
"data/v3.0/minimal_with_servers.yaml",
|
|
|
|
"data/v3.0/minimal.yaml"
|
|
|
|
]
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("server", servers)
|
|
|
|
@pytest.mark.parametrize("spec_path", spec_paths)
|
|
|
|
def test_hosts(self, factory, server, spec_path):
|
|
|
|
spec_dict = factory.spec_from_file(spec_path)
|
|
|
|
spec = create_spec(spec_dict)
|
|
|
|
validator = RequestValidator(spec)
|
|
|
|
request = MockRequest(server, "get", "/status")
|
|
|
|
|
|
|
|
result = validator.validate(request)
|
|
|
|
|
|
|
|
assert not result.errors
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("server", servers)
|
|
|
|
@pytest.mark.parametrize("spec_path", spec_paths)
|
|
|
|
def test_invalid_operation(self, factory, server, spec_path):
|
|
|
|
spec_dict = factory.spec_from_file(spec_path)
|
|
|
|
spec = create_spec(spec_dict)
|
|
|
|
validator = RequestValidator(spec)
|
|
|
|
request = MockRequest(server, "get", "/nonexistent")
|
|
|
|
|
|
|
|
result = validator.validate(request)
|
|
|
|
|
|
|
|
assert len(result.errors) == 1
|
|
|
|
assert isinstance(result.errors[0], InvalidOperation)
|
|
|
|
assert result.body is None
|
|
|
|
assert result.parameters == {}
|