forked from thumbor/libthumbor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_url_composer.py
642 lines (521 loc) · 17.6 KB
/
test_url_composer.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
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
#!/usr/bin/python
# -*- coding: utf-8 -*-
# libthumbor - python extension to thumbor
# http://github.com/heynemann/libthumbor
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 Bernardo Heynemann [email protected]
'''libthumbor URL composer tests'''
import sys
from unittest import TestCase
# if PY3:
# from thumbor_py3.crypto import Cryptor
# else:
# from thumbor.crypto import Cryptor
from libthumbor.url import url_for
from libthumbor.url import unsafe_url
IMAGE_URL = 'my.server.com/some/path/to/image.jpg'
IMAGE_MD5 = '84996242f65a4d864aceb125e1c4c5ba'
# def decrypt_in_thumbor(key, encrypted):
# '''Uses thumbor to decrypt libthumbor's encrypted URL'''
# crypto = Cryptor(key)
# return crypto.decrypt(encrypted)
def test_no_options_specified():
'''test_no_options_specified
Given
An image URL of "my.server.com/some/path/to/image.jpg"
When
I ask my library for an URL
Then
I get "84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(image_url=IMAGE_URL)
assert url == IMAGE_MD5, url
def test_url_raises_if_no_url():
'''test_url_raises_if_no_url
Given
An image URL of "" or null
When
I ask my library for an URL
Then
I get an exception that says image URL is mandatory
'''
try:
url_for()
except ValueError as err:
assert str(err) == 'The image_url argument is mandatory.'
return True
assert False, 'Should not have gotten this far'
def test_url_width_height_1():
'''test_url_width_height_1
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of 300
When
I ask my library for an URL
Then
I get "300x0/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width=300, image_url=IMAGE_URL)
assert url == "300x0/84996242f65a4d864aceb125e1c4c5ba", url
def test_url_width_height_2():
'''test_url_width_height_2
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a height of 300
When
I ask my library for an URL
Then
I get "0x300/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(height=300, image_url=IMAGE_URL)
assert url == "0x300/84996242f65a4d864aceb125e1c4c5ba", url
def test_url_width_height_3():
'''test_url_width_height_3
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of 200
And a height of 300
When
I ask my library for an URL
Then
I get "200x300/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width=200,
height=300,
image_url=IMAGE_URL)
assert url == "200x300/84996242f65a4d864aceb125e1c4c5ba", url
def test_url_width_height_4():
'''test_url_width_height_4
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of orig
When
I ask my library for an URL
Then
I get "origx0/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width="orig", image_url=IMAGE_URL)
assert url == "origx0/84996242f65a4d864aceb125e1c4c5ba", url
def test_url_width_height_5():
'''test_url_width_height_5
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a height of orig
When
I ask my library for an URL
Then
I get "0xorig/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(height="orig", image_url=IMAGE_URL)
assert url == "0xorig/84996242f65a4d864aceb125e1c4c5ba", url
def test_url_width_height_6():
'''test_url_width_height_6
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of 100
And a height of orig
When
I ask my library for an URL
Then
I get "100xorig/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width=100, height="orig", image_url=IMAGE_URL)
assert url == "100xorig/84996242f65a4d864aceb125e1c4c5ba", url
def test_url_width_height_7():
'''test_url_width_height_7
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a height of 100
And a width of orig
When
I ask my library for an URL
Then
I get "origx100/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width="orig", height=100, image_url=IMAGE_URL)
assert url == "origx100/84996242f65a4d864aceb125e1c4c5ba", url
def test_url_width_height_8():
'''test_url_width_height_8
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a height of orig
And a width of orig
When
I ask my library for an URL
Then
I get "origxorig/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width="orig", height="orig", image_url=IMAGE_URL)
assert url == "origxorig/84996242f65a4d864aceb125e1c4c5ba", url
def test_smart_url():
'''test_smart_url
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of 200
And a height of 300
And the smart flag
When
I ask my library for an URL
Then
I get "200x300/smart/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width=200,
height=300,
smart=True,
image_url=IMAGE_URL)
assert url == "200x300/smart/84996242f65a4d864aceb125e1c4c5ba", url
def test_fit_in_url():
'''test_fit_in_url
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of 200
And a height of 300
And the fit-in flag
When
I ask my library for an URL
Then
I get "fit-in/200x300/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width=200,
height=300,
fit_in=True,
image_url=IMAGE_URL)
assert url == "fit-in/200x300/84996242f65a4d864aceb125e1c4c5ba", url
def test_adaptive_fit_in_url():
'''test_adaptive_fit_in_url
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of 200
And a height of 300
And the adaptive fit-in flag
When
I ask my library for an URL
Then
I get "adaptive-fit-in/200x300/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width=200,
height=300,
adaptive_fit_in=True,
image_url=IMAGE_URL)
assert url == "adaptive-fit-in/200x300/84996242f65a4d864aceb125e1c4c5ba", url
def test_fit_in_fails_if_no_width_supplied():
try:
url_for(fit_in=True, image_url=IMAGE_URL)
except ValueError:
err = sys.exc_info()[1]
assert err is not None
else:
assert False, "Should not have gotten this far"
def test_full_fit_in_fails_if_no_width_supplied():
try:
url_for(full_fit_in=True, image_url=IMAGE_URL)
except ValueError:
err = sys.exc_info()[1]
assert err is not None
else:
assert False, "Should not have gotten this far"
def test_adaptive_fit_in_fails_if_no_width_supplied():
try:
url_for(adaptive_fit_in=True, image_url=IMAGE_URL)
except ValueError:
err = sys.exc_info()[1]
assert err is not None
else:
assert False, "Should not have gotten this far"
def test_adaptive_full_fit_in_fails_if_no_width_supplied():
try:
url_for(adaptive_full_fit_in=True, image_url=IMAGE_URL)
except ValueError:
err = sys.exc_info()[1]
assert err is not None
else:
assert False, "Should not have gotten this far"
def test_full_fit_in_url():
'''test_full_fit_in_url
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of 200
And a height of 300
And the full-fit-in flag
When
I ask my library for an URL
Then
I get "full-fit-in/200x300/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width=200,
height=300,
full_fit_in=True,
image_url=IMAGE_URL)
assert url == "full-fit-in/200x300/84996242f65a4d864aceb125e1c4c5ba", url
def test_adaptive_full_fit_in_url():
'''test_adaptive_full_fit_in_url
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of 200
And a height of 300
And the adaptive full-fit-in flag
When
I ask my library for an URL
Then
I get "adaptive-full-fit-in/200x300/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(width=200,
height=300,
adaptive_full_fit_in=True,
image_url=IMAGE_URL)
assert url == "adaptive-full-fit-in/200x300/84996242f65a4d864aceb125e1c4c5ba", url
def test_flip_1():
'''test_flip_1
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And the flip flag
When
I ask my library for an URL
Then
I get "-0x0/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(flip=True,
image_url=IMAGE_URL)
assert url == "-0x0/84996242f65a4d864aceb125e1c4c5ba", url
def test_flip_2():
'''test_flip_2
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of 200
And the flip flag
When
I ask my library for an URL
Then
I get "-200x0/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(flip=True,
width=200,
image_url=IMAGE_URL)
assert url == "-200x0/84996242f65a4d864aceb125e1c4c5ba", url
def test_flop_1():
'''test_flop_1
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And the flop flag
When
I ask my library for an URL
Then
I get "0x-0/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(flop=True,
image_url=IMAGE_URL)
assert url == "0x-0/84996242f65a4d864aceb125e1c4c5ba", url
def test_flop_2():
'''test_flop_2
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a height of 200
And the flop flag
When
I ask my library for an URL
Then
I get "0x-200/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(flop=True,
height=200,
image_url=IMAGE_URL)
assert url == "0x-200/84996242f65a4d864aceb125e1c4c5ba", url
def test_flip_flop():
'''test_flip_flop
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And the flip flag
And the flop flag
When
I ask my library for an URL
Then
I get "-0x-0/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(flip=True,
flop=True,
image_url=IMAGE_URL)
assert url == "-0x-0/84996242f65a4d864aceb125e1c4c5ba", url
def test_flip_flop2():
'''test_flip_flop2
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a width of 200
And a height of 300
And the flip flag
And the flop flag
When
I ask my library for an URL
Then
I get "-200x-300/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(flip=True,
flop=True,
width=200,
height=300,
image_url=IMAGE_URL)
assert url == "-200x-300/84996242f65a4d864aceb125e1c4c5ba", url
def test_horizontal_alignment():
'''test_horizontal_alignment
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a 'left' horizontal alignment option
When
I ask my library for an URL
Then
I get "left/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(halign='left',
image_url=IMAGE_URL)
assert url == 'left/84996242f65a4d864aceb125e1c4c5ba', url
def test_horizontal_alignment2():
'''test_horizontal_alignment2
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a 'center' horizontal alignment option
When
I ask my library for an URL
Then
I get "84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(halign='center',
image_url=IMAGE_URL)
assert url == '84996242f65a4d864aceb125e1c4c5ba', url
def test_vertical_alignment():
'''test_vertical_alignment
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a 'top' vertical alignment option
When
I ask my library for an URL
Then
I get "top/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(valign='top',
image_url=IMAGE_URL)
assert url == 'top/84996242f65a4d864aceb125e1c4c5ba', url
def test_vertical_alignment2():
'''test_vertical_alignment2
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a 'middle' vertical alignment option
When
I ask my library for an URL
Then
I get "84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(valign='middle',
image_url=IMAGE_URL)
assert url == '84996242f65a4d864aceb125e1c4c5ba', url
def test_both_alignments():
'''test_both_alignments
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a 'left' horizontal alignment option
And a 'top' vertical alignment option
When
I ask my library for an URL
Then
I get "left/top/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(halign='left',
valign='top',
image_url=IMAGE_URL)
assert url == 'left/top/84996242f65a4d864aceb125e1c4c5ba', url
def test_proper_haligns():
'''test_proper_haligns'''
try:
url_for(halign='wrong', image_url=IMAGE_URL)
except ValueError as err:
assert str(err) == 'Only "left", "center" and "right"' + \
' are valid values for horizontal alignment.'
return True
assert False, "Should not have gotten this far."
def test_proper_valigns():
'''test_proper_haligns'''
try:
url_for(valign='wrong', image_url=IMAGE_URL)
except ValueError as err:
assert str(err) == 'Only "top", "middle" and "bottom"' + \
' are valid values for vertical alignment.'
return True
assert False, "Should not have gotten this far."
def test_proper_meta():
'''test_proper_meta
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a 'meta' flag
When
I ask my library for an URL
Then
I get "meta/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(meta=True,
image_url=IMAGE_URL)
assert url == 'meta/84996242f65a4d864aceb125e1c4c5ba', url
def test_trim_standard():
url = url_for(trim=True,
image_url=IMAGE_URL)
assert url == 'trim/84996242f65a4d864aceb125e1c4c5ba', url
def test_trim_pixel_and_tolerance():
url = url_for(trim=('bottom-right', 15),
image_url=IMAGE_URL)
assert url == 'trim:bottom-right:15/84996242f65a4d864aceb125e1c4c5ba', url
def test_trim_pixel_only():
url = url_for(trim=('top-left', None),
image_url=IMAGE_URL)
assert url == 'trim:top-left/84996242f65a4d864aceb125e1c4c5ba', url
def test_trim_tolerance_only():
url = url_for(trim=(None, 15),
image_url=IMAGE_URL)
assert url == 'trim::15/84996242f65a4d864aceb125e1c4c5ba', url
def test_manual_crop_1():
'''test_manual_crop_1
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a manual crop left-top point of (10, 20)
And a manual crop right-bottom point of (30, 40)
When
I ask my library for an URL
Then
I get "10x20:30x40/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(crop=((10, 20), (30, 40)),
image_url=IMAGE_URL)
assert url == '10x20:30x40/84996242f65a4d864aceb125e1c4c5ba', url
def test_manual_crop_2():
'''test_manual_crop_2
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a manual crop left-top point of (0, 0)
And a manual crop right-bottom point of (0, 0)
When
I ask my library for an URL
Then
I get "84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(crop=((0, 0), (0, 0)),
image_url=IMAGE_URL)
assert url == '84996242f65a4d864aceb125e1c4c5ba', url
def test_smart_after_alignments():
'''test_smart_after_alignments
Given
An image URL of "my.server.com/some/path/to/image.jpg"
And a 'smart' flag
And a 'left' horizontal alignment option
When
I ask my library for an URL
Then
I get "left/smart/84996242f65a4d864aceb125e1c4c5ba" as URL
'''
url = url_for(smart=True,
halign='left',
image_url=IMAGE_URL)
assert url == 'left/smart/84996242f65a4d864aceb125e1c4c5ba', url
class UnsafeUrlTestCase(TestCase):
def test_should_return_a_valid_unsafe_url_with_no_params(self):
self.assertEqual('unsafe/%s' % IMAGE_URL, unsafe_url(image_url=IMAGE_URL))
def test_should_return_an_unsafe_url_with_width_and_height(self):
self.assertEqual('unsafe/100x140/%s' % IMAGE_URL, unsafe_url(image_url=IMAGE_URL, width=100, height=140))
def test_should_return_an_unsafe_url_with_crop_and_smart(self):
self.assertEqual('unsafe/100x140/smart/%s' % IMAGE_URL, unsafe_url(image_url=IMAGE_URL, width=100, height=140, smart=True))