-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmisc_test.go
More file actions
424 lines (365 loc) · 9.44 KB
/
misc_test.go
File metadata and controls
424 lines (365 loc) · 9.44 KB
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
package sendgrid
import (
"context"
"fmt"
"io"
"log"
"net/http"
"os"
"strconv"
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestErrorResponse(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/templates/d-12345abcde/versions/aaaaaa-bbbb-0000-0000-aaaaaaaaa", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "PATCH")
w.WriteHeader(http.StatusNotFound)
if _, err := fmt.Fprint(w, `{"error": "You cannot switch editors once a dynamic template version has been created."}`); err != nil {
t.Fatal(err)
}
})
client.debug = true
client.httpclient = &http.Client{}
client.log = log.New(os.Stdout, "sendgrid: ", log.Lshortfile|log.LstdFlags)
client.Debugf("%s", "test")
client.Debugln("test")
if _, err := client.UpdateTemplateVersion(context.TODO(), "d-12345abcde", "aaaaaa-bbbb-0000-0000-aaaaaaaaa", &InputUpdateTemplateVersion{
Editor: "code",
}); err == nil {
t.Fatal("expected an error but got none", err)
}
}
func TestErrorsResponse(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/teammates/dummy", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
w.WriteHeader(http.StatusNotFound)
if _, err := fmt.Fprint(w, `{"errors":[{"message": "teammate does not exis"}]}`); err != nil {
t.Fatal(err)
}
})
client.debug = true
client.httpclient = &http.Client{}
client.log = log.New(os.Stdout, "sendgrid: ", log.Lshortfile|log.LstdFlags)
client.Debugf("%s", "test")
client.Debugln("test")
if _, err := client.GetTeammate(context.TODO(), "dummy"); err == nil {
t.Fatal("expected an error but got none", err)
}
}
func TestStatusUnAuthorized(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/teammates/dummy", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
w.WriteHeader(http.StatusUnauthorized)
})
_, err := client.GetTeammate(context.TODO(), "dummy")
if err == nil {
t.Fatal("expected an error but got none", err)
}
}
func TestErrorResponseErr(t *testing.T) {
tests := []struct {
name string
error string
expected bool
}{
{
name: "empty error",
error: "",
expected: false,
},
{
name: "non-empty error",
error: "test error message",
expected: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
resp := ErrorResponse{Error: tt.error}
err := resp.Err()
if tt.expected {
assert.Error(t, err)
assert.Equal(t, tt.error, err.Error())
} else {
assert.NoError(t, err)
}
})
}
}
func TestRateLimitedErrorError(t *testing.T) {
retryAfter := 30 * time.Second
err := &RateLimitedError{RetryAfter: retryAfter}
expected := "sendgrid rate limit exceeded, retry after 30s"
assert.Equal(t, expected, err.Error())
}
func TestErrorsResponseErrs(t *testing.T) {
tests := []struct {
name string
errors []*Error
expected string
hasError bool
}{
{
name: "empty errors",
errors: []*Error{},
expected: "",
hasError: false,
},
{
name: "single error without field",
errors: []*Error{
{Message: String("test message")},
},
expected: "message: test message",
hasError: true,
},
{
name: "single error with field",
errors: []*Error{
{Field: String("email"), Message: String("invalid email")},
},
expected: "field: email, message: invalid email",
hasError: true,
},
{
name: "multiple errors",
errors: []*Error{
{Field: String("email"), Message: String("invalid email")},
{Message: String("missing name")},
},
expected: "field: email, message: invalid email, message: missing name",
hasError: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
resp := ErrorsResponse{Errors: tt.errors}
err := resp.Errs()
if tt.hasError {
assert.Error(t, err)
assert.Equal(t, tt.expected, err.Error())
} else {
assert.NoError(t, err)
}
})
}
}
func TestStatusCodeError(t *testing.T) {
err := statusCodeError{
Code: 500,
Status: "500 Internal Server Error",
}
assert.Equal(t, "sendgrid server error: 500 Internal Server Error", err.Error())
assert.Equal(t, 500, err.HTTPStatusCode())
}
func TestCheckStatusCode(t *testing.T) {
// Mock debug interface
debug := &mockDebug{debug: true}
tests := []struct {
name string
statusCode int
headers map[string]string
body string
expectedError string
shouldReturnError bool
}{
{
name: "success 200",
statusCode: 200,
body: `{"success": true}`,
shouldReturnError: false,
},
{
name: "success 201",
statusCode: 201,
body: `{"created": true}`,
shouldReturnError: false,
},
{
name: "rate limit with valid header",
statusCode: 429,
headers: map[string]string{"X-RateLimit-Reset": strconv.FormatInt(time.Now().Add(30*time.Second).Unix(), 10)},
expectedError: "sendgrid rate limit exceeded",
shouldReturnError: true,
},
{
name: "rate limit with invalid header",
statusCode: 429,
headers: map[string]string{"X-RateLimit-Reset": "invalid"},
expectedError: "invalid syntax",
shouldReturnError: true,
},
{
name: "errors response",
statusCode: 400,
body: `{"errors": [{"message": "validation failed"}]}`,
expectedError: "message: validation failed",
shouldReturnError: true,
},
{
name: "status code error fallback",
statusCode: 500,
body: `invalid json`,
expectedError: "sendgrid server error: 500 Internal Server Error",
shouldReturnError: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Create HTTP response manually
resp := &http.Response{
StatusCode: tt.statusCode,
Status: fmt.Sprintf("%d %s", tt.statusCode, http.StatusText(tt.statusCode)),
Header: make(http.Header),
Body: io.NopCloser(strings.NewReader(tt.body)),
}
// Set headers
for k, v := range tt.headers {
resp.Header.Set(k, v)
}
err := checkStatusCode(resp, debug)
if tt.shouldReturnError {
assert.Error(t, err)
assert.Contains(t, err.Error(), tt.expectedError)
} else {
assert.NoError(t, err)
}
})
}
}
func TestCheckStatusCodeErrorResponse(t *testing.T) {
// Mock debug interface
debug := &mockDebug{debug: true}
// Test single error response parsing
resp := &http.Response{
StatusCode: 404,
Status: "404 Not Found",
Header: make(http.Header),
Body: io.NopCloser(strings.NewReader(`{"error": "not found"}`)),
}
err := checkStatusCode(resp, debug)
assert.Error(t, err)
// Due to how the function works, first it tries to parse as ErrorsResponse which fails
// Then it tries ErrorResponse which also fails because body is already consumed
// So it falls back to statusCodeError
assert.Contains(t, err.Error(), "sendgrid server error: 404 Not Found")
}
func TestLogResponse(t *testing.T) {
tests := []struct {
name string
debug bool
expectError bool
}{
{
name: "debug disabled",
debug: false,
expectError: false,
},
{
name: "debug enabled",
debug: true,
expectError: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
debug := &mockDebug{debug: tt.debug}
resp := &http.Response{
StatusCode: 200,
Status: "200 OK",
Header: make(http.Header),
Body: &mockReadCloser{strings.NewReader("test body")},
}
err := logResponse(resp, debug)
if tt.expectError {
assert.Error(t, err)
} else {
assert.NoError(t, err)
}
})
}
}
func TestLogResponseError(t *testing.T) {
debug := &mockDebug{debug: true}
// Create a response with nil body reader to cause httputil.DumpResponse to fail
resp := &http.Response{
StatusCode: 200,
Status: "200 OK",
Header: make(http.Header),
Body: &errorReadCloser{},
}
err := logResponse(resp, debug)
assert.Error(t, err)
}
func TestNewJSONParser(t *testing.T) {
type testStruct struct {
Message string `json:"message"`
}
tests := []struct {
name string
body string
wantErr bool
}{
{
name: "valid JSON",
body: `{"message": "test"}`,
wantErr: false,
},
{
name: "invalid JSON",
body: `{invalid json}`,
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
var dst testStruct
parser := newJSONParser(&dst)
resp := &http.Response{
Body: &mockReadCloser{strings.NewReader(tt.body)},
}
err := parser(resp)
if tt.wantErr {
assert.Error(t, err)
} else {
assert.NoError(t, err)
assert.Equal(t, "test", dst.Message)
}
})
}
}
// Mock interfaces and types for testing
type mockDebug struct {
debug bool
logs []string
}
func (m *mockDebug) Debug() bool {
return m.debug
}
func (m *mockDebug) Debugf(format string, v ...interface{}) {
m.logs = append(m.logs, fmt.Sprintf(format, v...))
}
func (m *mockDebug) Debugln(v ...interface{}) {
m.logs = append(m.logs, fmt.Sprintln(v...))
}
type mockReadCloser struct {
*strings.Reader
}
func (m *mockReadCloser) Close() error {
return nil
}
type errorReadCloser struct{}
func (e *errorReadCloser) Read(p []byte) (n int, err error) {
return 0, fmt.Errorf("read error")
}
func (e *errorReadCloser) Close() error {
return nil
}