-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrespond_test.go
181 lines (171 loc) · 4.5 KB
/
respond_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
package jsonapi
import (
"bytes"
"io/ioutil"
"net/http"
"net/http/httptest"
"testing"
)
func TestRespond(t *testing.T) {
type Car struct {
VIN string `jsonapi:"primary,cars"`
Make string `jsonapi:"attribute,make"`
Model string `jsonapi:"attribute,model"`
}
type respondTest struct {
ExpectedBody []byte
ExpectedContentType string
ExpectedStatusCode int
Handler http.HandlerFunc
}
tests := []respondTest{
{
ExpectedBody: []byte(`{
"data": {
"id": "5YJSA1DG9DFP14705",
"type": "cars",
"attributes": {
"make": "Honda",
"model": "CR-V"
}
},
"jsonapi": {
"version": "1.0"
}
}`),
ExpectedContentType: ContentType,
ExpectedStatusCode: http.StatusOK,
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
car := Car{
VIN: "5YJSA1DG9DFP14705",
Make: "Honda",
Model: "CR-V",
}
if err := Respond(w, r, http.StatusOK, &car, nil); err != nil {
t.Errorf("expected no error, got: %s", err.Error())
}
}),
},
{
ExpectedStatusCode: http.StatusOK,
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
car := Car{
Make: "Honda",
Model: "CR-V",
}
if err := Respond(w, r, http.StatusOK, &car, nil); err != nil {
if err.Error() != "ID must be set" {
t.Errorf("expected error: %s, got: %s", "ID must be set", err.Error())
}
}
}),
},
}
for _, rt := range tests {
w := httptest.NewRecorder()
rt.Handler(w, httptest.NewRequest("GET", "http://example.com/foo", nil))
res := w.Result()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
t.Error(err)
}
if res.StatusCode != rt.ExpectedStatusCode {
t.Errorf("expected status code: %d, got: %d", rt.ExpectedStatusCode, res.StatusCode)
}
if res.Header.Get("Content-Type") != rt.ExpectedContentType {
t.Errorf("expected content-type header: %s, got: %s", rt.ExpectedContentType, res.Header.Get("Content-Type"))
}
if bytes.Compare(body, rt.ExpectedBody) != 0 {
t.Errorf("expected body: %s, got: %s", string(rt.ExpectedBody), string(body))
}
}
}
func TestRespondError(t *testing.T) {
type respondErrorTest struct {
ExpectedBody []byte
ExpectedContentType string
ExpectedStatusCode int
Handler http.HandlerFunc
}
tests := []respondErrorTest{
{
ExpectedBody: []byte(`{
"jsonapi": {
"version": "1.0"
},
"errors": [
{
"title": "not_found"
}
]
}`),
ExpectedContentType: ContentType,
ExpectedStatusCode: http.StatusNotFound,
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if err := RespondError(w, r, http.StatusNotFound, nil, Error{Title: "not_found"}); err != nil {
t.Errorf("expected no error, got: %s", err.Error())
}
}),
},
{
ExpectedBody: []byte(`{
"jsonapi": {
"version": "1.0"
},
"errors": [
{
"title": "internal_server_error"
}
]
}`),
ExpectedContentType: ContentType,
ExpectedStatusCode: http.StatusInternalServerError,
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if err := RespondError(w, r, http.StatusInternalServerError, nil, Error{Title: "internal_server_error"}); err != nil {
t.Errorf("expected no error, got: %s", err.Error())
}
}),
},
{
ExpectedBody: []byte(`{
"jsonapi": {
"version": "1.0"
},
"errors": [
{
"title": "internal_server_error"
},
{
"id": "BAD_REQUEST",
"title": "bad_request"
}
]
}`),
ExpectedContentType: ContentType,
ExpectedStatusCode: http.StatusInternalServerError,
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if err := RespondError(w, r, http.StatusInternalServerError, nil, Error{Title: "internal_server_error"}, Error{ID: "BAD_REQUEST", Title: "bad_request"}); err != nil {
t.Errorf("expected no error, got: %s", err.Error())
}
}),
},
}
for _, rt := range tests {
w := httptest.NewRecorder()
rt.Handler(w, httptest.NewRequest("GET", "http://example.com/foo", nil))
res := w.Result()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
t.Error(err)
}
if res.StatusCode != rt.ExpectedStatusCode {
t.Errorf("expected status code: %d, got: %d", rt.ExpectedStatusCode, res.StatusCode)
}
if res.Header.Get("Content-Type") != rt.ExpectedContentType {
t.Errorf("expected content-type header: %s, got: %s", rt.ExpectedContentType, res.Header.Get("Content-Type"))
}
if bytes.Compare(body, rt.ExpectedBody) != 0 {
t.Errorf("expected body: %s, got: %s", string(rt.ExpectedBody), string(body))
}
}
}