-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandler_test.go
More file actions
286 lines (248 loc) · 6.56 KB
/
handler_test.go
File metadata and controls
286 lines (248 loc) · 6.56 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
package main
import (
"context"
"errors"
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/go-chi/chi/v5"
)
type MockStorage struct {
shouldFail bool // должна ли быть ошибка: true/false
tasks []Task
}
func (m *MockStorage) UpdateTask(ctx context.Context, id int, title string, done bool) (Task, error) {
if m.shouldFail {
return Task{}, errors.New("ошибка в базе данных")
}
return Task{}, nil
}
func (m *MockStorage) PrintAllTasks(ctx context.Context) ([]Task, error) {
if m.shouldFail {
return nil, errors.New("ошибка в базе данных")
}
return m.tasks, nil
}
func (m *MockStorage) DeleteTask(ctx context.Context, id int) error {
if m.shouldFail {
return errors.New("ошибка в базе данных")
}
return nil
}
func (m *MockStorage) CreateTask(ctx context.Context, title string) (Task, error) {
if m.shouldFail {
return Task{}, errors.New("ошибка в базе данных")
}
return Task{ID: 1, Title: title, Done: false}, nil
}
func (m *MockStorage) PrintTask(ctx context.Context, id int) (Task, error) {
if m.shouldFail {
return Task{}, errors.New("ошибка в базе данных")
}
return Task{}, nil
}
func TestHandlerUpdateTask(t *testing.T) {
tests := []struct {
name string
id string
shouldFail bool
wantStatus int
}{
{
name: "успешное обновление",
id: "1",
shouldFail: false,
wantStatus: http.StatusNoContent,
},
{
name: "ошибка хранилища",
id: "1",
shouldFail: true,
wantStatus: http.StatusBadRequest,
},
{
name: "невалидный id",
id: "abc",
shouldFail: false,
wantStatus: http.StatusBadRequest,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
mock := &MockStorage{shouldFail: tt.shouldFail}
handler := &Handler{storage: mock}
req := httptest.NewRequest("DELETE", "/tasks/"+tt.id, nil)
rctx := chi.NewRouteContext()
rctx.URLParams.Add("id", tt.id)
req = req.WithContext(context.WithValue(req.Context(), chi.RouteCtxKey, rctx))
w := httptest.NewRecorder()
handler.handlerUpdateTask(w, req)
if w.Code != tt.wantStatus {
t.Errorf("ожидал %d, получил %d", tt.wantStatus, w.Code)
}
})
}
}
func TestHandlerPrintAllTasks(t *testing.T) {
tests := []struct {
name string
tasks []Task
shouldFail bool
wantStatus int
}{
{
name: "успешное получение списка",
tasks: []Task{{ID: 1, Title: "купить молоко", Done: false}},
shouldFail: false,
wantStatus: http.StatusOK,
},
{
name: "пустой список",
tasks: []Task{},
shouldFail: false,
wantStatus: http.StatusOK,
},
{
name: "ошибка хранилища",
tasks: nil,
shouldFail: true,
wantStatus: http.StatusBadRequest,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
mock := &MockStorage{shouldFail: tt.shouldFail, tasks: tt.tasks}
handler := &Handler{storage: mock}
req := httptest.NewRequest("GET", "/tasks", nil)
w := httptest.NewRecorder()
handler.handlerPrintAllTasks(w, req)
if w.Code != tt.wantStatus {
t.Errorf("ожидал %d, получил %d", tt.wantStatus, w.Code)
}
})
}
}
func TestHandlerDeleteTask(t *testing.T) {
tests := []struct {
name string
id string
shouldFail bool
wantStatus int
}{
{
name: "успешное удаление",
id: "1",
shouldFail: false,
wantStatus: http.StatusNoContent,
},
{
name: "ошибка хранилища",
id: "1",
shouldFail: true,
wantStatus: http.StatusBadRequest,
},
{
name: "невалидный id",
id: "abc",
shouldFail: false,
wantStatus: http.StatusBadRequest,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
mock := &MockStorage{shouldFail: tt.shouldFail}
handler := &Handler{storage: mock}
req := httptest.NewRequest("DELETE", "/tasks/"+tt.id, nil)
rctx := chi.NewRouteContext()
rctx.URLParams.Add("id", tt.id)
req = req.WithContext(context.WithValue(req.Context(), chi.RouteCtxKey, rctx))
w := httptest.NewRecorder()
handler.handlerDeleteTask(w, req)
if w.Code != tt.wantStatus {
t.Errorf("ожидал %d, получил %d", tt.wantStatus, w.Code)
}
})
}
}
func TestHandlerCreateTask(t *testing.T) {
tests := []struct {
name string
body string
shouldFail bool
wantStatus int
}{
{
name: "успешное создание",
body: `{"title": "купить молоко"}`,
shouldFail: false,
wantStatus: http.StatusCreated,
},
{
name: "невалидный json",
body: `{not json}`,
shouldFail: false,
wantStatus: http.StatusBadRequest,
},
{
name: "ошибка хранилища",
body: `{"title": "купить молоко"}`,
shouldFail: true,
wantStatus: http.StatusInternalServerError,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
mock := &MockStorage{shouldFail: tt.shouldFail}
handler := &Handler{storage: mock}
req := httptest.NewRequest("POST", "/tasks", strings.NewReader(tt.body))
w := httptest.NewRecorder()
handler.handlerCreateTask(w, req)
if w.Code != tt.wantStatus {
t.Errorf("ожидал %d, получил %d", tt.wantStatus, w.Code)
}
})
}
}
func TestHandlerPrintTask(t *testing.T) {
tests := []struct {
name string
id string
shouldFail bool
wantStatus int
}{
{
name: "успешное получение",
id: "1",
shouldFail: false,
wantStatus: http.StatusOK,
},
{
name: "задача не найдена",
id: "1",
shouldFail: true,
wantStatus: http.StatusBadRequest,
},
{
name: "невалидный id",
id: "abc",
shouldFail: false,
wantStatus: http.StatusBadRequest,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
mock := &MockStorage{shouldFail: tt.shouldFail}
handler := &Handler{storage: mock}
req := httptest.NewRequest("GET", "/tasks/"+tt.id, nil)
rctx := chi.NewRouteContext()
rctx.URLParams.Add("id", tt.id)
req = req.WithContext(context.WithValue(req.Context(), chi.RouteCtxKey, rctx))
w := httptest.NewRecorder()
handler.handlerPrintTask(w, req)
if w.Code != tt.wantStatus {
t.Errorf("ожидал %d, получил %d", tt.wantStatus, w.Code)
}
})
}
}