-
Notifications
You must be signed in to change notification settings - Fork 11
/
url_test.go
264 lines (219 loc) · 8.09 KB
/
url_test.go
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
package gothumbor
import (
"fmt"
"strings"
"testing"
)
const (
baseImageURL = "my.server.com/some/path/to/image.jpg"
imageURL = "http://" + baseImageURL
width = 300
height = 200
encryptedURL = "8ammJH8D-7tXy6kU3lTvoXlhu4o=/300x200/my.server.com/some/path/to/image.jpg"
unsafeURL = "/300x200/my.server.com/some/path/to/image.jpg"
)
func TestGetUrlPartialWithCrop(t *testing.T) {
thumborOptions := ThumborOptions{Left: 1, Top: 2, Right: 3, Bottom: 4}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil {
t.Error("Got an error when tried to generate the thumbor url", err)
}
urlE := strings.Join([]string{"1x2:3x4", imageURL}, "/")
if url != urlE {
t.Errorf("Got an unxpected partial url: %s != %s", url, urlE)
}
}
func TestGetUrlPartialWithWidthAndHeight(t *testing.T) {
thumborOptions := ThumborOptions{Width: 1, Height: 1, Smart: false}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil {
t.Error("Got an error when tried to generate the thumbor url", err)
}
urlE := strings.Join([]string{"1x1", imageURL}, "/")
if url != urlE {
t.Errorf("Got an unxpected partial url: %s != %s", url, urlE)
}
}
func TestGetUrlPartsShouldMaintainURL(t *testing.T) {
thumborOptions := ThumborOptions{Width: 1, Height: 1}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil {
t.Error("Got an error when tried to generate the thumbor url", err)
}
if !strings.HasSuffix(url, imageURL) {
t.Errorf("Got an unxpected partial url: %s != %s", url, imageURL)
}
}
func TestGetUrlPartialWithSmart(t *testing.T) {
thumborOptions := ThumborOptions{Width: 1, Height: 1, Smart: true}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil {
t.Error("Got an error when tried to generate the thumbor url", err)
}
urlE := strings.Join([]string{"1x1", "smart", imageURL}, "/")
if url != urlE {
t.Errorf("Got an unxpected partial url: %s != %s", url, urlE)
}
}
func TestGetUrlPartialWithSmartTopFallback(t *testing.T) {
thumborOptions := ThumborOptions{Width: 1, Height: 1, VAlign: "top", Smart: true}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil {
t.Error("Got an error when tried to generate the thumbor url", err)
}
urlE := strings.Join([]string{"1x1", "top", "smart", imageURL}, "/")
if url != urlE {
t.Errorf("Got an unxpected partial url: %s != %s", url, urlE)
}
}
func TestGetUrlPartialOnlyWithWidthAndHeight(t *testing.T) {
thumborOptions := ThumborOptions{Width: width, Height: height}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil {
t.Error("Got an error when tried to generate the thumbor url", err)
}
if url != strings.Join([]string{"300x200", imageURL}, "/") {
t.Error("Got an unxpected partial path:", url)
}
}
func TestEscapeURLByRFC3986(t *testing.T) {
thumborOptions := ThumborOptions{}
url, err := getURLParts("/a-path with spaces.jpg", thumborOptions)
if err != nil {
t.Error("Got an error when tried to process a path with spaces", err)
}
if url != "/a-path%20with%20spaces.jpg" {
t.Error("Got an unxpected partial path:", url)
}
}
func TestFitInParameter(t *testing.T) {
thumborOptions := ThumborOptions{FitIn: true}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
if !strings.Contains(url, "fit-in") {
t.Errorf("url doesn't have a fit-in parameter")
}
}
func TestOneFilterParameter(t *testing.T) {
filter := "max-age(360000)"
filters := []string{filter}
thumborOptions := ThumborOptions{Width: 200, Height: 300, Filters: filters}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
if !strings.Contains(url, "filters:"+filter) {
t.Errorf("url doesn't have a filters parameter")
}
}
func TestTwoFiltersParameter(t *testing.T) {
firstFilter := "max-age(360000)"
secondFilter := "grayscale()"
filters := []string{firstFilter, secondFilter}
thumborOptions := ThumborOptions{Width: 200, Height: 300, Filters: filters}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
if !strings.Contains(url, "filters:"+firstFilter+":"+secondFilter) {
t.Errorf("url doesn't have a first filter parameter")
}
}
func TestFlipWithoutAnyOtherParameter(t *testing.T) {
thumborOptions := ThumborOptions{Flip: true}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
if url != strings.Join([]string{"-0x0", imageURL}, "/") {
t.Errorf("url %q is not fliped", url)
}
}
func TestFlopWithoutAnyOtherParameter(t *testing.T) {
thumborOptions := ThumborOptions{Flop: true}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
if url != strings.Join([]string{"0x-0", imageURL}, "/") {
t.Errorf("url %q is not floped", url)
}
}
func TestFlipFlopWithoutAnyOtherParameter(t *testing.T) {
thumborOptions := ThumborOptions{Flop: true, Flip: true}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
if url != strings.Join([]string{"-0x-0", imageURL}, "/") {
t.Errorf("url %q is not flipfloped", url)
}
}
func TestFlipFlopWithWidthAndHeigh(t *testing.T) {
thumborOptions := ThumborOptions{Flop: true, Flip: true, Height: 500, Width: 400}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
if url != strings.Join([]string{"-400x-500", imageURL}, "/") {
t.Errorf("url %q is not flipfloped", url)
}
}
func TestFiltersAndSmartCombinatiotn(t *testing.T) {
firstFilter := "max-age(360000)"
secondFilter := "grayscale()"
filters := []string{firstFilter, secondFilter}
thumborOptions := ThumborOptions{Smart: true, Width: 200, Height: 300, Filters: filters}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
filtersPosition := strings.Index(url, "filters:"+firstFilter+":"+secondFilter)
smartPosition := strings.Index(url, "smart")
if filtersPosition < smartPosition {
t.Errorf("Filters parameter should be before smart option")
}
}
func TestFiltersAndFitInCombinatiotn(t *testing.T) {
firstFilter := "max-age(360000)"
secondFilter := "grayscale()"
filters := []string{firstFilter, secondFilter}
thumborOptions := ThumborOptions{FitIn: true, Width: 200, Height: 300, Filters: filters}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
filtersPosition := strings.Index(url, "filters:"+firstFilter+":"+secondFilter)
fitInPosition := strings.Index(url, "fit-in")
if filtersPosition < fitInPosition {
t.Errorf("Filters parameter should be after fit-in option")
}
}
func TestSetUpVerticalAlignment(t *testing.T) {
thumborOptions := ThumborOptions{VAlign: "top", Width: 200, Height: 300}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
if !strings.Contains(url, "top") {
t.Errorf("Vertical alignment is not applied on the url")
}
}
func TestSetUpVerticalAlignmentBeforeWidthAndWidth(t *testing.T) {
thumborOptions := ThumborOptions{VAlign: "bottom", Width: 200, Height: 300}
url, err := getURLParts(imageURL, thumborOptions)
if err != nil || url == "" {
t.Errorf("Got an error when tried to generate the thumbor url")
}
WidthHeightPosition := strings.Index(url, "200x300")
VAlignPosition := strings.Index(url, "bottom")
shiftedPosition := WidthHeightPosition + len("200x300") + 1
if VAlignPosition != (shiftedPosition) {
fmt.Println("url : ", url)
fmt.Println("widthxheight position: ", shiftedPosition)
fmt.Println("valign position: ", VAlignPosition)
t.Errorf("Valign parameter should be 2 characters before width and height option")
}
}