-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathpost_controller_test.go
462 lines (423 loc) · 12.2 KB
/
post_controller_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
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
package controllertests
import (
"bytes"
"encoding/json"
"fmt"
"log"
"net/http"
"net/http/httptest"
"strconv"
"testing"
"github.com/gorilla/mux"
"github.com/victorsteven/fullstack/api/models"
"gopkg.in/go-playground/assert.v1"
)
func TestCreatePost(t *testing.T) {
err := refreshUserAndPostTable()
if err != nil {
log.Fatal(err)
}
user, err := seedOneUser()
if err != nil {
log.Fatalf("Cannot seed user %v\n", err)
}
token, err := server.SignIn(user.Email, "password") //Note the password in the database is already hashed, we want unhashed
if err != nil {
log.Fatalf("cannot login: %v\n", err)
}
tokenString := fmt.Sprintf("Bearer %v", token)
samples := []struct {
inputJSON string
statusCode int
title string
content string
author_id uint32
tokenGiven string
errorMessage string
}{
{
inputJSON: `{"title":"The title", "content": "the content", "author_id": 1}`,
statusCode: 201,
tokenGiven: tokenString,
title: "The title",
content: "the content",
author_id: user.ID,
errorMessage: "",
},
{
inputJSON: `{"title":"The title", "content": "the content", "author_id": 1}`,
statusCode: 500,
tokenGiven: tokenString,
errorMessage: "Title Already Taken",
},
{
// When no token is passed
inputJSON: `{"title":"When no token is passed", "content": "the content", "author_id": 1}`,
statusCode: 401,
tokenGiven: "",
errorMessage: "Unauthorized",
},
{
// When incorrect token is passed
inputJSON: `{"title":"When incorrect token is passed", "content": "the content", "author_id": 1}`,
statusCode: 401,
tokenGiven: "This is an incorrect token",
errorMessage: "Unauthorized",
},
{
inputJSON: `{"title": "", "content": "The content", "author_id": 1}`,
statusCode: 422,
tokenGiven: tokenString,
errorMessage: "Required Title",
},
{
inputJSON: `{"title": "This is a title", "content": "", "author_id": 1}`,
statusCode: 422,
tokenGiven: tokenString,
errorMessage: "Required Content",
},
{
inputJSON: `{"title": "This is an awesome title", "content": "the content"}`,
statusCode: 422,
tokenGiven: tokenString,
errorMessage: "Required Author",
},
{
// When user 2 uses user 1 token
inputJSON: `{"title": "This is an awesome title", "content": "the content", "author_id": 2}`,
statusCode: 401,
tokenGiven: tokenString,
errorMessage: "Unauthorized",
},
}
for _, v := range samples {
req, err := http.NewRequest("POST", "/posts", bytes.NewBufferString(v.inputJSON))
if err != nil {
t.Errorf("this is the error: %v\n", err)
}
rr := httptest.NewRecorder()
handler := http.HandlerFunc(server.CreatePost)
req.Header.Set("Authorization", v.tokenGiven)
handler.ServeHTTP(rr, req)
responseMap := make(map[string]interface{})
err = json.Unmarshal([]byte(rr.Body.String()), &responseMap)
if err != nil {
fmt.Printf("Cannot convert to json: %v", err)
}
assert.Equal(t, rr.Code, v.statusCode)
if v.statusCode == 201 {
assert.Equal(t, responseMap["title"], v.title)
assert.Equal(t, responseMap["content"], v.content)
assert.Equal(t, responseMap["author_id"], float64(v.author_id)) //just for both ids to have the same type
}
if v.statusCode == 401 || v.statusCode == 422 || v.statusCode == 500 && v.errorMessage != "" {
assert.Equal(t, responseMap["error"], v.errorMessage)
}
}
}
func TestGetPosts(t *testing.T) {
err := refreshUserAndPostTable()
if err != nil {
log.Fatal(err)
}
_, _, err = seedUsersAndPosts()
if err != nil {
log.Fatal(err)
}
req, err := http.NewRequest("GET", "/posts", nil)
if err != nil {
t.Errorf("this is the error: %v\n", err)
}
rr := httptest.NewRecorder()
handler := http.HandlerFunc(server.GetPosts)
handler.ServeHTTP(rr, req)
var posts []models.Post
err = json.Unmarshal([]byte(rr.Body.String()), &posts)
assert.Equal(t, rr.Code, http.StatusOK)
assert.Equal(t, len(posts), 2)
}
func TestGetPostByID(t *testing.T) {
err := refreshUserAndPostTable()
if err != nil {
log.Fatal(err)
}
post, err := seedOneUserAndOnePost()
if err != nil {
log.Fatal(err)
}
postSample := []struct {
id string
statusCode int
title string
content string
author_id uint32
errorMessage string
}{
{
id: strconv.Itoa(int(post.ID)),
statusCode: 200,
title: post.Title,
content: post.Content,
author_id: post.AuthorID,
},
{
id: "unknwon",
statusCode: 400,
},
}
for _, v := range postSample {
req, err := http.NewRequest("GET", "/posts", nil)
if err != nil {
t.Errorf("this is the error: %v\n", err)
}
req = mux.SetURLVars(req, map[string]string{"id": v.id})
rr := httptest.NewRecorder()
handler := http.HandlerFunc(server.GetPost)
handler.ServeHTTP(rr, req)
responseMap := make(map[string]interface{})
err = json.Unmarshal([]byte(rr.Body.String()), &responseMap)
if err != nil {
log.Fatalf("Cannot convert to json: %v", err)
}
assert.Equal(t, rr.Code, v.statusCode)
if v.statusCode == 200 {
assert.Equal(t, post.Title, responseMap["title"])
assert.Equal(t, post.Content, responseMap["content"])
assert.Equal(t, float64(post.AuthorID), responseMap["author_id"]) //the response author id is float64
}
}
}
func TestUpdatePost(t *testing.T) {
var PostUserEmail, PostUserPassword string
var AuthPostAuthorID uint32
var AuthPostID uint64
err := refreshUserAndPostTable()
if err != nil {
log.Fatal(err)
}
users, posts, err := seedUsersAndPosts()
if err != nil {
log.Fatal(err)
}
// Get only the first user
for _, user := range users {
if user.ID == 2 {
continue
}
PostUserEmail = user.Email
PostUserPassword = "password" //Note the password in the database is already hashed, we want unhashed
}
//Login the user and get the authentication token
token, err := server.SignIn(PostUserEmail, PostUserPassword)
if err != nil {
log.Fatalf("cannot login: %v\n", err)
}
tokenString := fmt.Sprintf("Bearer %v", token)
// Get only the first post
for _, post := range posts {
if post.ID == 2 {
continue
}
AuthPostID = post.ID
AuthPostAuthorID = post.AuthorID
}
// fmt.Printf("this is the auth post: %v\n", AuthPostID)
samples := []struct {
id string
updateJSON string
statusCode int
title string
content string
author_id uint32
tokenGiven string
errorMessage string
}{
{
// Convert int64 to int first before converting to string
id: strconv.Itoa(int(AuthPostID)),
updateJSON: `{"title":"The updated post", "content": "This is the updated content", "author_id": 1}`,
statusCode: 200,
title: "The updated post",
content: "This is the updated content",
author_id: AuthPostAuthorID,
tokenGiven: tokenString,
errorMessage: "",
},
{
// When no token is provided
id: strconv.Itoa(int(AuthPostID)),
updateJSON: `{"title":"This is still another title", "content": "This is the updated content", "author_id": 1}`,
tokenGiven: "",
statusCode: 401,
errorMessage: "Unauthorized",
},
{
// When incorrect token is provided
id: strconv.Itoa(int(AuthPostID)),
updateJSON: `{"title":"This is still another title", "content": "This is the updated content", "author_id": 1}`,
tokenGiven: "this is an incorrect token",
statusCode: 401,
errorMessage: "Unauthorized",
},
{
//Note: "Title 2" belongs to post 2, and title must be unique
id: strconv.Itoa(int(AuthPostID)),
updateJSON: `{"title":"Title 2", "content": "This is the updated content", "author_id": 1}`,
statusCode: 500,
tokenGiven: tokenString,
errorMessage: "Title Already Taken",
},
{
id: strconv.Itoa(int(AuthPostID)),
updateJSON: `{"title":"", "content": "This is the updated content", "author_id": 1}`,
statusCode: 422,
tokenGiven: tokenString,
errorMessage: "Required Title",
},
{
id: strconv.Itoa(int(AuthPostID)),
updateJSON: `{"title":"Awesome title", "content": "", "author_id": 1}`,
statusCode: 422,
tokenGiven: tokenString,
errorMessage: "Required Content",
},
{
id: strconv.Itoa(int(AuthPostID)),
updateJSON: `{"title":"This is another title", "content": "This is the updated content"}`,
statusCode: 401,
tokenGiven: tokenString,
errorMessage: "Unauthorized",
},
{
id: "unknwon",
statusCode: 400,
},
{
id: strconv.Itoa(int(AuthPostID)),
updateJSON: `{"title":"This is still another title", "content": "This is the updated content", "author_id": 2}`,
tokenGiven: tokenString,
statusCode: 401,
errorMessage: "Unauthorized",
},
}
for _, v := range samples {
req, err := http.NewRequest("POST", "/posts", bytes.NewBufferString(v.updateJSON))
if err != nil {
t.Errorf("this is the error: %v\n", err)
}
req = mux.SetURLVars(req, map[string]string{"id": v.id})
rr := httptest.NewRecorder()
handler := http.HandlerFunc(server.UpdatePost)
req.Header.Set("Authorization", v.tokenGiven)
handler.ServeHTTP(rr, req)
responseMap := make(map[string]interface{})
err = json.Unmarshal([]byte(rr.Body.String()), &responseMap)
if err != nil {
t.Errorf("Cannot convert to json: %v", err)
}
assert.Equal(t, rr.Code, v.statusCode)
if v.statusCode == 200 {
assert.Equal(t, responseMap["title"], v.title)
assert.Equal(t, responseMap["content"], v.content)
assert.Equal(t, responseMap["author_id"], float64(v.author_id)) //just to match the type of the json we receive thats why we used float64
}
if v.statusCode == 401 || v.statusCode == 422 || v.statusCode == 500 && v.errorMessage != "" {
assert.Equal(t, responseMap["error"], v.errorMessage)
}
}
}
func TestDeletePost(t *testing.T) {
var PostUserEmail, PostUserPassword string
var PostUserID uint32
var AuthPostID uint64
err := refreshUserAndPostTable()
if err != nil {
log.Fatal(err)
}
users, posts, err := seedUsersAndPosts()
if err != nil {
log.Fatal(err)
}
//Let's get only the Second user
for _, user := range users {
if user.ID == 1 {
continue
}
PostUserEmail = user.Email
PostUserPassword = "password" //Note the password in the database is already hashed, we want unhashed
}
//Login the user and get the authentication token
token, err := server.SignIn(PostUserEmail, PostUserPassword)
if err != nil {
log.Fatalf("cannot login: %v\n", err)
}
tokenString := fmt.Sprintf("Bearer %v", token)
// Get only the second post
for _, post := range posts {
if post.ID == 1 {
continue
}
AuthPostID = post.ID
PostUserID = post.AuthorID
}
postSample := []struct {
id string
author_id uint32
tokenGiven string
statusCode int
errorMessage string
}{
{
// Convert int64 to int first before converting to string
id: strconv.Itoa(int(AuthPostID)),
author_id: PostUserID,
tokenGiven: tokenString,
statusCode: 204,
errorMessage: "",
},
{
// When empty token is passed
id: strconv.Itoa(int(AuthPostID)),
author_id: PostUserID,
tokenGiven: "",
statusCode: 401,
errorMessage: "Unauthorized",
},
{
// When incorrect token is passed
id: strconv.Itoa(int(AuthPostID)),
author_id: PostUserID,
tokenGiven: "This is an incorrect token",
statusCode: 401,
errorMessage: "Unauthorized",
},
{
id: "unknwon",
tokenGiven: tokenString,
statusCode: 400,
},
{
id: strconv.Itoa(int(1)),
author_id: 1,
statusCode: 401,
errorMessage: "Unauthorized",
},
}
for _, v := range postSample {
req, _ := http.NewRequest("GET", "/posts", nil)
req = mux.SetURLVars(req, map[string]string{"id": v.id})
rr := httptest.NewRecorder()
handler := http.HandlerFunc(server.DeletePost)
req.Header.Set("Authorization", v.tokenGiven)
handler.ServeHTTP(rr, req)
assert.Equal(t, rr.Code, v.statusCode)
if v.statusCode == 401 && v.errorMessage != "" {
responseMap := make(map[string]interface{})
err = json.Unmarshal([]byte(rr.Body.String()), &responseMap)
if err != nil {
t.Errorf("Cannot convert to json: %v", err)
}
assert.Equal(t, responseMap["error"], v.errorMessage)
}
}
}