-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttphelper_test.go
56 lines (41 loc) · 1.19 KB
/
httphelper_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
package main
import (
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
)
func TestRespondWithJSON(t *testing.T) {
t.Run("test respond with json with generic interface", func(t *testing.T) {
response := httptest.NewRecorder()
type FooStruct struct {
Foo string `json:"foo"`
}
testStruct := FooStruct{
Foo: "bar",
}
respondWithJSON(response, http.StatusOK, testStruct)
wantStruct := FooStruct{}
err := json.NewDecoder(response.Body).Decode(&wantStruct)
if err != nil {
t.Errorf("could not parse result as expected")
}
if testStruct != wantStruct {
t.Errorf("failed to respond with arbitrary interface got %q want %q", testStruct, wantStruct)
}
})
}
func TestRespondWithError(t *testing.T) {
t.Run("test respond with error with generic error", func(t *testing.T) {
response := httptest.NewRecorder()
respondWithError(response, http.StatusInternalServerError, "stuff is broken")
wantStruct := errorResponse{}
err := json.NewDecoder(response.Body).Decode(&wantStruct)
if err != nil {
t.Errorf("could not parse result as expected")
}
if wantStruct.Error != "stuff is broken" {
t.Errorf("failed to respond with a generic error")
}
})
}