-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbody_test.go
71 lines (62 loc) · 1.19 KB
/
body_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
package ginTestContext
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/gin-gonic/gin"
"github.com/go-faker/faker/v4"
"github.com/stretchr/testify/require"
)
func Test_body_SetBody(t *testing.T) {
b := struct {
A string
B int
C float64
}{}
err := faker.FakeData(&b)
require.NoError(t, err)
mock := body{}
mock.SetBody(b)
require.Equal(t, b, mock.Body)
}
func Test_body_writeBodyToContext(t *testing.T) {
testCases := []struct {
name string
body interface{}
expectedResult error
}{
{
name: "success",
body: struct {
A string
B int
C float64
}{
A: "a",
B: 1,
C: 1.23,
},
expectedResult: nil,
},
{
name: "empty_body",
body: nil,
expectedResult: nil,
},
{
name: "json_parsing_error",
body: make(chan int),
expectedResult: ErrUnsupportedBodyType,
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
mock := body{}
mock.SetBody(tc.body)
c, _ := gin.CreateTestContext(httptest.NewRecorder())
c.Request = &http.Request{}
err := mock.writeBodyToContext(c)
require.Equal(t, tc.expectedResult, err)
})
}
}