-
Notifications
You must be signed in to change notification settings - Fork 4
/
sreq_test.go
237 lines (220 loc) · 4.85 KB
/
sreq_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
package sreq_test
import (
"net/http"
"testing"
"github.com/winterssy/sreq"
)
func TestGet(t *testing.T) {
resp := sreq.Get("http://httpbin.org/get").Send().EnsureStatusOk()
if resp.Err != nil {
t.Error(resp.Err)
}
}
func TestHead(t *testing.T) {
resp := sreq.Head("http://httpbin.org").Send().EnsureStatusOk()
if resp.Err != nil {
t.Error(resp.Err)
}
}
func TestPost(t *testing.T) {
resp := sreq.Post("http://httpbin.org/post").Send().EnsureStatusOk()
if resp.Err != nil {
t.Error(resp.Err)
}
}
func TestPut(t *testing.T) {
resp := sreq.Put("http://httpbin.org/put").Send().EnsureStatusOk()
if resp.Err != nil {
t.Error(resp.Err)
}
}
func TestPatch(t *testing.T) {
resp := sreq.Patch("http://httpbin.org/patch").Send().EnsureStatusOk()
if resp.Err != nil {
t.Error(resp.Err)
}
}
func TestDelete(t *testing.T) {
resp := sreq.Delete("http://httpbin.org/delete").Send().EnsureStatusOk()
if resp.Err != nil {
t.Error(resp.Err)
}
}
func TestOptions(t *testing.T) {
resp := sreq.Options("http://httpbin.org").Send().EnsureStatusOk()
if resp.Err != nil {
t.Error(resp.Err)
}
}
func TestParams(t *testing.T) {
var data struct {
Args map[string]string `json:"args"`
}
err := sreq.Get("http://httpbin.org/get").
Params(
sreq.Value{
"key1": "value1",
"key2": "value2",
}).
Send().
EnsureStatusOk().
JSON(&data)
if err != nil {
t.Error(err)
}
if data.Args["key1"] != "value1" || data.Args["key2"] != "value2" {
t.Error("Set params failed")
}
}
func TestForm(t *testing.T) {
var data struct {
Form map[string]string `json:"form"`
}
err := sreq.Post("http://httpbin.org/post").
Form(
sreq.Value{
"key1": "value1",
"key2": "value2",
}).
Send().
EnsureStatusOk().
JSON(&data)
if err != nil {
t.Error(err)
}
if data.Form["key1"] != "value1" || data.Form["key2"] != "value2" {
t.Error("Send form failed")
}
}
func TestJSON(t *testing.T) {
var data struct {
JSON struct {
Msg string `json:"msg"`
Num int `json:"num"`
} `json:"json"`
}
err := sreq.Post("http://httpbin.org/post").
JSON(
sreq.Data{
"msg": "hello world",
"num": 2019,
}).
Send().
EnsureStatusOk().
JSON(&data)
if err != nil {
t.Error(err)
}
if data.JSON.Msg != "hello world" || data.JSON.Num != 2019 {
t.Error("Send json failed")
}
}
func TestHeaders(t *testing.T) {
var data struct {
Headers map[string]string `json:"headers"`
}
err := sreq.Get("http://httpbin.org/get").
Headers(
sreq.Value{
"Origin": "http://httpbin.org",
"Referer": "http://httpbin.org",
}).
Send().
EnsureStatusOk().
JSON(&data)
if err != nil {
t.Error(err)
}
if data.Headers["Origin"] != "http://httpbin.org" || data.Headers["Referer"] != "http://httpbin.org" {
t.Error("Set headers failed")
}
}
func TestCookies(t *testing.T) {
var data struct {
Cookies map[string]string `json:"cookies"`
}
err := sreq.Get("http://httpbin.org/cookies/set").
Cookies(
&http.Cookie{
Name: "name1",
Value: "value1",
},
&http.Cookie{
Name: "name2",
Value: "value2",
},
).
Send().
EnsureStatusOk().
JSON(&data)
if err != nil {
t.Error(err)
}
if data.Cookies["name1"] != "value1" || data.Cookies["name2"] != "value2" {
t.Error("Set cookies failed")
}
}
// TODO: This test case usually goes wrong while running "go test -v ." for a batch of tests.
// It may work with "go test -v -p=1 .", need to find out the reason.
// func TestFiles(t *testing.T) {
// var data struct {
// Files map[string]string `json:"files"`
// }
// err := grequests.New().Post("http://httpbin.org/post").
// Files(
// &grequests.File{
// FieldName: "testfile1",
// FileName: "testfile1.txt",
// FilePath: "./testdata/testfile1.txt",
// },
// &grequests.File{
// FieldName: "testfile2",
// FileName: "testfile2.txt",
// FilePath: "./testdata/testfile2.txt",
// },
// ).
// Send().
// EnsureStatusOk().
// JSON(&data)
// if err != nil {
// t.Error(err)
// }
//
// if data.Files["testfile1"] == "" || data.Files["testfile2"] == "" {
// t.Error("Send files failed")
// }
// }
func TestBasicAuth(t *testing.T) {
var data struct {
Authenticated bool `json:"authenticated"`
User string `json:"user"`
}
err := sreq.Get("http://httpbin.org/basic-auth/admin/pass").
BasicAuth("admin", "pass").
Send().
EnsureStatusOk().
JSON(&data)
if err != nil {
t.Error(err)
}
if !data.Authenticated || data.User != "admin" {
t.Error("Set basic authentication failed")
}
}
func TestBearerToken(t *testing.T) {
var data struct {
Authenticated bool `json:"authenticated"`
Token string `json:"token"`
}
err := sreq.Get("http://httpbin.org/bearer").
BearerToken("sreq").
Send().
EnsureStatusOk().
JSON(&data)
if err != nil {
t.Error(err)
}
if !data.Authenticated || data.Token != "sreq" {
t.Error("Set bearer token failed")
}
}