mirror of
https://github.com/LukeHagar/connexion.git
synced 2025-12-06 12:27:45 +00:00
Continues on the work of #1077 by moving the test fixtures into the `secure_endpoint` fixture and adding a test for it in `test_secure_api.py`. The test will check whether an api key in the query will not lead to an error when `strict_validation` is enabled.
152 lines
4.3 KiB
Python
152 lines
4.3 KiB
Python
import logging
|
|
|
|
import pytest
|
|
from starlette.types import Receive, Scope, Send
|
|
|
|
from conftest import FIXTURES_FOLDER, OPENAPI3_SPEC, build_app_from_fixture
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def simple_app(spec, app_class):
|
|
return build_app_from_fixture(
|
|
"simple", app_class=app_class, spec_file=spec, validate_responses=True
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def simple_openapi_app(app_class):
|
|
return build_app_from_fixture(
|
|
"simple", app_class=app_class, spec_file=OPENAPI3_SPEC, validate_responses=True
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def reverse_proxied_app(spec, app_class):
|
|
class ReverseProxied:
|
|
def __init__(self, app, root_path=None, scheme=None, server=None):
|
|
self.app = app
|
|
self.root_path = root_path
|
|
self.scheme = scheme
|
|
self.server = server
|
|
|
|
async def __call__(self, scope: Scope, receive: Receive, send: Send):
|
|
logging.warning(
|
|
"this demo is not secure by default!! "
|
|
"You'll want to make sure these headers are coming from your proxy, "
|
|
"and not directly from users on the web!"
|
|
)
|
|
root_path = scope.get("root_path") or self.root_path
|
|
for header, value in scope.get("headers", []):
|
|
if header == b"x-forwarded-path":
|
|
root_path = value.decode()
|
|
break
|
|
if root_path:
|
|
scope["root_path"] = "/" + root_path.strip("/")
|
|
path_info = scope.get("PATH_INFO", scope.get("path"))
|
|
if path_info.startswith(root_path):
|
|
scope["PATH_INFO"] = path_info[len(root_path) :]
|
|
|
|
scope["scheme"] = scope.get("scheme") or self.scheme
|
|
scope["server"] = scope.get("server") or (self.server, None)
|
|
|
|
return await self.app(scope, receive, send)
|
|
|
|
app = build_app_from_fixture(
|
|
"simple", app_class=app_class, spec_file=spec, validate_responses=True
|
|
)
|
|
app.middleware = ReverseProxied(app.middleware, root_path="/reverse_proxied/")
|
|
return app
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def snake_case_app(spec, app_class):
|
|
return build_app_from_fixture(
|
|
"snake_case",
|
|
app_class=app_class,
|
|
spec_file=spec,
|
|
validate_responses=True,
|
|
pythonic_params=True,
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def invalid_resp_allowed_app(spec, app_class):
|
|
return build_app_from_fixture(
|
|
"simple", app_class=app_class, spec_file=spec, validate_responses=False
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def strict_app(spec, app_class):
|
|
return build_app_from_fixture(
|
|
"simple",
|
|
app_class=app_class,
|
|
spec_file=spec,
|
|
validate_responses=True,
|
|
strict_validation=True,
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def problem_app(spec, app_class):
|
|
return build_app_from_fixture(
|
|
"problem", app_class=app_class, spec_file=spec, validate_responses=True
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def schema_app(spec, app_class):
|
|
return build_app_from_fixture(
|
|
"different_schemas",
|
|
app_class=app_class,
|
|
spec_file=spec,
|
|
validate_responses=True,
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def secure_endpoint_app(spec, app_class):
|
|
return build_app_from_fixture(
|
|
"secure_endpoint",
|
|
app_class=app_class,
|
|
spec_file=spec,
|
|
validate_responses=True,
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def secure_endpoint_strict_app(spec, app_class):
|
|
return build_app_from_fixture(
|
|
"secure_endpoint",
|
|
app_class=app_class,
|
|
spec_file=spec,
|
|
validate_responses=True,
|
|
strict_validation=True,
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def secure_api_app(spec, app_class):
|
|
options = {"swagger_ui": False}
|
|
return build_app_from_fixture(
|
|
"secure_api",
|
|
app_class=app_class,
|
|
spec_file=spec,
|
|
options=options,
|
|
auth_all_paths=True,
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def unordered_definition_app(spec, app_class):
|
|
return build_app_from_fixture(
|
|
"unordered_definition", app_class=app_class, spec_file=spec
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def bad_operations_app(spec, app_class):
|
|
return build_app_from_fixture(
|
|
"bad_operations", app_class=app_class, spec_file=spec, resolver_error=501
|
|
)
|