forked from recurly/recurly-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error_test.go
275 lines (246 loc) · 7.05 KB
/
error_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
package recurly
import (
"bytes"
"io"
"net/http"
"testing"
)
func bodyToBytes(io io.ReadCloser) []byte {
buf := new(bytes.Buffer)
buf.ReadFrom(io)
return buf.Bytes()
}
func mockResponseWithBody(statusCode int, body string) *http.Response {
req := &http.Request{Method: "GET"}
resp := mockResponse(req, statusCode, String(body))
return resp
}
func mockResponseWithoutBody(statusCode int) *http.Response {
req := &http.Request{Method: "GET"}
resp := mockResponse(req, statusCode, String(""))
resp.Header.Del("Content-Type")
return resp
}
func parseError(resp *http.Response) error {
return parseResponseToError(resp, bodyToBytes(resp.Body))
}
func Test401UnauthorizedError(test *testing.T) {
t := &T{test}
resp := mockResponseWithBody(401, `
{
"error": {
"type": "unauthorized",
"message": "Invalid API key"
}
}`)
err := parseError(resp)
t.Assert(err.Error(), "Invalid API key", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeUnauthorized, "e.Type")
t.Assert(e.Class, ErrorClassClient, "e.Class")
}
// test fallback without body
resp = mockResponseWithoutBody(401)
err = parseError(resp)
t.Assert(err.Error(), "Unauthorized", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeUnauthorized, "e.Type")
t.Assert(e.Class, ErrorClassClient, "e.Class")
}
}
func Test403ForbiddenError(test *testing.T) {
t := &T{test}
resp := mockResponseWithBody(403, `
{
"error": {
"type": "forbidden",
"message": "API key cannot access this resource"
}
}`)
err := parseError(resp)
t.Assert(err.Error(), "API key cannot access this resource", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeForbidden, "e.Type")
t.Assert(e.Class, ErrorClassClient, "e.Class")
}
// test fallback without body
resp = mockResponseWithoutBody(403)
err = parseError(resp)
t.Assert(err.Error(), "The API key is not authorized for this resource", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeForbidden, "e.Type")
t.Assert(e.Class, ErrorClassClient, "e.Class")
}
}
func Test404NotFoundError(test *testing.T) {
t := &T{test}
resp := mockResponseWithBody(404, `
{
"error": {
"type": "not_found",
"message": "It's Not found"
}
}`)
err := parseError(resp)
t.Assert(err.Error(), "It's Not found", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeNotFound, "e.Type")
t.Assert(e.Class, ErrorClassClient, "e.Class")
}
// test fallback without body
resp = mockResponseWithoutBody(404)
err = parseError(resp)
t.Assert(err.Error(), "Requested object or endpoint not found", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeNotFound, "e.Type")
t.Assert(e.Class, ErrorClassClient, "e.Class")
}
}
func Test422ValidationError(test *testing.T) {
t := &T{test}
resp := mockResponseWithBody(422, `
{
"error": {
"type": "validation",
"message": "It's Invalid",
"params": [
{"param":"property","message":"is invalid"}
]
}
}`)
err := parseError(resp)
t.Assert(err.Error(), "It's Invalid", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeValidation, "e.Type")
t.Assert(e.Class, ErrorClassClient, "e.Class")
t.Assert(len(e.Params), 1, "e")
}
// test fallback without body
resp = mockResponseWithoutBody(422)
err = parseError(resp)
t.Assert(err.Error(), "Invalid request", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeValidation, "e.Type")
t.Assert(e.Class, ErrorClassClient, "e.Class")
}
}
func Test429RateLimitedError(test *testing.T) {
t := &T{test}
resp := mockResponseWithBody(429, `
{
"error": {
"type": "rate_limited",
"message": "Too many requests"
}
}`)
err := parseError(resp)
t.Assert(err.Error(), "Too many requests", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeRateLimited, "e.Type")
t.Assert(e.Class, ErrorClassClient, "e.Class")
}
// test fallback without body
resp = mockResponseWithoutBody(429)
err = parseError(resp)
t.Assert(err.Error(), "You made too many API requests", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeRateLimited, "e.Type")
t.Assert(e.Class, ErrorClassClient, "e.Class")
}
}
func Test500InternalServerError(test *testing.T) {
t := &T{test}
resp := mockResponseWithBody(500, `
{
"error": {
"type": "internal_server_error",
"message": "Unknown Server Error"
}
}`)
err := parseError(resp)
t.Assert(err.Error(), "Unknown Server Error", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeInternalServer, "e.Type")
t.Assert(e.Class, ErrorClassServer, "e.Class")
}
// test fallback without body
resp = mockResponseWithoutBody(500)
err = parseError(resp)
t.Assert(err.Error(), "Server experienced an error", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeInternalServer, "e.Type")
t.Assert(e.Class, ErrorClassServer, "e.Class")
}
}
func Test502BadGatewatError(test *testing.T) {
t := &T{test}
resp := mockResponseWithBody(502, `
{
"error": {
"type": "bad_gateway",
"message": "A bad gateway"
}
}`)
err := parseError(resp)
t.Assert(err.Error(), "A bad gateway", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeBadGateway, "e.Type")
t.Assert(e.Class, ErrorClassServer, "e.Class")
}
// test fallback without body
resp = mockResponseWithoutBody(502)
err = parseError(resp)
t.Assert(err.Error(), "Error contacting server", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeBadGateway, "e.Type")
t.Assert(e.Class, ErrorClassServer, "e.Class")
}
}
func Test503ServiceUnavailableError(test *testing.T) {
t := &T{test}
resp := mockResponseWithBody(503, `
{
"error": {
"type": "service_unavailable",
"message": "The service is unavailable"
}
}`)
err := parseError(resp)
t.Assert(err.Error(), "The service is unavailable", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeServiceUnavailable, "e.Type")
t.Assert(e.Class, ErrorClassServer, "e.Class")
}
// test fallback without body
resp = mockResponseWithoutBody(503)
err = parseError(resp)
t.Assert(err.Error(), "Service unavailable", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeServiceUnavailable, "e.Type")
t.Assert(e.Class, ErrorClassServer, "e.Class")
}
}
func Test504GatewayTimeoutError(test *testing.T) {
t := &T{test}
resp := mockResponseWithBody(504, `
{
"error": {
"type": "timeout",
"message": "The request timed out"
}
}`)
err := parseError(resp)
t.Assert(err.Error(), "The request timed out", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeTimeout, "e.Type")
t.Assert(e.Class, ErrorClassServer, "e.Class")
}
// test fallback without body
resp = mockResponseWithoutBody(504)
err = parseError(resp)
t.Assert(err.Error(), "Request timed out", "err.Error()")
if e, ok := err.(*Error); ok {
t.Assert(e.Type, ErrorTypeTimeout, "e.Type")
t.Assert(e.Class, ErrorClassServer, "e.Class")
}
}