mirror of https://github.com/gin-gonic/gin.git
Adds WrapF() and WrapH()
This commit is contained in:
parent
e59475c615
commit
c4914f0ff7
8
utils.go
8
utils.go
|
@ -13,12 +13,18 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Wrap(f http.HandlerFunc) HandlerFunc {
|
func WrapF(f http.HandlerFunc) HandlerFunc {
|
||||||
return func(c *Context) {
|
return func(c *Context) {
|
||||||
f(c.Writer, c.Request)
|
f(c.Writer, c.Request)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func WrapH(h http.Handler) HandlerFunc {
|
||||||
|
return func(c *Context) {
|
||||||
|
h.ServeHTTP(c.Writer, c.Request)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
type H map[string]interface{}
|
type H map[string]interface{}
|
||||||
|
|
||||||
// Allows type H to be used with xml.Marshal
|
// Allows type H to be used with xml.Marshal
|
||||||
|
|
|
@ -16,21 +16,40 @@ func init() {
|
||||||
SetMode(TestMode)
|
SetMode(TestMode)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type testStruct struct {
|
||||||
|
T *testing.T
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *testStruct) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
||||||
|
assert.Equal(t.T, req.Method, "POST")
|
||||||
|
assert.Equal(t.T, req.URL.Path, "/path")
|
||||||
|
w.WriteHeader(500)
|
||||||
|
fmt.Fprint(w, "hello")
|
||||||
|
}
|
||||||
|
|
||||||
func TestWrap(t *testing.T) {
|
func TestWrap(t *testing.T) {
|
||||||
router := New()
|
router := New()
|
||||||
router.GET("/path", Wrap(func(w http.ResponseWriter, req *http.Request) {
|
router.POST("/path", WrapH(&testStruct{t}))
|
||||||
|
router.GET("/path2", WrapF(func(w http.ResponseWriter, req *http.Request) {
|
||||||
assert.Equal(t, req.Method, "GET")
|
assert.Equal(t, req.Method, "GET")
|
||||||
assert.Equal(t, req.URL.Path, "/path")
|
assert.Equal(t, req.URL.Path, "/path2")
|
||||||
w.WriteHeader(400)
|
w.WriteHeader(400)
|
||||||
fmt.Fprint(w, "hola!")
|
fmt.Fprint(w, "hola!")
|
||||||
}))
|
}))
|
||||||
|
|
||||||
w := performRequest(router, "GET", "/path")
|
w := performRequest(router, "POST", "/path")
|
||||||
|
assert.Equal(t, w.Code, 500)
|
||||||
|
assert.Equal(t, w.Body.String(), "hello")
|
||||||
|
|
||||||
|
w = performRequest(router, "GET", "/path2")
|
||||||
assert.Equal(t, w.Code, 400)
|
assert.Equal(t, w.Code, 400)
|
||||||
assert.Equal(t, w.Body.String(), "hola!")
|
assert.Equal(t, w.Body.String(), "hola!")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestWrapH(t *testing.T) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
func TestLastChar(t *testing.T) {
|
func TestLastChar(t *testing.T) {
|
||||||
assert.Equal(t, lastChar("hola"), uint8('a'))
|
assert.Equal(t, lastChar("hola"), uint8('a'))
|
||||||
assert.Equal(t, lastChar("adios"), uint8('s'))
|
assert.Equal(t, lastChar("adios"), uint8('s'))
|
||||||
|
|
Loading…
Reference in New Issue