mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
123 lines
3.3 KiB
Go
123 lines
3.3 KiB
Go
// 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 (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gogf/gf/frame/g"
|
|
"github.com/gogf/gf/net/ghttp"
|
|
"github.com/gogf/gf/test/gtest"
|
|
)
|
|
|
|
func Test_Router_Exit(t *testing.T) {
|
|
p := ports.PopRand()
|
|
s := g.Server(p)
|
|
s.BindHookHandlerByMap("/*", map[string]ghttp.HandlerFunc{
|
|
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") },
|
|
})
|
|
s.BindHandler("/test/test", func(r *ghttp.Request) {
|
|
r.Response.Write("test-start")
|
|
r.Exit()
|
|
r.Response.Write("test-end")
|
|
})
|
|
s.SetPort(p)
|
|
s.SetDumpRouteMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
gtest.Case(t, func() {
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
gtest.Assert(client.GetContent("/"), "123")
|
|
gtest.Assert(client.GetContent("/test/test"), "1test-start23")
|
|
})
|
|
}
|
|
|
|
func Test_Router_ExitHook(t *testing.T) {
|
|
p := ports.PopRand()
|
|
s := g.Server(p)
|
|
s.BindHandler("/priority/show", func(r *ghttp.Request) {
|
|
r.Response.Write("show")
|
|
})
|
|
|
|
s.BindHookHandlerByMap("/priority/:name", map[string]ghttp.HandlerFunc{
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
|
r.Response.Write("1")
|
|
},
|
|
})
|
|
s.BindHookHandlerByMap("/priority/*any", map[string]ghttp.HandlerFunc{
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
|
r.Response.Write("2")
|
|
},
|
|
})
|
|
s.BindHookHandlerByMap("/priority/show", map[string]ghttp.HandlerFunc{
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
|
r.Response.Write("3")
|
|
r.ExitHook()
|
|
},
|
|
})
|
|
s.SetPort(p)
|
|
s.SetDumpRouteMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
gtest.Case(t, func() {
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
gtest.Assert(client.GetContent("/"), "Not Found")
|
|
gtest.Assert(client.GetContent("/priority/show"), "3show")
|
|
})
|
|
}
|
|
|
|
func Test_Router_ExitAll(t *testing.T) {
|
|
p := ports.PopRand()
|
|
s := g.Server(p)
|
|
s.BindHandler("/priority/show", func(r *ghttp.Request) {
|
|
r.Response.Write("show")
|
|
})
|
|
|
|
s.BindHookHandlerByMap("/priority/:name", map[string]ghttp.HandlerFunc{
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
|
r.Response.Write("1")
|
|
},
|
|
})
|
|
s.BindHookHandlerByMap("/priority/*any", map[string]ghttp.HandlerFunc{
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
|
r.Response.Write("2")
|
|
},
|
|
})
|
|
s.BindHookHandlerByMap("/priority/show", map[string]ghttp.HandlerFunc{
|
|
ghttp.HOOK_BEFORE_SERVE: func(r *ghttp.Request) {
|
|
r.Response.Write("3")
|
|
r.ExitAll()
|
|
},
|
|
})
|
|
s.SetPort(p)
|
|
s.SetDumpRouteMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
gtest.Case(t, func() {
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
gtest.Assert(client.GetContent("/"), "Not Found")
|
|
gtest.Assert(client.GetContent("/priority/show"), "3")
|
|
})
|
|
}
|