-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathresponse_test.go
162 lines (130 loc) · 2.69 KB
/
response_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
package gohttpclient
import (
"bytes"
"context"
"io/ioutil"
"net/http"
"testing"
"github.com/stretchr/testify/suite"
)
type TestResponseSuite struct {
suite.Suite
ctx context.Context
}
func TestResponse(t *testing.T) {
suite.Run(t, new(TestResponseSuite))
}
func (s *TestResponseSuite) SetupSuite() {
s.ctx = context.Background()
}
func (s *TestResponseSuite) Test_Body_ShouldRunSuccesfully() {
// Arrange
body := []byte("test")
res := &http.Response{
Body: ioutil.NopCloser(bytes.NewBuffer(body)),
}
// Act
resp := Response{res, body}
// Assert
s.Equal(body, resp.Body())
}
func (s *TestResponseSuite) Test_Unmarshal_ShouldRunSuccesfully() {
// Arrange
body := []byte(`{"name":"test"}`)
res := &http.Response{}
// Act
resp := Response{res, body}
// Assert
var response map[string]interface{}
err := resp.Unmarshal(&response)
s.NoError(err)
s.Equal("test", response["name"])
}
func (s *TestResponseSuite) Test_Unmarshal_WhenBodyIsWrong_ShouldReturnError() {
// Arrange
resp := Response{
body: nil,
}
// Act
var response map[string]interface{}
err := resp.Unmarshal(&response)
// Assert
s.Errorf(err, "error reading")
}
func (s *TestResponseSuite) Test_Unmarshal_WhenUnMarshalReturnsError_ShouldReturnError() {
// Arrange
body := []byte(`{"name":"test"`)
res := &http.Response{}
// Act
resp := Response{res, body}
// Assert
var response map[string]interface{}
err := resp.Unmarshal(&response)
s.Error(err)
}
func (s *TestResponseSuite) Test_Status_ShouldRunSuccesfully() {
// Arrange
resp := Response{
res: &http.Response{
StatusCode: 200,
},
}
// Act
status := resp.Status()
// Assert
s.Equal(200, status)
}
func (s *TestResponseSuite) Test_Header_ShouldRunSuccesfully() {
// Arrange
resp := Response{
res: &http.Response{
Header: http.Header{
"Content-Type": []string{"application/json"},
},
},
}
// Act
header := resp.Headers()
// Assert
s.Equal("application/json", header["Content-Type"][0])
}
func (s *TestResponseSuite) Test_Cookies_ShouldRunSuccesfully() {
// Arrange
resp := Response{
res: &http.Response{
Header: http.Header{
"Set-Cookie": []string{"test=1"},
},
},
}
// Act
cookies := resp.Cookies()
// Assert
s.Equal("test=1", cookies[0].String())
}
func (s *TestResponseSuite) Test_Ok_ShouldRunSuccesfully() {
// Arrange
resp := Response{
res: &http.Response{
StatusCode: 200,
},
}
// Act
ok := resp.Ok()
// Assert
s.True(ok)
}
func (s *TestResponseSuite) Test_Get_ShouldRunSuccesfully() {
// Arrange
resp := Response{
res: &http.Response{
Header: http.Header{
"Content-Type": []string{"application/json"},
},
},
}
// Act
res := resp.Get()
// Assert
s.Equal(resp.res, res)
}