-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_lifespan.py
82 lines (59 loc) · 2.8 KB
/
test_lifespan.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
"""Tests for lifespan module."""
from dataclasses import dataclass
from unittest.mock import patch
import pytest
from starlette.middleware import Middleware
from starlette.types import ASGIApp
from stac_auth_proxy.utils.lifespan import check_conformance, check_server_health
from stac_auth_proxy.utils.middleware import required_conformance
@required_conformance("http://example.com/conformance")
@dataclass
class ExampleMiddleware:
"""Test middleware with required conformance."""
app: ASGIApp
async def test_check_server_health_success(source_api_server):
"""Test successful health check."""
await check_server_health(source_api_server)
async def test_check_server_health_failure():
"""Test health check failure."""
with pytest.raises(RuntimeError) as exc_info:
with patch("asyncio.sleep") as mock_sleep:
await check_server_health("http://localhost:9999")
assert "failed to respond after" in str(exc_info.value)
# Verify sleep was called with exponential backoff
assert mock_sleep.call_count > 0
# First call should be with base delay
# NOTE: Concurrency issues makes this test flaky
# assert mock_sleep.call_args_list[0][0][0] == 1.0
# Last call should be with max delay
assert mock_sleep.call_args_list[-1][0][0] == 5.0
async def test_check_conformance_success(source_api_server, source_api_responses):
"""Test successful conformance check."""
middleware = [Middleware(ExampleMiddleware)]
await check_conformance(middleware, source_api_server)
async def test_check_conformance_failure(source_api_server, source_api_responses):
"""Test conformance check failure."""
# Override the conformance response to not include required conformance
source_api_responses["/conformance"]["GET"] = {"conformsTo": []}
middleware = [Middleware(ExampleMiddleware)]
with pytest.raises(RuntimeError) as exc_info:
await check_conformance(middleware, source_api_server)
assert "missing the following conformance classes" in str(exc_info.value)
async def test_check_conformance_multiple_middleware(source_api_server):
"""Test conformance check with multiple middleware."""
@required_conformance("http://example.com/conformance")
class TestMiddleware2:
def __init__(self, app):
self.app = app
middleware = [
Middleware(ExampleMiddleware),
Middleware(TestMiddleware2),
]
await check_conformance(middleware, source_api_server)
async def test_check_conformance_no_required(source_api_server):
"""Test conformance check with middleware that has no required conformances."""
class NoConformanceMiddleware:
def __init__(self, app):
self.app = app
middleware = [Middleware(NoConformanceMiddleware)]
await check_conformance(middleware, source_api_server)