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) {
|
2020-03-30 20:47:50 +08:00
|
|
|
p, _ := ports.PopRand()
|
2019-06-19 09:06:52 +08:00
|
|
|
s := g.Server(p)
|
|
|
|
s.BindHookHandlerByMap("/*", map[string]ghttp.HandlerFunc{
|
2019-08-06 20:40:04 +08:00
|
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) { r.Response.Write("1") },
|
|
|
|
ghttp.HOOK_AFTER_SERVE: func(r *ghttp.Request) { r.Response.Write("2") },
|
|
|
|
ghttp.HOOK_BEFORE_OUTPUT: func(r *ghttp.Request) { r.Response.Write("3") },
|
|
|
|
ghttp.HOOK_AFTER_OUTPUT: func(r *ghttp.Request) { r.Response.Write("4") },
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
|
|
|
s.BindHandler("/test/test", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("test")
|
|
|
|
})
|
|
|
|
s.SetPort(p)
|
2019-12-04 13:55:08 +08:00
|
|
|
s.SetDumpRouterMap(false)
|
2019-06-19 09:06:52 +08:00
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
2019-03-08 17:31:30 +08:00
|
|
|
|
2019-10-09 00:33:58 +08:00
|
|
|
time.Sleep(100 * time.Millisecond)
|
2020-03-19 22:56:12 +08:00
|
|
|
gtest.C(t, func(t *gtest.T) {
|
2019-06-19 09:06:52 +08:00
|
|
|
client := ghttp.NewClient()
|
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
2019-03-08 17:31:30 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/"), "123")
|
|
|
|
t.Assert(client.GetContent("/test/test"), "1test23")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-03-08 17:31:30 +08:00
|
|
|
}
|
|
|
|
|
2019-10-09 00:33:58 +08:00
|
|
|
func Test_Router_Hook_Fuzzy_Router(t *testing.T) {
|
2020-03-30 20:47:50 +08:00
|
|
|
p, _ := ports.PopRand()
|
2019-10-09 00:33:58 +08:00
|
|
|
s := g.Server(p)
|
|
|
|
i := 1000
|
|
|
|
pattern1 := "/:name/info"
|
|
|
|
s.BindHookHandlerByMap(pattern1, map[string]ghttp.HandlerFunc{
|
|
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
|
|
|
r.SetParam("uid", i)
|
|
|
|
i++
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.BindHandler(pattern1, func(r *ghttp.Request) {
|
|
|
|
r.Response.Write(r.Get("uid"))
|
|
|
|
})
|
|
|
|
|
2020-03-04 22:52:56 +08:00
|
|
|
pattern2 := "/{object}/list/{page}.java"
|
|
|
|
s.BindHookHandlerByMap(pattern2, map[string]ghttp.HandlerFunc{
|
|
|
|
ghttp.HOOK_BEFORE_OUTPUT: func(r *ghttp.Request) {
|
|
|
|
r.Response.SetBuffer([]byte(
|
|
|
|
fmt.Sprint(r.Get("object"), "&", r.Get("page"), "&", i),
|
|
|
|
))
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.BindHandler(pattern2, func(r *ghttp.Request) {
|
|
|
|
r.Response.Write(r.Router.Uri)
|
|
|
|
})
|
2019-10-09 00:33:58 +08:00
|
|
|
s.SetPort(p)
|
2020-03-04 17:29:23 +08:00
|
|
|
//s.SetDumpRouterMap(false)
|
2019-10-09 00:33:58 +08:00
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
|
|
|
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
2020-03-19 22:56:12 +08:00
|
|
|
gtest.C(t, func(t *gtest.T) {
|
2019-10-09 00:33:58 +08:00
|
|
|
client := ghttp.NewClient()
|
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/john"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/john/info"), "1000")
|
|
|
|
t.Assert(client.GetContent("/john/info"), "1001")
|
|
|
|
t.Assert(client.GetContent("/john/list/1.java"), "john&1&1002")
|
|
|
|
t.Assert(client.GetContent("/john/list/2.java"), "john&2&1002")
|
2019-10-09 00:33:58 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-03-08 17:31:30 +08:00
|
|
|
func Test_Router_Hook_Priority(t *testing.T) {
|
2020-03-30 20:47:50 +08:00
|
|
|
p, _ := ports.PopRand()
|
2019-06-19 09:06:52 +08:00
|
|
|
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{
|
2019-08-06 20:40:04 +08:00
|
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("1")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.BindHookHandlerByMap("/priority/*any", map[string]ghttp.HandlerFunc{
|
2019-08-06 20:40:04 +08:00
|
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("2")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.BindHookHandlerByMap("/priority/show", map[string]ghttp.HandlerFunc{
|
2019-08-06 20:40:04 +08:00
|
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("3")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.SetPort(p)
|
2019-12-04 13:55:08 +08:00
|
|
|
s.SetDumpRouterMap(false)
|
2019-06-19 09:06:52 +08:00
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
2019-03-08 17:31:30 +08:00
|
|
|
|
2019-10-09 00:33:58 +08:00
|
|
|
time.Sleep(100 * time.Millisecond)
|
2020-03-19 22:56:12 +08:00
|
|
|
gtest.C(t, func(t *gtest.T) {
|
2019-06-19 09:06:52 +08:00
|
|
|
client := ghttp.NewClient()
|
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
2019-03-08 17:31:30 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/priority/show"), "312show")
|
|
|
|
t.Assert(client.GetContent("/priority/any/any"), "2")
|
|
|
|
t.Assert(client.GetContent("/priority/name"), "12")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-03-08 17:31:30 +08:00
|
|
|
}
|
|
|
|
|
2019-06-08 19:38:46 +08:00
|
|
|
func Test_Router_Hook_Multi(t *testing.T) {
|
2020-03-30 20:47:50 +08:00
|
|
|
p, _ := ports.PopRand()
|
2019-06-19 09:06:52 +08:00
|
|
|
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{
|
2019-08-06 20:40:04 +08:00
|
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("1")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.BindHookHandlerByMap("/multi-hook", map[string]ghttp.HandlerFunc{
|
2019-08-06 20:40:04 +08:00
|
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("2")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
s.SetPort(p)
|
2019-12-04 13:55:08 +08:00
|
|
|
s.SetDumpRouterMap(false)
|
2019-06-19 09:06:52 +08:00
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
2019-06-08 19:38:46 +08:00
|
|
|
|
2019-10-09 00:33:58 +08:00
|
|
|
time.Sleep(100 * time.Millisecond)
|
2020-03-19 22:56:12 +08:00
|
|
|
gtest.C(t, func(t *gtest.T) {
|
2019-06-19 09:06:52 +08:00
|
|
|
client := ghttp.NewClient()
|
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
2019-06-08 19:38:46 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/multi-hook"), "12show")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-06-08 19:38:46 +08:00
|
|
|
}
|