-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_filters_jinja2.py
316 lines (290 loc) · 9.77 KB
/
test_filters_jinja2.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
"""Tests for Jinja2 CQL2 filter (simplified for readability)."""
import json
import cql2
import pytest
from fastapi.testclient import TestClient
from utils import AppFactory, get_upstream_request
FILTER_EXPR_CASES = [
pytest.param(
"(properties.private = false)",
"(properties.private = false)",
"(properties.private = false)",
id="simple_not_templated",
),
pytest.param(
"{{ '(properties.private = false)' if payload is none else true }}",
"true",
"(properties.private = false)",
id="simple_templated",
),
pytest.param(
"(private = true)",
"(private = true)",
"(private = true)",
id="complex_not_templated",
),
pytest.param(
"""{{ '{"op": "=", "args": [{"property": "private"}, true]}' if payload is none else true }}""",
"true",
"""{"op": "=", "args": [{"property": "private"}, true]}""",
id="complex_templated",
),
]
SEARCH_POST_QUERIES = [
pytest.param(
{
"collections": ["example-collection"],
"bbox": [-120.5, 35.7, -120.0, 36.0],
"datetime": "2021-06-01T00:00:00Z/2021-06-30T23:59:59Z",
},
id="no_filter",
),
pytest.param(
{
"filter-lang": "cql2-json",
"filter": {
"op": "and",
"args": [
{"op": "=", "args": [{"property": "collection"}, "landsat-8-l1"]},
{"op": "<=", "args": [{"property": "eo:cloud_cover"}, 20]},
{"op": "=", "args": [{"property": "platform"}, "landsat-8"]},
],
},
"limit": 5,
},
id="with_filter",
),
]
SEARCH_GET_QUERIES = [
pytest.param(
{
"collections": "example-collection",
"bbox": "160.6,-55.95,-170,-25.89",
"datetime": "2021-06-01T00:00:00Z/2021-06-30T23:59:59Z",
},
id="no_filter",
),
pytest.param(
{
"bbox": "160.6,-55.95,-170,-25.89",
"filter-lang": "cql2-text",
"filter": "((collection = 'landsat-8-l1') AND (\"eo:cloud_cover\" <= 20) AND (platform = 'landsat-8'))",
"limit": "5",
},
id="with_filter_text",
),
pytest.param(
{
"bbox": "160.6,-55.95,-170,-25.89",
"filter-lang": "cql2-json",
"filter": json.dumps(
{
"op": "and",
"args": [
{
"op": "=",
"args": [{"property": "collection"}, "landsat-8-l1"],
},
{"op": "<=", "args": [{"property": "eo:cloud_cover"}, 20]},
{"op": "=", "args": [{"property": "platform"}, "landsat-8"]},
],
}
),
"limit": "5",
},
id="with_filter_json",
),
]
ITEMS_LIST_QUERIES = [
pytest.param(
{},
id="items_no_filter",
),
pytest.param(
{
"filter-lang": "cql2-text",
"filter": "((collection = 'landsat-8-l1') AND (\"eo:cloud_cover\" <= 20) AND (platform = 'landsat-8'))",
},
id="items_with_filter",
),
]
app_factory = AppFactory(
oidc_discovery_url="https://example-stac-api.com/.well-known/openid-configuration",
default_public=False,
)
def _build_client(
*,
src_api_server: str,
template_expr: str,
is_authenticated: bool,
token_builder,
):
"""Build a TestClient configured for either authenticated or anonymous usage."""
app = app_factory(
upstream_url=src_api_server,
items_filter={
"cls": "stac_auth_proxy.filters:Template",
"args": [template_expr.strip()],
},
default_public=True,
)
headers = (
{"Authorization": f"Bearer {token_builder({'sub': 'test-user'})}"}
if is_authenticated
else {}
)
return TestClient(app, headers=headers)
@pytest.mark.parametrize(
"filter_template_expr, expected_auth_filter, expected_anon_filter",
FILTER_EXPR_CASES,
)
@pytest.mark.parametrize("is_authenticated", [True, False], ids=["auth", "anon"])
@pytest.mark.parametrize("input_query", SEARCH_POST_QUERIES)
async def test_search_post(
mock_upstream,
source_api_server,
filter_template_expr,
expected_auth_filter,
expected_anon_filter,
is_authenticated,
input_query,
token_builder,
):
"""Test that POST /search merges the upstream query with the templated filter."""
response = _build_client(
src_api_server=source_api_server,
template_expr=filter_template_expr,
is_authenticated=is_authenticated,
token_builder=token_builder,
).post("/search", json=input_query)
response.raise_for_status()
# Retrieve the JSON body that was actually sent upstream
proxied_request = await get_upstream_request(mock_upstream)
proxied_body = json.loads(proxied_request.body)
# Determine the expected combined filter
proxy_filter = cql2.Expr(
expected_auth_filter if is_authenticated else expected_anon_filter
)
input_filter = input_query.get("filter")
if input_filter:
proxy_filter += cql2.Expr(input_filter)
expected_output = {
**input_query,
"filter": proxy_filter.to_json(),
"filter-lang": "cql2-json",
}
assert (
proxied_body == expected_output
), "POST query should combine filter expressions."
@pytest.mark.parametrize(
"filter_template_expr, expected_auth_filter, expected_anon_filter",
FILTER_EXPR_CASES,
)
@pytest.mark.parametrize("is_authenticated", [True, False], ids=["auth", "anon"])
@pytest.mark.parametrize("input_query", SEARCH_GET_QUERIES)
async def test_search_get(
mock_upstream,
source_api_server,
filter_template_expr,
expected_auth_filter,
expected_anon_filter,
is_authenticated,
input_query,
token_builder,
):
"""Test that GET /search merges the upstream query params with the templated filter."""
client = _build_client(
src_api_server=source_api_server,
template_expr=filter_template_expr,
is_authenticated=is_authenticated,
token_builder=token_builder,
)
response = client.get("/search", params=input_query)
response.raise_for_status()
# For GET, we expect the upstream body to be empty, but URL params to be appended
proxied_request = await get_upstream_request(mock_upstream)
assert proxied_request.body == ""
# Determine the expected combined filter
proxy_filter = cql2.Expr(
expected_auth_filter if is_authenticated else expected_anon_filter
)
input_filter = input_query.get("filter")
if input_filter:
proxy_filter += cql2.Expr(input_filter)
filter_lang = input_query.get("filter-lang", "cql2-text")
expected_output = {
**input_query,
"filter": (
proxy_filter.to_text()
if filter_lang == "cql2-text"
else proxy_filter.to_json()
),
"filter-lang": filter_lang,
}
assert (
proxied_request.query_params == expected_output
), "GET query should combine filter expressions."
@pytest.mark.parametrize(
"filter_template_expr, expected_auth_filter, expected_anon_filter",
FILTER_EXPR_CASES,
)
@pytest.mark.parametrize("is_authenticated", [True, False], ids=["auth", "anon"])
@pytest.mark.parametrize("input_query", ITEMS_LIST_QUERIES)
async def test_items_list(
mock_upstream,
source_api_server,
filter_template_expr,
expected_auth_filter,
expected_anon_filter,
is_authenticated,
input_query,
token_builder,
):
"""Test that GET /collections/foo/items merges query params with the templated filter."""
client = _build_client(
src_api_server=source_api_server,
template_expr=filter_template_expr,
is_authenticated=is_authenticated,
token_builder=token_builder,
)
response = client.get("/collections/foo/items", params=input_query)
response.raise_for_status()
# For GET items, we also expect an empty body and appended querystring
proxied_request = await get_upstream_request(mock_upstream)
assert proxied_request.body == ""
# Only the appended filter (no input_filter merges in these particular tests),
# but you could do similar merging logic if needed.
proxy_filter = cql2.Expr(
expected_auth_filter if is_authenticated else expected_anon_filter
)
assert proxied_request.query_params == {
"filter-lang": "cql2-text",
"filter": (
proxy_filter + cql2.Expr(qs_filter)
if (qs_filter := input_query.get("filter"))
else proxy_filter
).to_text(),
}, "Items query should include only the appended filter expression."
@pytest.mark.parametrize("is_authenticated", [True, False], ids=["auth", "anon"])
def test_item_get(
source_api_server, is_authenticated, token_builder, source_api_responses
):
"""Test that GET /collections/foo/items/bar is rejected."""
client = _build_client(
src_api_server=source_api_server,
template_expr="{{ '(properties.private = false)' if payload is none else true }}",
is_authenticated=is_authenticated,
token_builder=token_builder,
)
source_api_responses["/collections/{collection_id}/items/{item_id}"]["GET"] = {
"id": "bar",
"properties": {"private": True},
}
response = client.get("/collections/foo/items/bar")
if is_authenticated:
assert response.status_code == 200
assert response.json()["id"] == "bar"
assert response.json()["properties"].get("private") is True
else:
assert response.status_code == 404
assert response.json() == {"message": "Not found"}