Files
gf/net/ghttp/ghttp_z_unit_feature_router_exit_test.go

118 lines
3.3 KiB
Go
Raw Permalink Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). 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
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/net/ghttp"
"github.com/gogf/gf/v2/test/gtest"
"github.com/gogf/gf/v2/util/guid"
)
func Test_Router_Exit(t *testing.T) {
s := g.Server(guid.S())
2019-06-19 09:06:52 +08:00
s.BindHookHandlerByMap("/*", map[string]ghttp.HandlerFunc{
2020-12-14 13:26:48 +08:00
ghttp.HookBeforeServe: func(r *ghttp.Request) { r.Response.Write("1") },
ghttp.HookAfterServe: func(r *ghttp.Request) { r.Response.Write("2") },
ghttp.HookBeforeOutput: func(r *ghttp.Request) { r.Response.Write("3") },
ghttp.HookAfterOutput: 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-start")
r.Exit()
r.Response.Write("test-end")
})
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +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) {
2020-11-25 16:40:45 +08:00
client := g.Client()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
t.Assert(client.GetContent(ctx, "/"), "123")
t.Assert(client.GetContent(ctx, "/test/test"), "1test-start23")
2019-06-19 09:06:52 +08:00
})
}
func Test_Router_ExitHook(t *testing.T) {
s := g.Server(guid.S())
2019-06-19 09:06:52 +08:00
s.BindHandler("/priority/show", func(r *ghttp.Request) {
r.Response.Write("show")
})
2019-06-19 09:06:52 +08:00
s.BindHookHandlerByMap("/priority/:name", map[string]ghttp.HandlerFunc{
2020-12-14 13:26:48 +08:00
ghttp.HookBeforeServe: func(r *ghttp.Request) {
2019-06-19 09:06:52 +08:00
r.Response.Write("1")
},
})
s.BindHookHandlerByMap("/priority/*any", map[string]ghttp.HandlerFunc{
2020-12-14 13:26:48 +08:00
ghttp.HookBeforeServe: func(r *ghttp.Request) {
2019-06-19 09:06:52 +08:00
r.Response.Write("2")
},
})
s.BindHookHandlerByMap("/priority/show", map[string]ghttp.HandlerFunc{
2020-12-14 13:26:48 +08:00
ghttp.HookBeforeServe: func(r *ghttp.Request) {
2019-06-19 09:06:52 +08:00
r.Response.Write("3")
r.ExitHook()
},
})
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +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) {
2020-11-25 16:40:45 +08:00
client := g.Client()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
t.Assert(client.GetContent(ctx, "/"), "Not Found")
t.Assert(client.GetContent(ctx, "/priority/show"), "3show")
2019-06-19 09:06:52 +08:00
})
}
func Test_Router_ExitAll(t *testing.T) {
s := g.Server(guid.S())
2019-06-19 09:06:52 +08:00
s.BindHandler("/priority/show", func(r *ghttp.Request) {
r.Response.Write("show")
})
2019-06-19 09:06:52 +08:00
s.BindHookHandlerByMap("/priority/:name", map[string]ghttp.HandlerFunc{
2020-12-14 13:26:48 +08:00
ghttp.HookBeforeServe: func(r *ghttp.Request) {
2019-06-19 09:06:52 +08:00
r.Response.Write("1")
},
})
s.BindHookHandlerByMap("/priority/*any", map[string]ghttp.HandlerFunc{
2020-12-14 13:26:48 +08:00
ghttp.HookBeforeServe: func(r *ghttp.Request) {
2019-06-19 09:06:52 +08:00
r.Response.Write("2")
},
})
s.BindHookHandlerByMap("/priority/show", map[string]ghttp.HandlerFunc{
2020-12-14 13:26:48 +08:00
ghttp.HookBeforeServe: func(r *ghttp.Request) {
2019-06-19 09:06:52 +08:00
r.Response.Write("3")
r.ExitAll()
},
})
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +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) {
2020-11-25 16:40:45 +08:00
client := g.Client()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
t.Assert(client.GetContent(ctx, "/"), "Not Found")
t.Assert(client.GetContent(ctx, "/priority/show"), "3")
2019-06-19 09:06:52 +08:00
})
}