-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathtest_request_builder.py
492 lines (401 loc) · 16.2 KB
/
test_request_builder.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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
from typing import Any, Dict, List
import pytest
from httpx import Request, Response
from postgrest import AsyncRequestBuilder, AsyncSingleRequestBuilder
from postgrest.base_request_builder import APIResponse, SingleAPIResponse
from postgrest.types import CountMethod
from postgrest.utils import AsyncClient
@pytest.fixture
async def request_builder():
async with AsyncClient() as client:
yield AsyncRequestBuilder(client, "/example_table")
def test_constructor(request_builder):
assert request_builder.path == "/example_table"
class TestSelect:
def test_select(self, request_builder: AsyncRequestBuilder):
builder = request_builder.select("col1", "col2")
assert builder.params["select"] == "col1,col2"
assert builder.headers.get("prefer") is None
assert builder.http_method == "GET"
assert builder.json == {}
def test_select_with_count(self, request_builder: AsyncRequestBuilder):
builder = request_builder.select(count=CountMethod.exact)
assert builder.params["select"] == "*"
assert builder.headers["prefer"] == "count=exact"
assert builder.http_method == "GET"
assert builder.json == {}
def test_select_with_head(self, request_builder: AsyncRequestBuilder):
builder = request_builder.select("col1", "col2", head=True)
assert builder.params.get("select") == "col1,col2"
assert builder.headers.get("prefer") is None
assert builder.http_method == "HEAD"
assert builder.json == {}
def test_select_as_csv(self, request_builder: AsyncRequestBuilder):
builder = request_builder.select("*").csv()
assert builder.headers["Accept"] == "text/csv"
assert isinstance(builder, AsyncSingleRequestBuilder)
class TestInsert:
def test_insert(self, request_builder: AsyncRequestBuilder):
builder = request_builder.insert({"key1": "val1"})
assert builder.headers.get_list("prefer", True) == ["return=representation"]
assert builder.http_method == "POST"
assert builder.json == {"key1": "val1"}
def test_insert_with_count(self, request_builder: AsyncRequestBuilder):
builder = request_builder.insert({"key1": "val1"}, count=CountMethod.exact)
assert builder.headers.get_list("prefer", True) == [
"return=representation",
"count=exact",
]
assert builder.http_method == "POST"
assert builder.json == {"key1": "val1"}
def test_insert_with_upsert(self, request_builder: AsyncRequestBuilder):
builder = request_builder.insert({"key1": "val1"}, upsert=True)
assert builder.headers.get_list("prefer", True) == [
"return=representation",
"resolution=merge-duplicates",
]
assert builder.http_method == "POST"
assert builder.json == {"key1": "val1"}
def test_upsert_with_default_single(self, request_builder: AsyncRequestBuilder):
builder = request_builder.upsert([{"key1": "val1"}], default_to_null=False)
assert builder.headers.get_list("prefer", True) == [
"return=representation",
"resolution=merge-duplicates",
"missing=default",
]
assert builder.http_method == "POST"
assert builder.json == [{"key1": "val1"}]
assert builder.params.get("columns") == '"key1"'
def test_bulk_insert_using_default(self, request_builder: AsyncRequestBuilder):
builder = request_builder.insert(
[{"key1": "val1", "key2": "val2"}, {"key3": "val3"}], default_to_null=False
)
assert builder.headers.get_list("prefer", True) == [
"return=representation",
"missing=default",
]
assert builder.http_method == "POST"
assert builder.json == [{"key1": "val1", "key2": "val2"}, {"key3": "val3"}]
assert set(builder.params["columns"].split(",")) == set(
'"key1","key2","key3"'.split(",")
)
def test_upsert(self, request_builder: AsyncRequestBuilder):
builder = request_builder.upsert({"key1": "val1"})
assert builder.headers.get_list("prefer", True) == [
"return=representation",
"resolution=merge-duplicates",
]
assert builder.http_method == "POST"
assert builder.json == {"key1": "val1"}
def test_bulk_upsert_with_default(self, request_builder: AsyncRequestBuilder):
builder = request_builder.upsert(
[{"key1": "val1", "key2": "val2"}, {"key3": "val3"}], default_to_null=False
)
assert builder.headers.get_list("prefer", True) == [
"return=representation",
"resolution=merge-duplicates",
"missing=default",
]
assert builder.http_method == "POST"
assert builder.json == [{"key1": "val1", "key2": "val2"}, {"key3": "val3"}]
assert set(builder.params["columns"].split(",")) == set(
'"key1","key2","key3"'.split(",")
)
class TestUpdate:
def test_update(self, request_builder: AsyncRequestBuilder):
builder = request_builder.update({"key1": "val1"})
assert builder.headers.get_list("prefer", True) == ["return=representation"]
assert builder.http_method == "PATCH"
assert builder.json == {"key1": "val1"}
def test_update_with_count(self, request_builder: AsyncRequestBuilder):
builder = request_builder.update({"key1": "val1"}, count=CountMethod.exact)
assert builder.headers.get_list("prefer", True) == [
"return=representation",
"count=exact",
]
assert builder.http_method == "PATCH"
assert builder.json == {"key1": "val1"}
class TestDelete:
def test_delete(self, request_builder: AsyncRequestBuilder):
builder = request_builder.delete()
assert builder.headers.get_list("prefer", True) == ["return=representation"]
assert builder.http_method == "DELETE"
assert builder.json == {}
def test_delete_with_count(self, request_builder: AsyncRequestBuilder):
builder = request_builder.delete(count=CountMethod.exact)
assert builder.headers.get_list("prefer", True) == [
"return=representation",
"count=exact",
]
assert builder.http_method == "DELETE"
assert builder.json == {}
class TestTextSearch:
def test_text_search(self, request_builder: AsyncRequestBuilder):
builder = request_builder.select("catchphrase").text_search(
"catchphrase",
"'fat' & 'cat'",
{
"type": "plain",
"config": "english",
},
)
assert "catchphrase=plfts%28english%29.%27fat%27+%26+%27cat%27" in str(
builder.params
)
class TestExplain:
def test_explain_plain(self, request_builder: AsyncRequestBuilder):
builder = request_builder.select("*").explain()
assert builder.params["select"] == "*"
assert "application/vnd.pgrst.plan" in str(builder.headers.get("accept"))
def test_explain_options(self, request_builder: AsyncRequestBuilder):
builder = request_builder.select("*").explain(
format="json", analyze=True, verbose=True, buffers=True, wal=True
)
assert builder.params["select"] == "*"
assert "application/vnd.pgrst.plan+json;" in str(builder.headers.get("accept"))
assert "options=analyze|verbose|buffers|wal" in str(builder.headers.get("accept"))
class TestOrder:
def test_order(self, request_builder: AsyncRequestBuilder):
builder = request_builder.select().order("country_name", desc=True)
assert str(builder.params) == "select=%2A&order=country_name.desc"
def test_multiple_orders(self, request_builder: AsyncRequestBuilder):
builder = (
request_builder.select()
.order("country_name", desc=True)
.order("iso", desc=True)
)
assert str(builder.params) == "select=%2A&order=country_name.desc%2Ciso.desc"
def test_multiple_orders_on_foreign_table(self, request_builder: AsyncRequestBuilder):
foreign_table = "cities"
builder = (
request_builder.select()
.order("city_name", desc=True, foreign_table=foreign_table)
.order("id", desc=True, foreign_table=foreign_table)
)
assert (
str(builder.params)
== "select=%2A&order=cities%28city_name%29.desc%2Ccities%28id%29.desc"
)
class TestRange:
def test_range_on_own_table(self, request_builder: AsyncRequestBuilder):
builder = request_builder.select("*").range(0, 1)
assert builder.params["select"] == "*"
assert builder.params["limit"] == "2"
assert builder.params["offset"] == "0"
def test_range_on_foreign_table(self, request_builder: AsyncRequestBuilder):
foreign_table = "cities"
builder = request_builder.select("*").range(1, 2, foreign_table)
assert builder.params["select"] == "*"
assert builder.params[f"{foreign_table}.limit"] == "2"
assert builder.params[f"{foreign_table}.offset"] == "1"
@pytest.fixture
def csv_api_response() -> str:
return "id,name\n1,foo\n"
@pytest.fixture
def api_response_with_error() -> Dict[str, Any]:
return {
"message": "Route GET:/countries?select=%2A not found",
"error": "Not Found",
"statusCode": 404,
}
@pytest.fixture
def api_response() -> List[Dict[str, Any]]:
return [
{
"id": 1,
"name": "Bonaire, Sint Eustatius and Saba",
"iso2": "BQ",
"iso3": "BES",
"local_name": None,
"continent": None,
},
{
"id": 2,
"name": "Curaçao",
"iso2": "CW",
"iso3": "CUW",
"local_name": None,
"continent": None,
},
]
@pytest.fixture
def single_api_response() -> Dict[str, Any]:
return {
"id": 1,
"name": "Bonaire, Sint Eustatius and Saba",
"iso2": "BQ",
"iso3": "BES",
"local_name": None,
"continent": None,
}
@pytest.fixture
def content_range_header_with_count() -> str:
return "0-1/2"
@pytest.fixture
def content_range_header_without_count() -> str:
return "0-1"
@pytest.fixture
def prefer_header_with_count() -> str:
return "count=exact"
@pytest.fixture
def prefer_header_without_count() -> str:
return "random prefer header"
@pytest.fixture
def request_response_without_prefer_header() -> Response:
return Response(
status_code=200, request=Request(method="GET", url="http://example.com")
)
@pytest.fixture
def request_response_with_prefer_header_without_count(
prefer_header_without_count: str,
) -> Response:
return Response(
status_code=200,
request=Request(
method="GET",
url="http://example.com",
headers={"prefer": prefer_header_without_count},
),
)
@pytest.fixture
def request_response_with_prefer_header_with_count_and_content_range(
prefer_header_with_count: str, content_range_header_with_count: str
) -> Response:
return Response(
status_code=200,
headers={"content-range": content_range_header_with_count},
request=Request(
method="GET",
url="http://example.com",
headers={"prefer": prefer_header_with_count},
),
)
@pytest.fixture
def request_response_with_data(
prefer_header_with_count: str,
content_range_header_with_count: str,
api_response: List[Dict[str, Any]],
) -> Response:
return Response(
status_code=200,
headers={"content-range": content_range_header_with_count},
json=api_response,
request=Request(
method="GET",
url="http://example.com",
headers={"prefer": prefer_header_with_count},
),
)
@pytest.fixture
def request_response_with_single_data(
prefer_header_with_count: str,
content_range_header_with_count: str,
single_api_response: Dict[str, Any],
) -> Response:
return Response(
status_code=200,
headers={"content-range": content_range_header_with_count},
json=single_api_response,
request=Request(
method="GET",
url="http://example.com",
headers={"prefer": prefer_header_with_count},
),
)
@pytest.fixture
def request_response_with_csv_data(csv_api_response: str) -> Response:
return Response(
status_code=200,
text=csv_api_response,
request=Request(method="GET", url="http://example.com"),
)
class TestApiResponse:
def test_response_raises_when_api_error(
self, api_response_with_error: Dict[str, Any]
):
with pytest.raises(ValueError):
APIResponse(data=api_response_with_error)
def test_parses_valid_response_only_data(self, api_response: List[Dict[str, Any]]):
result = APIResponse(data=api_response)
assert result.data == api_response
def test_parses_valid_response_data_and_count(
self, api_response: List[Dict[str, Any]]
):
count = len(api_response)
result = APIResponse(data=api_response, count=count)
assert result.data == api_response
assert result.count == count
def test_get_count_from_content_range_header_with_count(
self, content_range_header_with_count: str
):
assert (
APIResponse._get_count_from_content_range_header(
content_range_header_with_count
)
== 2
)
def test_get_count_from_content_range_header_without_count(
self, content_range_header_without_count: str
):
assert (
APIResponse._get_count_from_content_range_header(
content_range_header_without_count
)
is None
)
def test_is_count_in_prefer_header_true(self, prefer_header_with_count: str):
assert APIResponse._is_count_in_prefer_header(prefer_header_with_count)
def test_is_count_in_prefer_header_false(self, prefer_header_without_count: str):
assert not APIResponse._is_count_in_prefer_header(prefer_header_without_count)
def test_get_count_from_http_request_response_without_prefer_header(
self, request_response_without_prefer_header: Response
):
assert (
APIResponse._get_count_from_http_request_response(
request_response_without_prefer_header
)
is None
)
def test_get_count_from_http_request_response_with_prefer_header_without_count(
self, request_response_with_prefer_header_without_count: Response
):
assert (
APIResponse._get_count_from_http_request_response(
request_response_with_prefer_header_without_count
)
is None
)
def test_get_count_from_http_request_response_with_count_and_content_range(
self, request_response_with_prefer_header_with_count_and_content_range: Response
):
assert (
APIResponse._get_count_from_http_request_response(
request_response_with_prefer_header_with_count_and_content_range
)
== 2
)
def test_from_http_request_response_constructor(
self, request_response_with_data: Response, api_response: List[Dict[str, Any]]
):
result = APIResponse.from_http_request_response(request_response_with_data)
assert result.data == api_response
assert result.count == 2
def test_single_from_http_request_response_constructor(
self,
request_response_with_single_data: Response,
single_api_response: Dict[str, Any],
):
result = SingleAPIResponse.from_http_request_response(
request_response_with_single_data
)
assert isinstance(result.data, dict)
assert result.data == single_api_response
assert result.count == 2
def test_single_with_csv_data(
self, request_response_with_csv_data: Response, csv_api_response: str
):
result = SingleAPIResponse.from_http_request_response(
request_response_with_csv_data
)
assert isinstance(result.data, str)
assert result.data == csv_api_response