-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
request.go
71 lines (57 loc) · 1.46 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package handlertest
import (
"github.com/krzysztofmadejski/handlertest/assert"
"io"
"net/http"
"net/http/httptest"
"net/url"
"testing"
)
type Request struct {
t *testing.T
handler http.HandlerFunc
method string
url string
headers http.Header
body string
files map[string]map[string]io.Reader
fields url.Values
custom func(request *http.Request)
// TODO context
}
func Call(handler http.HandlerFunc) *Request {
return &Request{
//t: t, TODO
handler: handler,
headers: http.Header{},
}
}
func (r *Request) Assert(t *testing.T) *assert.Assert {
return &assert.Assert{R: r.createResponse(t), T: t}
}
func (r *Request) createResponse(t *testing.T) *http.Response {
// set method & url
req, err := http.NewRequest(r.method, r.url, r.getBodyReader(t))
if err != nil {
t.Fatal(err.Error())
}
// set headers
req.Header = r.headers
// TODO Populate the request's context with our test data.
//ctx := req.Context()
//ctx = context.WithValue(ctx, "app.auth.token", "abc123")
//ctx = context.WithValue(ctx, "app.user",
// &YourUser{ID: "qejqjq", Email: "[email protected]"})
//
//// Add our context to the request: note that WithContext returns a copy of
//// the request, which we must assign.
//req = req.WithContext(ctx)
if r.custom != nil {
r.custom(req)
}
// ============================
// =========== TESTS ==========
recorder := httptest.NewRecorder()
r.handler.ServeHTTP(recorder, req)
return recorder.Result()
}