-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrequest.go
53 lines (45 loc) · 1008 Bytes
/
request.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
package htest
import (
"github.com/stretchr/testify/assert"
"net/http"
"net/http/httptest"
"testing"
)
type (
Request struct {
*http.Request
Handler http.Handler
*testing.T
}
)
const (
MockNilError = "Request.Handler cannot be nil, had you called Client.To or Client.ToFunc?"
)
func (r *Request) SetHeader(key, value string) *Request {
r.Header.Set(key, value)
return r
}
func (r *Request) SetHeaders(headers map[string]string) *Request {
var key, value string
for key, value = range headers {
r.Header.Set(key, value)
}
return r
}
func (r *Request) Test() *Response {
if r.Handler == nil {
panic(MockNilError)
}
recorder := httptest.NewRecorder()
r.Handler.ServeHTTP(recorder, r.Request)
return NewResponse(recorder.Result(), r.T)
}
func (r *Request) Send() *Response {
resp, err := (&http.Client{}).Do(r.Request)
assert.Nil(r.T, err)
return NewResponse(resp, r.T)
}
func (r *Request) AddCookie(cookie *http.Cookie) *Request {
r.Request.AddCookie(cookie)
return r
}