-
Notifications
You must be signed in to change notification settings - Fork 27
/
frisby.go
301 lines (261 loc) · 6.34 KB
/
frisby.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
package frisby
import (
"errors"
"fmt"
"net/http"
"os"
"path/filepath"
"time"
"github.com/mozillazg/request"
)
var Global global_data
const defaultFileKey = "file"
type Frisby struct {
Name string
Url string
Method string
Req *request.Request
Resp *request.Response
Errs []error
ExecutionTime float64
}
// Creates a new Frisby object with the given name.
//
// The given name will be used if you call PrintReport()
func Create(name string) *Frisby {
F := new(Frisby)
F.Name = name
F.Req = request.NewRequest(new(http.Client))
F.Errs = make([]error, 0)
// copy in global settings
F.Req.BasicAuth = Global.Req.BasicAuth
F.Req.Proxy = Global.Req.Proxy
F.SetHeaders(Global.Req.Headers)
F.SetCookies(Global.Req.Cookies)
F.SetDatas(Global.Req.Data)
F.SetParams(Global.Req.Params)
F.Req.Json = Global.Req.Json
F.Req.Files = append(F.Req.Files, Global.Req.Files...)
// initialize request
F.Req.Params = make(map[string]string)
return F
}
// Set the HTTP method to GET for the given URL
func (F *Frisby) Get(url string) *Frisby {
F.Method = "GET"
F.Url = url
return F
}
// Set the HTTP method to POST for the given URL
func (F *Frisby) Post(url string) *Frisby {
F.Method = "POST"
F.Url = url
return F
}
// Set the HTTP method to PUT for the given URL
func (F *Frisby) Put(url string) *Frisby {
F.Method = "PUT"
F.Url = url
return F
}
// Set the HTTP method to PATCH for the given URL
func (F *Frisby) Patch(url string) *Frisby {
F.Method = "PATCH"
F.Url = url
return F
}
// Set the HTTP method to DELETE for the given URL
func (F *Frisby) Delete(url string) *Frisby {
F.Method = "DELETE"
F.Url = url
return F
}
// Set the HTTP method to HEAD for the given URL
func (F *Frisby) Head(url string) *Frisby {
F.Method = "HEAD"
F.Url = url
return F
}
// Set the HTTP method to OPTIONS for the given URL
func (F *Frisby) Options(url string) *Frisby {
F.Method = "OPTIONS"
F.Url = url
return F
}
// Set BasicAuth values for the coming request
func (F *Frisby) BasicAuth(user, passwd string) *Frisby {
F.Req.BasicAuth = request.BasicAuth{user, passwd}
return F
}
// Set Proxy URL for the coming request
func (F *Frisby) SetProxy(url string) *Frisby {
F.Req.Proxy = url
return F
}
// Set a Header value for the coming request
func (F *Frisby) SetHeader(key, value string) *Frisby {
if F.Req.Headers == nil {
F.Req.Headers = make(map[string]string)
}
F.Req.Headers[key] = value
return F
}
// Set several Headers for the coming request
func (F *Frisby) SetHeaders(headers map[string]string) *Frisby {
if F.Req.Headers == nil {
F.Req.Headers = make(map[string]string)
}
for key, value := range headers {
F.Req.Headers[key] = value
}
return F
}
// Set a Cookie value for the coming request
func (F *Frisby) SetCookie(key, value string) *Frisby {
if F.Req.Cookies == nil {
F.Req.Cookies = make(map[string]string)
}
F.Req.Cookies[key] = value
return F
}
// Set several Cookie values for the coming request
func (F *Frisby) SetCookies(cookies map[string]string) *Frisby {
if F.Req.Cookies == nil {
F.Req.Cookies = make(map[string]string)
}
for key, value := range cookies {
F.Req.Cookies[key] = value
}
return F
}
// Set a Form data for the coming request
func (F *Frisby) SetData(key, value string) *Frisby {
if F.Req.Data == nil {
F.Req.Data = make(map[string]string)
}
F.Req.Data[key] = value
return F
}
// Set several Form data for the coming request
func (F *Frisby) SetDatas(datas map[string]string) *Frisby {
if F.Req.Data == nil {
F.Req.Data = make(map[string]string)
}
for key, value := range datas {
F.Req.Data[key] = value
}
return F
}
// Set a url Param for the coming request
func (F *Frisby) SetParam(key, value string) *Frisby {
if F.Req.Params == nil {
F.Req.Params = make(map[string]string)
}
F.Req.Params[key] = value
return F
}
// Set several url Param for the coming request
func (F *Frisby) SetParams(params map[string]string) *Frisby {
if F.Req.Params == nil {
F.Req.Params = make(map[string]string)
}
for key, value := range params {
F.Req.Params[key] = value
}
return F
}
// Set the JSON body for the coming request
func (F *Frisby) SetJson(json interface{}) *Frisby {
F.Req.Json = json
return F
}
// Add a file to the Form data for the coming request
func (F *Frisby) AddFile(filename string) *Frisby {
file, err := os.Open(filename)
if err != nil {
F.Errs = append(F.Errs, err)
} else {
fileField := request.FileField{
FieldName: defaultFileKey,
FileName: filepath.Base(filename),
File: file}
F.Req.Files = append(F.Req.Files, fileField)
}
return F
}
// Add a file to the Form data for the coming request
func (F *Frisby) AddFileByKey(key, filename string) *Frisby {
file, err := os.Open(filename)
if err != nil {
F.Errs = append(F.Errs, err)
} else {
if len(key) == 0 {
key = defaultFileKey
}
fileField := request.FileField{
FieldName: key,
FileName: filepath.Base(filename),
File: file}
F.Req.Files = append(F.Req.Files, fileField)
}
return F
}
// Send the actual request to the URL
func (F *Frisby) Send() *Frisby {
Global.NumRequest++
if Global.PrintProgressName {
fmt.Println(F.Name)
} else if Global.PrintProgressDot {
fmt.Printf("")
}
start := time.Now()
var err error
switch F.Method {
case "GET":
F.Resp, err = F.Req.Get(F.Url)
case "POST":
F.Resp, err = F.Req.Post(F.Url)
case "PUT":
F.Resp, err = F.Req.Put(F.Url)
case "PATCH":
F.Resp, err = F.Req.Patch(F.Url)
case "DELETE":
F.Resp, err = F.Req.Delete(F.Url)
case "HEAD":
F.Resp, err = F.Req.Head(F.Url)
case "OPTIONS":
F.Resp, err = F.Req.Options(F.Url)
}
F.ExecutionTime = time.Since(start).Seconds()
if err != nil {
F.Errs = append(F.Errs, err)
}
return F
}
// Manually add an error, if you need to
func (F *Frisby) AddError(err_str string) *Frisby {
err := errors.New(err_str)
F.Errs = append(F.Errs, err)
Global.AddError(F.Name, err_str)
return F
}
// Get the most recent error for the Frisby object
//
// This function should be called last
func (F *Frisby) Error() error {
if len(F.Errs) > 0 {
return F.Errs[len(F.Errs)-1]
}
return nil
}
// Get all errors for the Frisby object
//
// This function should be called last
func (F *Frisby) Errors() []error {
return F.Errs
}
// Pause your testrun for a defined amount of seconds
func (F *Frisby) PauseTest(t time.Duration) *Frisby {
time.Sleep(t * time.Second)
return nil
}