This repository has been archived by the owner on Feb 24, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 576
/
wrappers_test.go
128 lines (98 loc) · 2.44 KB
/
wrappers_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
package buffalo
import (
"net/http"
"testing"
"github.com/gobuffalo/buffalo/render"
"github.com/gobuffalo/httptest"
"github.com/stretchr/testify/require"
)
func Test_WrapHandlerFunc(t *testing.T) {
r := require.New(t)
a := New(Options{})
a.GET("/foo", WrapHandlerFunc(func(res http.ResponseWriter, req *http.Request) {
res.Write([]byte("hello"))
}))
w := httptest.New(a)
res := w.HTML("/foo").Get()
r.Equal("hello", res.Body.String())
}
func Test_WrapHandler(t *testing.T) {
r := require.New(t)
a := New(Options{})
a.GET("/foo", WrapHandler(http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
res.Write([]byte("hello"))
})))
w := httptest.New(a)
res := w.HTML("/foo").Get()
r.Equal("hello", res.Body.String())
}
func Test_WrapBuffaloHandler(t *testing.T) {
r := require.New(t)
tt := []struct {
verb string
path string
status int
}{
{"GET", "/", 200},
{"GET", "/foo", 201},
{"POST", "/", 300},
{"POST", "/foo", 400},
}
for _, x := range tt {
bf := func(c Context) error {
req := c.Request()
return c.Render(x.status, render.String(req.Method+req.URL.Path))
}
h := WrapBuffaloHandler(bf)
r.NotNil(h)
req := httptest.NewRequest(x.verb, x.path, nil)
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
r.Equal(x.status, res.Code)
r.Contains(res.Body.String(), x.verb+x.path)
}
}
func Test_WrapBuffaloHandlerFunc(t *testing.T) {
r := require.New(t)
tt := []struct {
verb string
path string
status int
}{
{"GET", "/", 200},
{"GET", "/foo", 201},
{"POST", "/", 300},
{"POST", "/foo", 400},
}
for _, x := range tt {
bf := func(c Context) error {
req := c.Request()
return c.Render(x.status, render.String(req.Method+req.URL.Path))
}
h := WrapBuffaloHandlerFunc(bf)
r.NotNil(h)
req := httptest.NewRequest(x.verb, x.path, nil)
res := httptest.NewRecorder()
h(res, req)
r.Equal(x.status, res.Code)
r.Contains(res.Body.String(), x.verb+x.path)
}
}
func Benchmark_WrapBuffaloHandler(b *testing.B) {
r := require.New(b)
status := http.StatusOK
bf := func(c Context) error {
return c.Render(status, render.String(http.StatusText(status)))
}
req := httptest.NewRequest(http.MethodGet, "/foo", nil)
res := httptest.NewRecorder()
b.StartTimer()
for i := 0; i < b.N; i++ {
h := WrapBuffaloHandler(bf)
r.NotNil(h)
h.ServeHTTP(res, req)
r.Equal(status, res.Code)
r.Contains(res.Body.String(), http.StatusText(status))
}
b.StopTimer()
}