2019-03-08 17:31:30 +08:00
|
|
|
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
// If a copy of the MIT was not distributed with this file,
|
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
|
|
|
|
package ghttp_test
|
|
|
|
|
|
|
|
import (
|
2019-06-19 09:06:52 +08:00
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
"time"
|
2019-07-29 21:01:19 +08:00
|
|
|
|
|
|
|
"github.com/gogf/gf/frame/g"
|
|
|
|
"github.com/gogf/gf/net/ghttp"
|
|
|
|
"github.com/gogf/gf/test/gtest"
|
2019-03-08 17:31:30 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func Test_Router_Hook_Basic(t *testing.T) {
|
2019-06-19 09:06:52 +08:00
|
|
|
p := ports.PopRand()
|
|
|
|
s := g.Server(p)
|
|
|
|
s.BindHookHandlerByMap("/*", map[string]ghttp.HandlerFunc{
|
|
|
|
"BeforeServe": func(r *ghttp.Request) { r.Response.Write("1") },
|
|
|
|
"AfterServe": func(r *ghttp.Request) { r.Response.Write("2") },
|
|
|
|
"BeforeOutput": func(r *ghttp.Request) { r.Response.Write("3") },
|
|
|
|
"AfterOutput": func(r *ghttp.Request) { r.Response.Write("4") },
|
|
|
|
})
|
|
|
|
s.BindHandler("/test/test", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("test")
|
|
|
|
})
|
|
|
|
s.SetPort(p)
|
|
|
|
s.SetDumpRouteMap(false)
|
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
2019-03-08 17:31:30 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
// 等待启动完成
|
2019-08-03 23:57:20 +08:00
|
|
|
time.Sleep(200 * time.Millisecond)
|
2019-06-19 09:06:52 +08:00
|
|
|
gtest.Case(t, func() {
|
|
|
|
client := ghttp.NewClient()
|
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
2019-03-08 17:31:30 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
gtest.Assert(client.GetContent("/"), "123")
|
|
|
|
gtest.Assert(client.GetContent("/test/test"), "1test23")
|
|
|
|
})
|
2019-03-08 17:31:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_Router_Hook_Priority(t *testing.T) {
|
2019-06-19 09:06:52 +08:00
|
|
|
p := ports.PopRand()
|
|
|
|
s := g.Server(p)
|
|
|
|
s.BindHandler("/priority/show", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("show")
|
|
|
|
})
|
2019-03-08 17:31:30 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
s.BindHookHandlerByMap("/priority/:name", map[string]ghttp.HandlerFunc{
|
|
|
|
"BeforeServe": func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("1")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.BindHookHandlerByMap("/priority/*any", map[string]ghttp.HandlerFunc{
|
|
|
|
"BeforeServe": func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("2")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.BindHookHandlerByMap("/priority/show", map[string]ghttp.HandlerFunc{
|
|
|
|
"BeforeServe": func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("3")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.SetPort(p)
|
|
|
|
s.SetDumpRouteMap(false)
|
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
2019-03-08 17:31:30 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
// 等待启动完成
|
2019-08-03 23:57:20 +08:00
|
|
|
time.Sleep(200 * time.Millisecond)
|
2019-06-19 09:06:52 +08:00
|
|
|
gtest.Case(t, func() {
|
|
|
|
client := ghttp.NewClient()
|
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
2019-03-08 17:31:30 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
gtest.Assert(client.GetContent("/"), "Not Found")
|
|
|
|
gtest.Assert(client.GetContent("/priority/show"), "312show")
|
|
|
|
gtest.Assert(client.GetContent("/priority/any/any"), "2")
|
|
|
|
gtest.Assert(client.GetContent("/priority/name"), "12")
|
|
|
|
})
|
2019-03-08 17:31:30 +08:00
|
|
|
}
|
|
|
|
|
2019-06-08 19:38:46 +08:00
|
|
|
func Test_Router_Hook_Multi(t *testing.T) {
|
2019-06-19 09:06:52 +08:00
|
|
|
p := ports.PopRand()
|
|
|
|
s := g.Server(p)
|
|
|
|
s.BindHandler("/multi-hook", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("show")
|
|
|
|
})
|
2019-06-08 19:38:46 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
s.BindHookHandlerByMap("/multi-hook", map[string]ghttp.HandlerFunc{
|
|
|
|
"BeforeServe": func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("1")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.BindHookHandlerByMap("/multi-hook", map[string]ghttp.HandlerFunc{
|
|
|
|
"BeforeServe": func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("2")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.SetPort(p)
|
|
|
|
s.SetDumpRouteMap(false)
|
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
2019-06-08 19:38:46 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
// 等待启动完成
|
2019-08-03 23:57:20 +08:00
|
|
|
time.Sleep(200 * time.Millisecond)
|
2019-06-19 09:06:52 +08:00
|
|
|
gtest.Case(t, func() {
|
|
|
|
client := ghttp.NewClient()
|
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
2019-06-08 19:38:46 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
gtest.Assert(client.GetContent("/"), "Not Found")
|
|
|
|
gtest.Assert(client.GetContent("/multi-hook"), "12show")
|
|
|
|
})
|
2019-06-08 19:38:46 +08:00
|
|
|
}
|