forked from thestephenstanton/hapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrespond_test.go
More file actions
382 lines (347 loc) · 10.7 KB
/
respond_test.go
File metadata and controls
382 lines (347 loc) · 10.7 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
package hapi
import (
"encoding/json"
"fmt"
"net/http"
"net/http/httptest"
"testing"
goerrors "github.com/pkg/errors"
"github.com/RedVentures/hapi/errors"
"github.com/stretchr/testify/assert"
)
// helps with TestRespond
func respondHandler(statusCode int, payload interface{}) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
err := Respond(w, statusCode, payload)
if err != nil {
panic(err.Error())
}
}
}
func TestRespond(t *testing.T) {
testCases := []struct {
desc string
statusCode int
payload interface{}
expectedStatusCode int
expectedBody []byte
}{
{
desc: "basic response",
statusCode: 42,
payload: "hello world",
expectedStatusCode: 42,
expectedBody: []byte(`"hello world"`),
},
{
desc: "nil payload",
statusCode: 741,
payload: nil,
expectedStatusCode: 741,
expectedBody: nil,
},
{
desc: "custom payload",
statusCode: 951,
payload: struct {
Foo string `json:"foo"`
}{
Foo: "bar",
},
expectedStatusCode: 951,
expectedBody: json.RawMessage(`{"foo":"bar"}`),
},
}
for _, tc := range testCases {
t.Run(tc.desc, func(t *testing.T) {
// We create a ResponseRecorder (which satisfies http.ResponseWriter) to record the response.
recorder := httptest.NewRecorder()
handler := http.HandlerFunc(respondHandler(tc.statusCode, tc.payload))
// We don't care about the request, we just care about the response.
req, err := http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatal(err)
}
handler.ServeHTTP(recorder, req)
actualStatusCode := recorder.Code
actualBody := recorder.Body.Bytes()
assert.Equal(t, tc.expectedStatusCode, actualStatusCode)
assert.Equal(t, tc.expectedBody, actualBody)
})
}
}
// heals with TestRespondError
func respondErrorHandler(err error) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
err := RespondError(w, err)
if err != nil {
panic(err.Error())
}
}
}
func TestRespondError(t *testing.T) {
testCases := []struct {
desc string
err error
expectedStatusCode int
expectedBody json.RawMessage
}{
{
desc: "respond with hapi error",
err: errors.Forbidden.New("some message you want your client to see"),
expectedStatusCode: http.StatusForbidden,
expectedBody: json.RawMessage(`
{
"error": "some message you want your client to see"
}
`),
},
{
desc: "custom set message",
err: errors.SetMessage(
errors.Forbidden.New("info you might not want client to see"),
"some message you want your client to see",
),
expectedStatusCode: http.StatusForbidden,
expectedBody: json.RawMessage(`
{
"error": "some message you want your client to see"
}
`),
},
{
desc: "another way to set message",
err: errors.Forbidden.New("info you might not want client to see").SetMessage("some message you want your client to see"),
expectedStatusCode: http.StatusForbidden,
expectedBody: json.RawMessage(`
{
"error": "some message you want your client to see"
}
`),
},
{
desc: "standard go error",
err: goerrors.New("some go error"),
expectedStatusCode: Config.DefaultStatusCode,
expectedBody: json.RawMessage(fmt.Sprintf(`{"error":"%s"}`, Config.DefaultErrorMessage)),
},
{
desc: "set message on standard go errors",
err: errors.SetMessage(goerrors.New("some go error"), "created by errors.SetMessage()"),
expectedStatusCode: Config.DefaultStatusCode,
expectedBody: json.RawMessage(`
{
"error": "created by errors.SetMessage()"
}
`),
},
{
desc: "custom error matching hapiError interface",
err: customHapiError{
statusCode: 666,
message: "custom error someone created",
},
expectedStatusCode: 666,
expectedBody: json.RawMessage(`
{
"error": "custom error someone created"
}
`),
},
{
desc: "nil error",
err: nil,
expectedStatusCode: Config.DefaultStatusCode,
expectedBody: json.RawMessage(fmt.Sprintf(`{"error":"%s"}`, Config.DefaultErrorMessage)),
},
{
desc: "hapi error wrapped with hapi error",
err: errors.Unauthorized.Wrap(errors.ImATeapot.New("initial error"), "wrapping error"),
expectedStatusCode: http.StatusUnauthorized,
expectedBody: json.RawMessage(`
{
"error": "wrapping error"
}
`),
},
}
for _, tc := range testCases {
t.Run(tc.desc, func(t *testing.T) {
// We create a ResponseRecorder (which satisfies http.ResponseWriter) to record the response.
recorder := httptest.NewRecorder()
handler := http.HandlerFunc(respondErrorHandler(tc.err))
// We don't care about the request, we just care about the response.
req, err := http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatal(err)
}
handler.ServeHTTP(recorder, req)
actualStatusCode := recorder.Code
actualBody := recorder.Body.String()
assert.Equal(t, tc.expectedStatusCode, actualStatusCode)
assert.JSONEq(t, string(tc.expectedBody), string(actualBody))
})
}
}
type customHapiError struct {
statusCode int
message string
}
func (c customHapiError) Error() string {
return "something went wrong"
}
func (c customHapiError) GetStatusCode() int {
return c.statusCode
}
func (c customHapiError) GetMessage() string {
return c.message
}
// helps with TestRespondHelpers
func helperResponderHandlerHelper(helperResponder func(http.ResponseWriter, interface{}) error, payload interface{}) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
err := helperResponder(w, payload)
if err != nil {
panic(err.Error())
}
}
}
func TestRespondHelpers(t *testing.T) {
// We are just going to assume these are always the same since we test this thoroughly
// in TestRespond and TestRespondError
payload := "hello world"
expectedBody := `"hello world"`
testCases := []struct {
desc string
respond func(http.ResponseWriter, interface{}) error
expectedStatusCode int
}{
{
desc: "Test OK",
respond: RespondOK,
expectedStatusCode: http.StatusOK,
},
{
desc: "Test Bad Request",
respond: RespondBadRequest,
expectedStatusCode: http.StatusBadRequest,
},
{
desc: "Test Unauthorized",
respond: RespondUnauthorized,
expectedStatusCode: http.StatusUnauthorized,
},
{
desc: "Test Forbidden",
respond: RespondForbidden,
expectedStatusCode: http.StatusForbidden,
},
{
desc: "Test NotFound",
respond: RespondNotFound,
expectedStatusCode: http.StatusNotFound,
},
{
desc: "Test Teapot",
respond: RespondTeapot,
expectedStatusCode: http.StatusTeapot,
},
{
desc: "Test TooLarge",
respond: RespondTooLarge,
expectedStatusCode: http.StatusRequestEntityTooLarge,
},
{
desc: "Test InternalError",
respond: RespondInternalError,
expectedStatusCode: http.StatusInternalServerError,
},
}
for _, tc := range testCases {
t.Run(tc.desc, func(t *testing.T) {
// We create a ResponseRecorder (which satisfies http.ResponseWriter) to record the response.
recorder := httptest.NewRecorder()
handler := http.HandlerFunc(helperResponderHandlerHelper(tc.respond, payload))
// We don't care about the request, we just care about the response.
req, err := http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatal(err)
}
handler.ServeHTTP(recorder, req)
actualStatusCode := recorder.Code
actualBody := recorder.Body.String()
assert.Equal(t, tc.expectedStatusCode, actualStatusCode)
assert.Equal(t, expectedBody, actualBody)
})
}
}
func TestChangeConfigDefaults(t *testing.T) {
originalConfig := Config
testCases := []struct {
desc string
newDefaultStatusCode int
newDefaultErrorMessage string
newReturnNulls bool
newReturnRawError bool
expectedStatusCode int
expectedBody string
}{
{
desc: "change default status code",
newDefaultStatusCode: 123,
newDefaultErrorMessage: originalConfig.DefaultErrorMessage,
expectedStatusCode: 123,
expectedBody: fmt.Sprintf(`{"error":"%s"}`, Config.DefaultErrorMessage),
},
{
desc: "change default message",
newDefaultStatusCode: originalConfig.DefaultStatusCode,
newDefaultErrorMessage: "new default message",
expectedStatusCode: originalConfig.DefaultStatusCode,
expectedBody: fmt.Sprintf(`{"error":"%s"}`, "new default message"),
},
{
desc: "empty default error message",
newDefaultStatusCode: http.StatusTeapot,
newDefaultErrorMessage: "",
expectedStatusCode: http.StatusTeapot,
expectedBody: fmt.Sprintf(`{"error":"%s"}`, "I'm a teapot"),
},
{
desc: "empty default error message with not real status code",
newDefaultStatusCode: 42,
newDefaultErrorMessage: "",
expectedStatusCode: 42,
expectedBody: fmt.Sprintf(`{"error":"%s"}`, ""),
},
{
desc: "return raw error",
newDefaultStatusCode: originalConfig.DefaultStatusCode,
newDefaultErrorMessage: originalConfig.DefaultErrorMessage,
newReturnRawError: true,
expectedStatusCode: originalConfig.DefaultStatusCode,
expectedBody: fmt.Sprintf(`{"error":"%s","rawError":"%s"}`, Config.DefaultErrorMessage, "detailed error"),
},
}
for _, tc := range testCases {
t.Run(tc.desc, func(t *testing.T) {
Config.DefaultStatusCode = tc.newDefaultStatusCode
Config.DefaultErrorMessage = tc.newDefaultErrorMessage
Config.ReturnRawError = tc.newReturnRawError
// We create a ResponseRecorder (which satisfies http.ResponseWriter) to record the response.
recorder := httptest.NewRecorder()
handler := http.HandlerFunc(respondErrorHandler(goerrors.New("detailed error")))
// We don't care about the request, we just care about the response.
req, err := http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatal(err)
}
handler.ServeHTTP(recorder, req)
actualStatusCode := recorder.Code
actualBody := recorder.Body.String()
assert.Equal(t, tc.expectedStatusCode, actualStatusCode)
assert.Equal(t, tc.expectedBody, actualBody)
// reset config
Config = originalConfig
})
}
}