-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
127 lines (114 loc) · 3.81 KB
/
main_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
package main
import (
"ALURA/jcqueiroz3/api-golang-gin/controllers"
"ALURA/jcqueiroz3/api-golang-gin/database"
"ALURA/jcqueiroz3/api-golang-gin/models"
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
"strconv"
"testing"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
)
var ID int
func SetupTestRoutes() *gin.Engine {
gin.SetMode(gin.ReleaseMode)
routes := gin.Default()
return routes
}
func CreateStudentMock() {
student := models.Student{Name: "Name of student test", CPF: "12345678901", RG: "123456789"}
database.DB.Create(&student)
ID = int(student.ID)
}
func DeleteStudentMock() {
var student models.Student
database.DB.Delete(&student, ID)
}
func TestVerifyStatusCodeInWelcomeWithParameter(t *testing.T) {
r := SetupTestRoutes()
r.GET("/:name", controllers.Welcome)
req, _ := http.NewRequest("GET", "/jean", nil)
answer := httptest.NewRecorder()
r.ServeHTTP(answer, req)
assert.Equal(t, http.StatusOK, answer.Code, "should be the same")
mockOfTheAnswer := `{"API say:": "Hellojean, all right?"}`
answerBody, _ := ioutil.ReadAll(answer.Body)
assert.Equal(t, mockOfTheAnswer, string(answerBody))
fmt.Println(answerBody)
fmt.Println(mockOfTheAnswer)
}
func TestListAllStudentsHandler(t *testing.T) {
database.ConnectWithDatabase()
CreateStudentMock()
defer DeleteStudentMock()
r := SetupTestRoutes()
r.GET("/students", controllers.ShowAllStudents)
req, _ := http.NewRequest("GET", "/students", nil)
answer := httptest.NewRecorder()
r.ServeHTTP(answer, req)
assert.Equal(t, http.StatusOK, answer.Code)
fmt.Println(answer.Body)
fmt.Println(answer.Body)
}
func TestSearchStudentByCPFHandler(t *testing.T) {
database.ConnectWithDatabase()
CreateStudentMock()
defer DeleteStudentMock()
r := SetupTestRoutes()
r.GET("/students/cpf/:cpf", controllers.FindStudentByCPF)
req, _ := http.NewRequest("GET", "/students/cpf/12345678901", nil)
answer := httptest.NewRecorder()
r.ServeHTTP(answer, req)
assert.Equal(t, http.StatusOK, answer.Code)
}
func TestFindStudentByIdHandler(t *testing.T) {
database.ConnectWithDatabase()
CreateStudentMock()
defer DeleteStudentMock()
r := SetupTestRoutes()
r.GET("/students/:id", controllers.FindStudentByID)
pathSearch := "/students/" + strconv.Itoa(ID)
req, _ := http.NewRequest("GET", pathSearch, nil)
answer := httptest.NewRecorder()
r.ServeHTTP(answer, req)
var studentMock models.Student
json.Unmarshal(answer.Body.Bytes(), &studentMock)
assert.Equal(t, "Name of student test", studentMock.Name, "The names should be equals")
assert.Equal(t, "12345678901", studentMock.CPF)
assert.Equal(t, "123456789", studentMock.RG)
assert.Equal(t, http.StatusOK, answer.Code)
}
func TestDeleteStudentHandler(t *testing.T) {
database.ConnectWithDatabase()
CreateStudentMock()
r := SetupTestRoutes()
r.DELETE("/students/:id", controllers.DeleteStudent)
pathSearch := "/students/" + strconv.Itoa(ID)
req, _ := http.NewRequest("DELETE", pathSearch, nil)
answer := httptest.NewRecorder()
r.ServeHTTP(answer, req)
assert.Equal(t, http.StatusOK, answer.Code)
}
func TestEditOneStudentHandler(t *testing.T) {
database.ConnectWithDatabase()
CreateStudentMock()
defer DeleteStudentMock()
r := SetupTestRoutes()
r.PATCH("/students/:id", controllers.EditStudent)
student := models.Student{Name: "Name of student test", CPF: "47123456789", RG: "123456700"}
valueJson, _ := json.Marshal(student)
pathForEdit := "/students/" + strconv.Itoa(ID)
req, _ := http.NewRequest("PATCH", pathForEdit, bytes.NewBuffer(valueJson))
answer := httptest.NewRecorder()
r.ServeHTTP(answer, req)
var studentMockUpdated models.Student
json.Unmarshal(answer.Body.Bytes(), &studentMockUpdated)
assert.Equal(t, "47123456789", studentMockUpdated.CPF)
assert.Equal(t, "123456700", studentMockUpdated.RG)
assert.Equal(t, "Name of student test", studentMockUpdated.Name)
}