-
-
Notifications
You must be signed in to change notification settings - Fork 196
/
Copy pathtest_view.py
605 lines (437 loc) · 17.4 KB
/
test_view.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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
import hashlib
import time
from flask import make_response
from flask import request
from flask.views import View
from flask_caching import CachedResponse
def test_cached_view(app, cache):
@app.route("/")
@cache.cached(2)
def cached_view():
return str(time.time())
tc = app.test_client()
rv = tc.get("/")
the_time = rv.data.decode("utf-8")
time.sleep(1)
rv = tc.get("/")
assert the_time == rv.data.decode("utf-8")
time.sleep(1)
rv = tc.get("/")
assert the_time != rv.data.decode("utf-8")
def test_cached_view_class(app, cache):
class CachedView(View):
@cache.cached(2)
def dispatch_request(self):
return str(time.time())
app.add_url_rule("/", view_func=CachedView.as_view("name"))
tc = app.test_client()
rv = tc.get("/")
the_time = rv.data.decode("utf-8")
time.sleep(1)
rv = tc.get("/")
assert the_time == rv.data.decode("utf-8")
time.sleep(1)
rv = tc.get("/")
assert the_time != rv.data.decode("utf-8")
def test_async_cached_view(app, cache):
import asyncio
import sys
if sys.version_info < (3, 7):
return
@app.route("/test-async")
@cache.cached(2)
async def cached_async_view():
await asyncio.sleep(0.1)
return str(time.time())
tc = app.test_client()
rv = tc.get("/test-async")
the_time = rv.data.decode("utf-8")
time.sleep(1)
rv = tc.get("/test-async")
assert the_time == rv.data.decode("utf-8")
def test_cached_view_unless(app, cache):
@app.route("/a")
@cache.cached(5, unless=lambda: True)
def non_cached_view():
return str(time.time())
@app.route("/b")
@cache.cached(5, unless=lambda: False)
def cached_view():
return str(time.time())
tc = app.test_client()
rv = tc.get("/a")
the_time = rv.data.decode("utf-8")
time.sleep(1)
rv = tc.get("/a")
assert the_time != rv.data.decode("utf-8")
rv = tc.get("/b")
the_time = rv.data.decode("utf-8")
time.sleep(1)
rv = tc.get("/b")
assert the_time == rv.data.decode("utf-8")
def test_cached_view_response_filter(app, cache):
@app.route("/a")
@cache.cached(5, response_filter=lambda x: x[1] < 400)
def cached_view():
return (str(time.time()), app.return_code)
tc = app.test_client()
# 500 response does not cache
app.return_code = 500
rv = tc.get("/a")
the_time = rv.data.decode("utf-8")
time.sleep(1)
rv = tc.get("/a")
assert the_time != rv.data.decode("utf-8")
# 200 response caches
app.return_code = 200
rv = tc.get("/a")
the_time = rv.data.decode("utf-8")
time.sleep(1)
rv = tc.get("/a")
assert the_time == rv.data.decode("utf-8")
def test_cached_view_forced_update(app, cache):
forced_update = False
@app.route("/a")
@cache.cached(5, forced_update=lambda: forced_update)
def view():
return str(time.time())
tc = app.test_client()
rv = tc.get("/a")
the_time = rv.data.decode("utf-8")
time.sleep(1)
rv = tc.get("/a")
assert the_time == rv.data.decode("utf-8")
forced_update = True
rv = tc.get("/a")
new_time = rv.data.decode("utf-8")
assert new_time != the_time
forced_update = False
time.sleep(1)
rv = tc.get("/a")
assert new_time == rv.data.decode("utf-8")
def test_generate_cache_key_from_different_view(app, cache):
@app.route("/cake/<flavor>")
@cache.cached()
def view_cake(flavor):
# What's the cache key for apple cake? thanks for making me hungry
view_cake.cake_cache_key = view_cake.make_cache_key("apple")
return str(time.time())
view_cake.cake_cache_key = ""
@app.route("/pie/<flavor>")
@cache.cached()
def view_pie(flavor):
# What's the cache key for apple cake?
view_pie.cake_cache_key = view_cake.make_cache_key("apple")
return str(time.time())
view_pie.cake_cache_key = ""
tc = app.test_client()
tc.get("/cake/chocolate")
tc.get("/pie/chocolate")
assert view_cake.cake_cache_key == view_pie.cake_cache_key
# rename/move to seperate module?
def test_cache_key_property(app, cache):
@app.route("/")
@cache.cached(5)
def cached_view():
return str(time.time())
assert hasattr(cached_view, "make_cache_key")
assert callable(cached_view.make_cache_key)
tc = app.test_client()
rv = tc.get("/")
the_time = rv.data.decode("utf-8")
with app.test_request_context():
cache_data = cache.get(cached_view.make_cache_key())
assert the_time == cache_data
def test_set_make_cache_key_property(app, cache):
@app.route("/")
@cache.cached(5)
def cached_view():
return str(time.time())
cached_view.make_cache_key = lambda *args, **kwargs: request.args["foo"]
tc = app.test_client()
rv = tc.get("/?foo=a")
a = rv.data.decode("utf-8")
rv = tc.get("/?foo=b")
b = rv.data.decode("utf-8")
assert a != b
tc = app.test_client()
rv = tc.get("/?foo=a")
a_2 = rv.data.decode("utf-8")
assert a == a_2
rv = tc.get("/?foo=b")
b_2 = rv.data.decode("utf-8")
assert b == b_2
def test_make_cache_key_function_property(app, cache):
@app.route("/<foo>/<bar>")
@cache.memoize(5)
def cached_view(foo, bar):
return str(time.time())
assert hasattr(cached_view, "make_cache_key")
assert callable(cached_view.make_cache_key)
tc = app.test_client()
rv = tc.get("/a/b")
the_time = rv.data.decode("utf-8")
cache_key = cached_view.make_cache_key(cached_view.uncached, foo="a", bar="b")
cache_data = cache.get(cache_key)
assert the_time == cache_data
different_key = cached_view.make_cache_key(cached_view.uncached, foo="b", bar="a")
different_data = cache.get(different_key)
assert the_time != different_data
def test_cache_timeout_property(app, cache):
@app.route("/")
@cache.memoize(2)
def cached_view1():
return str(time.time())
@app.route("/<foo>/<bar>")
@cache.memoize(4)
def cached_view2(foo, bar):
return str(time.time())
assert hasattr(cached_view1, "cache_timeout")
assert hasattr(cached_view2, "cache_timeout")
assert cached_view1.cache_timeout == 2
assert cached_view2.cache_timeout == 4
# test that this is a read-write property
cached_view1.cache_timeout = 5
cached_view2.cache_timeout = 7
assert cached_view1.cache_timeout == 5
assert cached_view2.cache_timeout == 7
tc = app.test_client()
rv1 = tc.get("/")
time1 = rv1.data.decode("utf-8")
time.sleep(1)
rv2 = tc.get("/a/b")
time2 = rv2.data.decode("utf-8")
# VIEW1
# it's been 1 second, cache is still active
assert time1 == tc.get("/").data.decode("utf-8")
time.sleep(5)
# it's been >5 seconds, cache is not still active
assert time1 != tc.get("/").data.decode("utf-8")
# VIEW2
# it's been >17 seconds, cache is still active
# self.assertEqual(time2, tc.get('/a/b').data.decode('utf-8'))
assert time2 == tc.get("/a/b").data.decode("utf-8")
time.sleep(3)
# it's been >7 seconds, cache is not still active
assert time2 != tc.get("/a/b").data.decode("utf-8")
def test_cache_timeout_dynamic(app, cache):
@app.route("/")
@cache.cached(timeout=1)
def cached_view():
# This should override the timeout to be 2 seconds
return CachedResponse(response=make_response(str(time.time())), timeout=2)
tc = app.test_client()
rv1 = tc.get("/")
time1 = rv1.data.decode("utf-8")
time.sleep(1)
# it's been 1 second, cache is still active
assert time1 == tc.get("/").data.decode("utf-8")
time.sleep(1)
# it's been >2 seconds, cache is not still active
assert time1 != tc.get("/").data.decode("utf-8")
def test_generate_cache_key_from_query_string(app, cache):
"""Test the _make_cache_key_query_string() cache key maker.
Create three requests to verify that the same query string
parameters (key/value) always reference the same cache,
regardless of the order of parameters.
Also test to make sure that the same cache isn't being used for
any/all query string parameters.
For example, these two requests should yield the same
cache/cache key:
* GET /v1/works?mock=true&offset=20&limit=15
* GET /v1/works?limit=15&mock=true&offset=20
Caching functionality is verified by a `@cached` route `/works` which
produces a time in its response. The time in the response can verify that
two requests with the same query string parameters/values, though
differently ordered, produce responses with the same time.
"""
@app.route("/works")
@cache.cached(query_string=True)
def view_works():
return str(time.time())
tc = app.test_client()
# Make our first query...
first_response = tc.get("/works?mock=true&offset=20&limit=15")
first_time = first_response.get_data(as_text=True)
# Make the second query...
second_response = tc.get("/works?limit=15&mock=true&offset=20")
second_time = second_response.get_data(as_text=True)
# Now make sure the time for the first and second
# query are the same!
assert second_time == first_time
# Last/third query with different parameters/values should
# produce a different time.
third_response = tc.get("/v1/works?limit=20&mock=true&offset=60")
third_time = third_response.get_data(as_text=True)
# ... making sure that different query parameter values
# don't yield the same cache!
assert not third_time == second_time
def test_generate_cache_key_from_query_string_repeated_paramaters(app, cache):
"""Test the _make_cache_key_query_string() cache key maker's support for
repeated query paramaters
URL params can be repeated with different values. Flask's MultiDict
supports them
"""
@app.route("/works")
@cache.cached(query_string=True)
def view_works():
flatted_values = sum(request.args.listvalues(), [])
return str(sorted(flatted_values)) + str(time.time())
tc = app.test_client()
# Make our first query...
first_response = tc.get("/works?mock=true&offset=20&limit=15&user[]=123&user[]=124")
first_time = first_response.get_data(as_text=True)
# Make the second query...
second_response = tc.get(
"/works?mock=true&offset=20&limit=15&user[]=124&user[]=123"
)
second_time = second_response.get_data(as_text=True)
# Now make sure the time for the first and second
# query are the same!
assert second_time == first_time
# Last/third query with different parameters/values should
# produce a different time.
third_response = tc.get("/works?mock=true&offset=20&limit=15&user[]=125&user[]=124")
third_time = third_response.get_data(as_text=True)
# ... making sure that different query parameter values
# don't yield the same cache!
assert not third_time == second_time
def test_generate_cache_key_from_request_body(app, cache):
"""Test a user supplied cache key maker.
Create three requests to verify that the same request body
always reference the same cache
Also test to make sure that the same cache isn't being used for
any/all query string parameters.
Caching functionality is verified by a `@cached` route `/works` which
produces a time in its response. The time in the response can verify that
two requests with the same request body produce responses with the same
time.
"""
def _make_cache_key_request_body(argument):
"""Create keys based on request body."""
# now hash the request body so it can be
# used as a key for cache.
request_body = request.get_data(as_text=False)
hashed_body = str(hashlib.md5(request_body).hexdigest())
cache_key = request.path + hashed_body
return cache_key
@app.route("/works/<argument>", methods=["POST"])
@cache.cached(make_cache_key=_make_cache_key_request_body)
def view_works(argument):
return str(time.time()) + request.get_data().decode()
tc = app.test_client()
# Make our request...
first_response = tc.post("/works/arg", data=dict(mock=True, value=1, test=2))
first_time = first_response.get_data(as_text=True)
# Make the request...
second_response = tc.post("/works/arg", data=dict(mock=True, value=1, test=2))
second_time = second_response.get_data(as_text=True)
# Now make sure the time for the first and second
# requests are the same!
assert second_time == first_time
# Last/third request with different body should
# produce a different time.
third_response = tc.post("/works/arg", data=dict(mock=True, value=2, test=3))
third_time = third_response.get_data(as_text=True)
# ... making sure that different request bodies
# don't yield the same cache!
assert not third_time == second_time
def test_cache_with_query_string_and_source_check_enabled(app, cache):
"""Test the _make_cache_key_query_string() cache key maker with
source_check set to True to include the view's function's source code as
part of the cache hash key.
"""
@cache.cached(query_string=True, source_check=True)
def view_works():
return str(time.time())
app.add_url_rule("/works", "works", view_works)
tc = app.test_client()
# Make our first query...
first_response = tc.get("/works?mock=true&offset=20&limit=15")
first_time = first_response.get_data(as_text=True)
# Make our second query...
second_response = tc.get("/works?mock=true&offset=20&limit=15")
second_time = second_response.get_data(as_text=True)
# The cache should yield the same data first and second time
assert first_time == second_time
# Change the source of the function attached to the view
@cache.cached(query_string=True, source_check=True)
def view_works():
return str(time.time())
# ... and we override the function attached to the view
app.view_functions["works"] = view_works
tc = app.test_client()
# Make the second query...
third_response = tc.get("/works?mock=true&offset=20&limit=15")
third_time = third_response.get_data(as_text=True)
# Now make sure the time for the first and third
# responses are not the same i.e. cached is not used!
assert third_time[0] != first_time
# Change the source of the function to what it was originally
@cache.cached(query_string=True, source_check=True)
def view_works():
return str(time.time())
app.view_functions["works"] = view_works
tc = app.test_client()
# Last/third query with different parameters/values should
# produce a different time.
forth_response = tc.get("/works?mock=true&offset=20&limit=15")
forth_time = forth_response.get_data(as_text=True)
# ... making sure that the first value and the forth value are the same
# since the source is the same
assert forth_time == first_time
def test_cache_with_query_string_and_source_check_disabled(app, cache):
"""Test the _make_cache_key_query_string() cache key maker with
source_check set to False to exclude the view's function's source code as
part of the cache hash key and to see if changing the source changes the
data.
"""
@cache.cached(query_string=True, source_check=False)
def view_works():
return str(time.time())
app.add_url_rule("/works", "works", view_works)
tc = app.test_client()
# Make our first query...
first_response = tc.get("/works?mock=true&offset=20&limit=15")
first_time = first_response.get_data(as_text=True)
# Make our second query...
second_response = tc.get("/works?mock=true&offset=20&limit=15")
second_time = second_response.get_data(as_text=True)
# The cache should yield the same data first and second time
assert first_time == second_time
# Change the source of the function attached to the view
@cache.cached(query_string=True, source_check=False)
def view_works():
return str(time.time())
# ... and we override the function attached to the view
app.view_functions["works"] = view_works
tc = app.test_client()
# Make the second query...
third_response = tc.get("/works?mock=true&offset=20&limit=15")
third_time = third_response.get_data(as_text=True)
# Now make sure the time for the first and third responses are the same
# i.e. cached is used since cache will not check for source changes!
assert third_time == first_time
def test_hit_cache(app, cache):
@app.route("/")
@cache.cached(2, response_hit_indication=True)
def cached_view():
# This should override the timeout to be 2 seconds
return {"data": "data"}
@app.route("/indication-false")
@cache.cached(2, response_hit_indication=False)
def indication_false_cached_view():
# This should override the timeout to be 2 seconds
return {"data": "data"}
tc = app.test_client()
assert tc.get("/").headers.get("hit_cache") is None
assert tc.get("/").headers.get("hit_cache") == "True"
assert tc.get("/").headers.get("hit_cache") == "True"
time.sleep(2)
assert tc.get("/").headers.get("hit_cache") is None
# indication-false
assert tc.get("/indication-false").headers.get("hit_cache") is None
assert tc.get("/indication-false").headers.get("hit_cache") is None
assert tc.get("/indication-false").headers.get("hit_cache") is None
time.sleep(2)
assert tc.get("/indication-false").headers.get("hit_cache") is None