-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest_middleware.py
111 lines (92 loc) · 3.55 KB
/
test_middleware.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
"""Tests for tilebench."""
import rasterio
from fastapi import FastAPI
from rio_tiler.io import Reader
from starlette.testclient import TestClient
from vsifile.rasterio import opener
from tilebench.middleware import NoCacheMiddleware, VSIStatsMiddleware
COG_PATH = "https://noaa-eri-pds.s3.amazonaws.com/2022_Hurricane_Ian/20221002a_RGB/20221002aC0795145w325100n.tif"
def test_middleware():
"""Simple test."""
app = FastAPI()
app.add_middleware(NoCacheMiddleware)
app.add_middleware(VSIStatsMiddleware, config={}, exclude_paths=["/skip"])
@app.get("/info")
def head():
"""Get info."""
with Reader(COG_PATH) as cog:
cog.info()
return "I got info"
@app.get("/tile")
def tile():
"""Read tile."""
with Reader(COG_PATH) as cog:
cog.tile(36460, 52866, 17)
return "I got tile"
@app.get("/skip")
def skip():
return "I've been skipped"
with TestClient(app) as client:
response = client.get("/info")
assert response.status_code == 200
assert response.headers["content-type"] == "application/json"
assert response.headers["Cache-Control"] == "no-cache"
assert response.headers["VSI-Stats"]
stats = response.headers["VSI-Stats"]
assert "head;count=" in stats
assert "get;count=" in stats
response = client.get("/tile")
assert response.status_code == 200
assert response.headers["content-type"] == "application/json"
assert response.headers["VSI-Stats"]
stats = response.headers["VSI-Stats"]
assert "head;count=" in stats
assert "get;count=" in stats
response = client.get("/skip")
assert response.status_code == 200
assert response.headers["content-type"] == "application/json"
assert "VSI-Stats" not in response.headers
def test_middleware_vsifile():
"""Simple test."""
app = FastAPI()
app.add_middleware(NoCacheMiddleware)
app.add_middleware(
VSIStatsMiddleware, config={}, exclude_paths=["/skip"], io="vsifile"
)
@app.get("/info")
def head():
"""Get info."""
with rasterio.open(COG_PATH, opener=opener) as src:
with Reader(None, dataset=src) as cog:
cog.info()
return "I got info"
@app.get("/tile")
def tile():
"""Read tile."""
with rasterio.open(COG_PATH, opener=opener) as src:
with Reader(None, dataset=src) as cog:
cog.tile(36460, 52866, 17)
return "I got tile"
@app.get("/skip")
def skip():
return "I've been skipped"
with TestClient(app) as client:
response = client.get("/info")
assert response.status_code == 200
assert response.headers["content-type"] == "application/json"
assert response.headers["Cache-Control"] == "no-cache"
assert response.headers["VSI-Stats"]
stats = response.headers["VSI-Stats"]
assert "head;count=" in stats
assert "get;count=" in stats
response = client.get("/tile")
assert response.status_code == 200
assert response.headers["content-type"] == "application/json"
assert response.headers["VSI-Stats"]
stats = response.headers["VSI-Stats"]
assert "head;count=" in stats
assert "get;count=" in stats
response = client.get("/skip")
assert response.status_code == 200
assert response.headers["content-type"] == "application/json"
assert "VSI-Stats" not in response.headers