-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathhttp_test.go
More file actions
243 lines (239 loc) · 5.11 KB
/
http_test.go
File metadata and controls
243 lines (239 loc) · 5.11 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
package errors
import (
"context"
"errors"
"net/http"
"net/http/httptest"
"testing"
)
func TestHTTPStatusCodeMessage(t *testing.T) {
type args struct {
err error
}
tests := []struct {
name string
args args
want int
want1 string
want2 bool
}{
{
name: "TypeInternal",
args: args{
err: Internal("unknown error occurred"),
},
want: http.StatusInternalServerError,
want1: "unknown error occurred",
want2: true,
},
{
name: "TypeInternal - Go builtin error type",
args: args{
err: errors.New("unknown error occurred"),
},
want: http.StatusInternalServerError,
want1: "unknown error occurred",
want2: false,
},
{
name: "TypeValidation",
args: args{
err: Validation("invalid email provided"),
},
want: http.StatusUnprocessableEntity,
want1: "invalid email provided",
want2: true,
},
{
name: "TypeInputBody",
args: args{
err: InputBody("invalid json provided"),
},
want: http.StatusBadRequest,
want1: "invalid json provided",
want2: true,
},
{
name: "TypeDuplicate",
args: args{
err: Duplicate("duplicate content detected"),
},
want: http.StatusConflict,
want1: "duplicate content detected",
want2: true,
},
{
name: "TypeUnauthenticated",
args: args{
err: Unauthenticated("authentication required"),
},
want: http.StatusUnauthorized,
want1: "authentication required",
want2: true,
},
{
name: "TypeUnauthorized",
args: args{
err: Unauthorized("not authorized to access this resource"),
},
want: http.StatusForbidden,
want1: "not authorized to access this resource",
want2: true,
},
{
name: "TypeEmpty",
args: args{
err: Empty("empty content not expected"),
},
want: http.StatusGone,
want1: "empty content not expected",
want2: true,
},
{
name: "TypeNotFound",
args: args{
err: NotFound("requested resource not found"),
},
want: http.StatusNotFound,
want1: "requested resource not found",
want2: true,
},
{
name: "TypeMaximumAttempts",
args: args{
err: MaximumAttempts("exceeded maximum number of requests allowed"),
},
want: http.StatusTooManyRequests,
want1: "exceeded maximum number of requests allowed",
want2: true,
},
{
name: "TypeSubscriptionExpired",
args: args{
err: SubscriptionExpired("your subscription has expired"),
},
want: http.StatusPaymentRequired,
want1: "your subscription has expired",
want2: true,
},
{
name: "TypeDownstreamDependencyTimedout",
args: args{
err: DownstreamDependencyTimedout("dependency timed out"),
},
want: http.StatusInternalServerError,
want1: "dependency timed out",
want2: true,
},
{
name: "TypeNotImplemented",
args: args{
err: NotImplemented("feature not implemented"),
},
want: http.StatusNotImplemented,
want1: "feature not implemented",
want2: true,
},
{
name: "TypeContextCancelled",
args: args{
err: context.Canceled,
},
want: http.StatusRequestTimeout,
want1: "context canceled",
want2: false,
},
{
name: "TypeContextTimedout",
args: args{
err: context.DeadlineExceeded,
},
want: http.StatusRequestTimeout,
want1: "context deadline exceeded",
want2: false,
},
{
name: "joined: TypeContextTimedout",
args: args{
err: Join(errors.New("base error"), ContextTimedout("context timed out")),
},
want: http.StatusRequestTimeout,
want1: "context timed out",
want2: false,
},
{
name: "joined: TypeContextTimedout",
args: args{
err: Join(
errors.New("base error"),
ContextTimedout("context timed out"),
ContextCancelled("context cancelled"),
),
},
want: http.StatusRequestTimeout,
want1: "context timed out\ncontext cancelled",
want2: false,
},
}
for idx, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1, got2 := HTTPStatusCodeMessage(tt.args.err)
if got != tt.want {
t.Errorf(
"[%d/%s] HTTPStatusCodeMessage() got = %v, want %v",
idx, tt.name, got, tt.want,
)
}
if got1 != tt.want1 {
t.Errorf(
"[%d/%s] HTTPStatusCodeMessage() got1 = %v, want %v",
idx, tt.name, got1, tt.want1,
)
}
if got2 != tt.want2 {
t.Errorf("[%d/%s] HTTPStatusCodeMessage() got2 = %v, want %v",
idx, tt.name, got2, tt.want2,
)
}
})
}
}
func TestWriteHTTP(t *testing.T) {
type args struct {
err error
w http.ResponseWriter
}
tests := []struct {
name string
args args
wantMessage string
wantStatus int
}{
{
name: "TypeInternal",
args: args{
err: Internal("system error"),
w: httptest.NewRecorder(),
},
wantStatus: http.StatusInternalServerError,
wantMessage: "system error",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
WriteHTTP(tt.args.err, tt.args.w)
rr, _ := tt.args.w.(*httptest.ResponseRecorder)
if rr != nil {
if rr.Code != tt.wantStatus {
t.Errorf(
"WriteHTTP() got = %d, '%s', expected %d, '%s'",
rr.Code,
rr.Body.String(),
tt.wantStatus,
tt.wantMessage,
)
}
}
})
}
}