-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_test.go
378 lines (347 loc) · 8.41 KB
/
client_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
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
package screenshotapi
import (
"context"
"net/http"
"net/http/httptest"
"net/url"
"strconv"
"testing"
)
const (
pathScreenshotAPIResponseOK = "/ScreenshotAPI/ok"
pathScreenshotAPIResponseError = "/ScreenshotAPI/error"
pathScreenshotAPIResponse500 = "/ScreenshotAPI/500"
pathScreenshotAPIResponsePartial1 = "/ScreenshotAPI/partial"
pathScreenshotAPIResponsePartial2 = "/ScreenshotAPI/partial2"
pathScreenshotAPIResponseUnparsable = "/ScreenshotAPI/unparsable"
)
const apiKey = "at_LoremIpsumDolorSitAmetConsect"
// dummyServer is the sample of the Screenshot API server for testing.
func dummyServer(resp, respUnparsable string, respErr string) *httptest.Server {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
var response string
response = resp
switch req.URL.Path {
case pathScreenshotAPIResponseOK:
case pathScreenshotAPIResponseError:
w.WriteHeader(499)
response = respErr
case pathScreenshotAPIResponse500:
w.WriteHeader(500)
response = respUnparsable
case pathScreenshotAPIResponsePartial1:
response = response[:len(response)-10]
case pathScreenshotAPIResponsePartial2:
w.Header().Set("Content-Length", strconv.Itoa(len(response)))
response = response[:len(response)-10]
case pathScreenshotAPIResponseUnparsable:
response = respUnparsable
default:
panic(req.URL.Path)
}
_, err := w.Write([]byte(response))
if err != nil {
panic(err)
}
}))
return server
}
// newAPI returns new Screenshot API client for testing.
func newAPI(apiServer *httptest.Server, link string) *Client {
apiURL, err := url.Parse(apiServer.URL)
if err != nil {
panic(err)
}
apiURL.Path = link
params := ClientParams{
HTTPClient: apiServer.Client(),
ScreenshotAPIBaseURL: apiURL,
}
return NewClient(apiKey, params)
}
// TestScreenshotAPIGet tests the Get function.
func TestScreenshotAPIGet(t *testing.T) {
ctx := context.Background()
const resp = `data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA`
const respUnparsable = `<?xml version="1.0" encoding="utf-8"?><>`
const errResp = `{"code":499,"messages":"Test error message."}`
server := dummyServer(resp, respUnparsable, errResp)
defer server.Close()
type options struct {
mandatory1 string
mandatory2 string
option Option
}
type args struct {
ctx context.Context
options options
}
tests := []struct {
name string
path string
args args
want bool
wantErr string
}{
{
name: "successful request",
path: pathScreenshotAPIResponseOK,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
"/tmp/filename.jpg",
OptionImageOutputFormat("base64"),
},
},
want: true,
wantErr: "",
},
{
name: "non 200 status code",
path: pathScreenshotAPIResponse500,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
"/tmp/filename.jpg",
OptionImageOutputFormat("base64"),
},
},
want: false,
wantErr: "API failed with status code: 500",
},
{
name: "partial response 1",
path: pathScreenshotAPIResponsePartial1,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
"/tmp/filename.jpg",
OptionImageOutputFormat("base64"),
},
},
want: true,
wantErr: "",
},
{
name: "partial response 2",
path: pathScreenshotAPIResponsePartial2,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
"/tmp/filename.jpg",
OptionImageOutputFormat("base64"),
},
},
want: false,
wantErr: "cannot read response: unexpected EOF",
},
{
name: "could not process request",
path: pathScreenshotAPIResponseError,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
"/tmp/filename.jpg",
OptionImageOutputFormat("base64"),
},
},
want: false,
wantErr: "API error: [499] Test error message.",
},
{
name: "unparsable response",
path: pathScreenshotAPIResponseUnparsable,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
"/tmp/filename.jpg",
OptionImageOutputFormat("base64"),
},
},
want: true,
wantErr: "",
},
{
name: "invalid argument1",
path: pathScreenshotAPIResponseOK,
args: args{
ctx: ctx,
options: options{
"",
"/tmp/filename.jpg",
OptionImageOutputFormat("base64"),
},
},
want: false,
wantErr: `invalid argument: "URL" can not be empty`,
},
{
name: "invalid argument2",
path: pathScreenshotAPIResponseOK,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
"",
OptionImageOutputFormat("base64"),
},
},
want: false,
wantErr: `invalid argument: "filename" can not be empty`,
},
{
name: "invalid argument3",
path: pathScreenshotAPIResponseOK,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
"/nonexistent/path/filename.jpg",
OptionImageOutputFormat("base64"),
},
},
want: false,
wantErr: `open /nonexistent/path/filename.jpg: no such file or directory`,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
api := newAPI(server, tt.path)
err := api.Get(tt.args.ctx, tt.args.options.mandatory1, tt.args.options.mandatory2, tt.args.options.option)
if (err != nil || tt.wantErr != "") && (err == nil || err.Error() != tt.wantErr) {
t.Errorf("ScreenshotAPI.Get() error = %v, wantErr %v", err, tt.wantErr)
return
}
})
}
}
// TestScreenshotAPIGetRaw tests the GetRaw function.
func TestScreenshotAPIGetRaw(t *testing.T) {
checkResultRaw := func(res []byte) bool {
return len(res) != 0
}
ctx := context.Background()
const resp = `data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA`
const respUnparsable = `<?xml version="1.0" encoding="utf-8"?><>`
const errResp = `{"code":499,"messages":"Test error message."}`
server := dummyServer(resp, respUnparsable, errResp)
defer server.Close()
type options struct {
mandatory string
option Option
}
type args struct {
ctx context.Context
options options
}
tests := []struct {
name string
path string
args args
wantErr string
}{
{
name: "successful request",
path: pathScreenshotAPIResponseOK,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
OptionImageOutputFormat("base64"),
},
},
wantErr: "",
},
{
name: "non 200 status code",
path: pathScreenshotAPIResponse500,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
OptionImageOutputFormat("base64"),
},
},
wantErr: "API failed with status code: 500",
},
{
name: "partial response 1",
path: pathScreenshotAPIResponsePartial1,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
OptionImageOutputFormat("base64"),
},
},
wantErr: "",
},
{
name: "partial response 2",
path: pathScreenshotAPIResponsePartial2,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
OptionImageOutputFormat("base64"),
},
},
wantErr: "cannot read response: unexpected EOF",
},
{
name: "unparsable response",
path: pathScreenshotAPIResponseUnparsable,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
OptionImageOutputFormat("base64"),
},
},
wantErr: "",
},
{
name: "could not process request",
path: pathScreenshotAPIResponseError,
args: args{
ctx: ctx,
options: options{
"whoisxmlapi.com",
OptionImageOutputFormat("base64"),
},
},
wantErr: "API failed with status code: 499",
},
{
name: "invalid argument",
path: pathScreenshotAPIResponseError,
args: args{
ctx: ctx,
options: options{
"",
OptionImageOutputFormat("base64"),
},
},
wantErr: `invalid argument: "URL" can not be empty`,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
api := newAPI(server, tt.path)
resp, err := api.GetRaw(tt.args.ctx, tt.args.options.mandatory)
if (err != nil || tt.wantErr != "") && (err == nil || err.Error() != tt.wantErr) {
t.Errorf("ScreenshotAPI.GetRaw() error = %v, wantErr %v", err, tt.wantErr)
return
}
if resp != nil && !checkResultRaw(resp.Body) {
t.Errorf("ScreenshotAPI.GetRaw() got = %v, expected something else", string(resp.Body))
}
})
}
}