-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandlers_test.go
665 lines (459 loc) · 15.9 KB
/
handlers_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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
package main
import (
"bytes"
"context"
"database/sql"
"encoding/json"
"errors"
"fmt"
"net/http"
"net/http/httptest"
"os"
"testing"
"github.com/pressly/goose/v3"
"github.com/redis/go-redis/v9"
"golang.org/x/crypto/bcrypt"
"url-short/internal/database"
)
var (
userOne = []byte(`{"email": "[email protected]", "password": "test"}`)
userOneUpdatedPassword = []byte(`{"email": "[email protected]", "password":"new-password"}`)
userOneBadPassword = []byte(`{"email": "[email protected]", "password": "testerrrrr"}`)
userBadInput = []byte(`{"gmail":"[email protected]", "auth": "test", "extra_data": "data"}`)
userBadEmail = []byte(`{"email": "test1mail.com", "password": "test"}`)
longUrl = []byte(`{"long_url":"https://www.google.com"}`)
)
func resetDB(db *sql.DB) error {
provider, err := goose.NewProvider(
goose.DialectPostgres,
db,
os.DirFS("./sql/schema/"),
)
if err != nil {
return errors.New("can not create goose provider")
}
_, err = provider.DownTo(context.Background(), 0)
if err != nil {
return errors.New("can not reset database")
}
_, err = provider.Up(context.Background())
if err != nil {
return errors.New("could not run migrations")
}
return nil
}
func setupUserOne(apiCfg *apiConfig) (APIUsersResponse, error) {
request, err := http.NewRequest(http.MethodPost, "/api/v1/users", bytes.NewBuffer(userOne))
if err != nil {
return APIUsersResponse{}, err
}
request.Header.Set("Content-Type", "application/json")
response := httptest.NewRecorder()
apiCfg.postAPIUsers(response, request)
got := APIUsersResponse{}
err = json.NewDecoder(response.Body).Decode(&got)
if err != nil {
return APIUsersResponse{}, err
}
return got, nil
}
func loginUserOne(apiCfg *apiConfig) (APIUsersResponse, error) {
loginRequest, _ := http.NewRequest(http.MethodPost, "/api/v1/login", bytes.NewBuffer(userOne))
loginRequest.Header.Set("Content-Type", "application/json")
loginResponse := httptest.NewRecorder()
apiCfg.postAPILogin(loginResponse, loginRequest)
loginGot := APIUsersResponse{}
err := json.NewDecoder(loginResponse.Body).Decode(&loginGot)
if err != nil {
return APIUsersResponse{}, err
}
return loginGot, nil
}
func TestHealthEndpoint(t *testing.T) {
t.Run("test healthz endpoint", func(t *testing.T) {
request, _ := http.NewRequest(http.MethodGet, "/api/v1/healthz", nil)
response := httptest.NewRecorder()
apiCfg := apiConfig{}
apiCfg.healthz(response, request)
got := HealthResponse{}
err := json.NewDecoder(response.Body).Decode(&got)
if err != nil {
t.Errorf("unable to parse response %q into %q", response.Body, got)
}
if got.Status != "ok" {
t.Errorf("status field must be okay on health response got %q wanted %q", got.Status, "ok")
}
if response.Result().StatusCode != http.StatusOK {
t.Error("endpoint must return 200")
}
})
}
func TestPostUser(t *testing.T) {
dbURL := os.Getenv("PG_CONN")
db, err := sql.Open("postgres", dbURL)
if err != nil {
t.Errorf("can not open database connection")
}
defer db.Close()
err = resetDB(db)
if err != nil {
t.Errorf("could not resetDB %q", err)
}
dbQueries := database.New(db)
apiCfg := apiConfig{
DB: dbQueries,
}
t.Run("test user creation passes with correct parameters", func(t *testing.T) {
userOne, err := setupUserOne(&apiCfg)
if err != nil {
t.Errorf("unable to setup user one due to err %q", err)
}
if userOne.Email != "[email protected]" {
t.Errorf("unexpected email in response, got %q, wanted %q", userOne.Email, "[email protected]")
}
})
t.Run("test user creation with bad parameters", func(t *testing.T) {
request, _ := http.NewRequest(http.MethodPost, "/api/v1/users", bytes.NewBuffer(userBadInput))
request.Header.Set("Content-Type", "application/json")
response := httptest.NewRecorder()
apiCfg.postAPIUsers(response, request)
got := errorResponse{}
err := json.NewDecoder(response.Body).Decode(&got)
if err != nil {
t.Errorf("unable to parse response %q into %q", response.Body, got)
}
want := "incorrect parameters for user creation"
if got.Error != want {
t.Errorf("incorrect error when invalid json used got %q wanted %q", got.Error, want)
}
})
t.Run("test user creation with no body", func(t *testing.T) {
request, _ := http.NewRequest(http.MethodPost, "/api/v1/users", bytes.NewBuffer([]byte(``)))
request.Header.Set("Content-Type", "application/json")
response := httptest.NewRecorder()
apiCfg.postAPIUsers(response, request)
got := errorResponse{}
err := json.NewDecoder(response.Body).Decode(&got)
if err != nil {
t.Errorf("unable to parse response %q into %q", response.Body, got)
}
want := "could not parse request"
if got.Error != want {
t.Errorf("incorrect error when invalid json used got %q wanted %q", got.Error, want)
}
})
t.Run("test user creation with bad email address", func(t *testing.T) {
request, _ := http.NewRequest(http.MethodPost, "/api/v1/users", bytes.NewBuffer(userBadEmail))
request.Header.Set("Content-Type", "application/json")
response := httptest.NewRecorder()
apiCfg.postAPIUsers(response, request)
got := errorResponse{}
err := json.NewDecoder(response.Body).Decode(&got)
if err != nil {
t.Errorf("unable to parse response %q into %q", response.Body, got)
}
want := "invalid email address"
if got.Error != want {
t.Errorf("incorrect error when passing invalid email address %q wanted %q", got.Error, want)
}
})
t.Run("test a duplicate user can not be created", func(t *testing.T) {
request, _ := http.NewRequest(http.MethodPost, "/api/v1/users", bytes.NewBuffer(userOne))
request.Header.Set("Content-Type", "application/json")
response := httptest.NewRecorder()
apiCfg.postAPIUsers(response, request)
got := errorResponse{}
err := json.NewDecoder(response.Body).Decode(&got)
if err != nil {
t.Errorf("unable to parse response %q into %q", response.Body, got)
}
want := "could not create user in database"
if got.Error != want {
t.Errorf("expected duplicate user to fail got %q wanted %q", got.Error, want)
}
})
}
func TestPostLogin(t *testing.T) {
dbURL := os.Getenv("PG_CONN")
db, err := sql.Open("postgres", dbURL)
if err != nil {
t.Errorf("can not open database connection")
}
defer db.Close()
err = resetDB(db)
if err != nil {
t.Errorf("could not reset DB %q", err)
}
dbQueries := database.New(db)
apiCfg := apiConfig{
DB: dbQueries,
}
_, err = setupUserOne(&apiCfg)
if err != nil {
t.Errorf("can not set up user for test case with err %q", err)
}
t.Run("test user login fails with incorrect payload", func(t *testing.T) {
request, _ := http.NewRequest(http.MethodPost, "/api/v1/login", bytes.NewBuffer(userBadInput))
request.Header.Set("Content-Type", "application/json")
response := httptest.NewRecorder()
apiCfg.postAPILogin(response, request)
got := errorResponse{}
err := json.NewDecoder(response.Body).Decode(&got)
if err != nil {
t.Errorf("could not parse response %q", err)
}
want := "invalid parameters for user login"
if got.Error != want {
t.Errorf("incorrect error when passing invalid login parameters got %q want %q", got.Error, want)
}
})
t.Run("test user login fails when user can not be found", func(t *testing.T) {
request, _ := http.NewRequest(http.MethodPost, "/api/v1/login", bytes.NewBuffer(userBadEmail))
request.Header.Set("Content-Type", "application/json")
response := httptest.NewRecorder()
apiCfg.postAPILogin(response, request)
got := errorResponse{}
err := json.NewDecoder(response.Body).Decode(&got)
if err != nil {
t.Errorf("could not parse response %q", err)
}
want := "could not find user"
if got.Error != want {
t.Errorf("incorrect error when non existent user attempts to login got %q want %q", got.Error, want)
}
})
t.Run("test user login fails with invalid password", func(t *testing.T) {
request, _ := http.NewRequest(http.MethodPost, "/api/v1/login", bytes.NewBuffer(userOneBadPassword))
request.Header.Set("Content-Type", "application/json")
response := httptest.NewRecorder()
apiCfg.postAPILogin(response, request)
got := errorResponse{}
err := json.NewDecoder(response.Body).Decode(&got)
if err != nil {
t.Errorf("could not parse response %q", err)
}
want := "invalid password"
if got.Error != want {
t.Errorf("incorrect error when incorrect password is supplied got %q want %q", got.Error, want)
}
})
t.Run("test user is returned correct ID, Email, Token and a Refresh Token", func(t *testing.T) {
request, _ := http.NewRequest(http.MethodPost, "/api/v1/login", bytes.NewBuffer(userOne))
request.Header.Set("Content-Type", "application/json")
response := httptest.NewRecorder()
apiCfg.postAPILogin(response, request)
got := APIUsersResponse{}
err := json.NewDecoder(response.Body).Decode(&got)
if err != nil {
t.Errorf("could not parse response %q", err)
}
if got.ID != 1 || got.Email != "[email protected]" || got.Token == "" || got.RefreshToken == "" {
t.Errorf("user login does not return expected results got %q", got)
}
})
}
func TestRefreshEndpoint(t *testing.T) {
dbURL := os.Getenv("PG_CONN")
db, err := sql.Open("postgres", dbURL)
if err != nil {
t.Errorf("can not open database connection")
}
defer db.Close()
err = resetDB(db)
if err != nil {
t.Errorf("could not resetDB %q", err)
}
dbQueries := database.New(db)
apiCfg := apiConfig{
DB: dbQueries,
}
_, err = setupUserOne(&apiCfg)
if err != nil {
t.Errorf("can not set up user for test case with err %q", err)
}
userOne, err := loginUserOne(&apiCfg)
if err != nil {
t.Errorf("can not login user one for test case with err %q", err)
}
t.Run("test valid user can get a new access token based on a valid refresh token", func(t *testing.T) {
refreshRequest, _ := http.NewRequest(http.MethodPost, "/api/v1/refresh", http.NoBody)
buildHeader := fmt.Sprintf("Bearer %s", userOne.RefreshToken)
refreshRequest.Header.Set("Authorization", buildHeader)
refreshResponse := httptest.NewRecorder()
apiCfg.postAPIRefresh(refreshResponse, refreshRequest)
refreshGot := APIUsersRefreshResponse{}
err = json.NewDecoder(refreshResponse.Body).Decode(&refreshGot)
if err != nil {
t.Error("could not decode refreshResponse")
}
if refreshGot.Token == "" {
t.Errorf("no token was returned from refresh endpoint got %q", refreshGot.Token)
}
})
}
func TestPutUser(t *testing.T) {
dbURL := os.Getenv("PG_CONN")
db, err := sql.Open("postgres", dbURL)
if err != nil {
t.Errorf("can not open database connection")
}
defer db.Close()
err = resetDB(db)
if err != nil {
t.Errorf("could not resetDB %q", err)
}
dbQueries := database.New(db)
apiCfg := apiConfig{
DB: dbQueries,
}
_, err = setupUserOne(&apiCfg)
if err != nil {
t.Errorf("can not set up user for test case with err %q", err)
}
userOne, err := loginUserOne(&apiCfg)
if err != nil {
t.Errorf("can not login user one for test case with err %q", err)
}
t.Run("test user can be updated via the put user endpoint", func(t *testing.T) {
putUserRequest, _ := http.NewRequest(http.MethodPut, "/api/v1/users", bytes.NewBuffer(userOneUpdatedPassword))
buildHeader := fmt.Sprintf("Bearer %s", userOne.RefreshToken)
putUserRequest.Header.Set("Authorization", buildHeader)
putUserResponse := httptest.NewRecorder()
user, err := dbQueries.SelectUser(putUserRequest.Context(), userOne.Email)
if err != nil {
t.Error("could not find user that was expected to exist")
}
apiCfg.putAPIUsers(putUserResponse, putUserRequest, user)
gotPUTUser := APIUserResponseNoToken{}
err = json.NewDecoder(putUserResponse.Body).Decode(&gotPUTUser)
if err != nil {
t.Error("coult not parse response")
}
if gotPUTUser.Email == "" || gotPUTUser.ID == 0 {
t.Errorf("did not get expected email and ID on post user request")
}
userPostUpdate, err := dbQueries.SelectUser(putUserRequest.Context(), userOne.Email)
if err != nil {
t.Error("could not get user post password change")
}
err = bcrypt.CompareHashAndPassword([]byte(userPostUpdate.Password), []byte("new-password"))
if err != nil {
t.Errorf("hashed password did not match new password got error %q", err)
}
})
}
func TestPostLongURL(t *testing.T) {
dbURL := os.Getenv("PG_CONN")
db, err := sql.Open("postgres", dbURL)
if err != nil {
t.Errorf("can not open database connection")
}
defer db.Close()
err = resetDB(db)
if err != nil {
t.Errorf("could not resetDB %q", err)
}
dbQueries := database.New(db)
apiCfg := apiConfig{
DB: dbQueries,
}
_, err = setupUserOne(&apiCfg)
if err != nil {
t.Errorf("can not set up user for test case with err %q", err)
}
userOne, err := loginUserOne(&apiCfg)
if err != nil {
t.Errorf("can not login user one for test case with err %q", err)
}
t.Run("test user can create short URL based on long", func(t *testing.T) {
postLongURLRequest := httptest.NewRequest(http.MethodPost, "/api/v1/data/shorten", bytes.NewBuffer(longUrl))
buildHeader := fmt.Sprintf("Bearer %s", userOne.RefreshToken)
postLongURLRequest.Header.Set("Authorization", buildHeader)
response := httptest.NewRecorder()
user, err := dbQueries.SelectUser(postLongURLRequest.Context(), userOne.Email)
if err != nil {
t.Error("could not find user that was expected to exist")
}
// As there are no hashes in the database there is no chance of a collision
// the first hash we generate here and the hash in the call to the handler will
// always be the same so we compare the two
hash, err := hashCollisionDetection(apiCfg.DB, "www.google.com", 1, postLongURLRequest.Context())
if err != nil {
t.Errorf("could not generate hash err %q", err)
}
apiCfg.postLongURL(response, postLongURLRequest, user)
gotPutLongURL := LongURLResponse{}
err = json.NewDecoder(response.Body).Decode(&gotPutLongURL)
if err != nil {
t.Errorf("could not decode request err %q", err)
}
if gotPutLongURL.ShortURL == hash {
t.Errorf("hash did not match")
}
})
}
func TestGetShortURL(t *testing.T) {
dbURL := os.Getenv("PG_CONN")
db, err := sql.Open("postgres", dbURL)
rdbURL := os.Getenv("RDB_CONN")
if err != nil {
t.Errorf("can not open database connection")
}
defer db.Close()
err = resetDB(db)
if err != nil {
t.Errorf("could not resetDB %q", err)
}
dbQueries := database.New(db)
opt, err := redis.ParseURL(rdbURL)
if err != nil {
t.Errorf("oculd not parse reddis connection")
}
redisClient := redis.NewClient(opt)
defer redisClient.Close()
apiCfg := apiConfig{
DB: dbQueries,
RDB: redisClient,
}
_, err = setupUserOne(&apiCfg)
if err != nil {
t.Errorf("can not set up user for test case with err %q", err)
}
userOne, err := loginUserOne(&apiCfg)
if err != nil {
t.Errorf("can not login user one for test case with err %q", err)
}
postLongURLRequest := httptest.NewRequest(
http.MethodPost,
"/api/v1/data/shorten",
bytes.NewBuffer(longUrl),
)
buildHeader := fmt.Sprintf("Bearer %s", userOne.RefreshToken)
postLongURLRequest.Header.Set("Authorization", buildHeader)
postURLResponse := httptest.NewRecorder()
user, err := dbQueries.SelectUser(postLongURLRequest.Context(), userOne.Email)
if err != nil {
t.Error("could not find user that was expected to exist")
}
apiCfg.postLongURL(postURLResponse, postLongURLRequest, user)
gotPutLongURL := LongURLResponse{}
_ = json.NewDecoder(postURLResponse.Body).Decode(&gotPutLongURL)
t.Run("test short url redirects to a long URL", func(t *testing.T) {
getShortURLRequest := httptest.NewRequest(
http.MethodGet,
fmt.Sprintf("/api/v1/%s", gotPutLongURL.ShortURL),
http.NoBody,
)
getShortURLRequest.SetPathValue("shortUrl", gotPutLongURL.ShortURL)
getShortURLResponse := httptest.NewRecorder()
apiCfg.getShortURL(getShortURLResponse, getShortURLRequest)
redirectLocation := getShortURLResponse.Result().Header.Get("Location")
if redirectLocation != "https://www.google.com" {
t.Errorf(
"incorrect redirect to longURL got %q wanted %q",
redirectLocation,
"https://www.google.com",
)
}
})
}