2019-02-02 16:18:25 +08:00
|
|
|
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
2018-12-30 22:02:46 +08:00
|
|
|
//
|
|
|
|
// 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,
|
2019-02-02 16:18:25 +08:00
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-12-30 22:02:46 +08:00
|
|
|
|
|
|
|
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/frame/gmvc"
|
|
|
|
"github.com/gogf/gf/net/ghttp"
|
|
|
|
"github.com/gogf/gf/test/gtest"
|
2018-12-30 22:02:46 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// 执行对象
|
2019-06-19 09:06:52 +08:00
|
|
|
type GroupObject struct{}
|
2018-12-30 22:02:46 +08:00
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (o *GroupObject) Init(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("1")
|
2019-02-28 23:57:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (o *GroupObject) Shut(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("2")
|
2019-02-28 23:57:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (o *GroupObject) Index(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("Object Index")
|
2019-02-26 22:21:57 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (o *GroupObject) Show(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("Object Show")
|
2018-12-30 22:02:46 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (o *GroupObject) Delete(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("Object Delete")
|
2018-12-30 22:02:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 控制器
|
2019-03-01 23:45:55 +08:00
|
|
|
type GroupController struct {
|
2019-06-19 09:06:52 +08:00
|
|
|
gmvc.Controller
|
2018-12-30 22:02:46 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (c *GroupController) Init(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
c.Controller.Init(r)
|
|
|
|
c.Response.Write("1")
|
2019-02-28 23:57:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (c *GroupController) Shut() {
|
2019-06-19 09:06:52 +08:00
|
|
|
c.Response.Write("2")
|
2019-02-28 23:57:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (c *GroupController) Index() {
|
2019-06-19 09:06:52 +08:00
|
|
|
c.Response.Write("Controller Index")
|
2019-02-26 22:21:57 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (c *GroupController) Show() {
|
2019-06-19 09:06:52 +08:00
|
|
|
c.Response.Write("Controller Show")
|
2018-12-30 22:02:46 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (c *GroupController) Post() {
|
2019-06-19 09:06:52 +08:00
|
|
|
c.Response.Write("Controller Post")
|
2018-12-30 22:02:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func Handler(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("Handler")
|
2018-12-30 22:02:46 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func Test_Router_GroupBasic1(t *testing.T) {
|
2019-06-19 09:06:52 +08:00
|
|
|
p := ports.PopRand()
|
|
|
|
s := g.Server(p)
|
|
|
|
obj := new(GroupObject)
|
|
|
|
ctl := new(GroupController)
|
|
|
|
// 分组路由方法注册
|
2019-12-02 23:00:48 +08:00
|
|
|
group := s.Group("/api")
|
|
|
|
group.ALL("/handler", Handler)
|
|
|
|
group.ALL("/ctl", ctl)
|
|
|
|
group.GET("/ctl/my-show", ctl, "Show")
|
|
|
|
group.REST("/ctl/rest", ctl)
|
|
|
|
group.ALL("/obj", obj)
|
|
|
|
group.GET("/obj/my-show", obj, "Show")
|
|
|
|
group.REST("/obj/rest", obj)
|
2019-06-19 09:06:52 +08:00
|
|
|
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-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))
|
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/api/handler"), "Handler")
|
|
|
|
|
|
|
|
t.Assert(client.GetContent("/api/ctl"), "1Controller Index2")
|
|
|
|
t.Assert(client.GetContent("/api/ctl/"), "1Controller Index2")
|
|
|
|
t.Assert(client.GetContent("/api/ctl/index"), "1Controller Index2")
|
|
|
|
t.Assert(client.GetContent("/api/ctl/my-show"), "1Controller Show2")
|
|
|
|
t.Assert(client.GetContent("/api/ctl/post"), "1Controller Post2")
|
|
|
|
t.Assert(client.GetContent("/api/ctl/show"), "1Controller Show2")
|
|
|
|
t.Assert(client.PostContent("/api/ctl/rest"), "1Controller Post2")
|
|
|
|
|
|
|
|
t.Assert(client.GetContent("/api/obj"), "1Object Index2")
|
|
|
|
t.Assert(client.GetContent("/api/obj/"), "1Object Index2")
|
|
|
|
t.Assert(client.GetContent("/api/obj/index"), "1Object Index2")
|
|
|
|
t.Assert(client.GetContent("/api/obj/delete"), "1Object Delete2")
|
|
|
|
t.Assert(client.GetContent("/api/obj/my-show"), "1Object Show2")
|
|
|
|
t.Assert(client.GetContent("/api/obj/show"), "1Object Show2")
|
|
|
|
t.Assert(client.DeleteContent("/api/obj/rest"), "1Object Delete2")
|
|
|
|
|
|
|
|
t.Assert(client.DeleteContent("/ThisDoesNotExist"), "Not Found")
|
|
|
|
t.Assert(client.DeleteContent("/api/ThisDoesNotExist"), "Not Found")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2018-12-30 22:02:46 +08:00
|
|
|
}
|
|
|
|
|
2020-03-11 15:51:24 +08:00
|
|
|
func Test_Router_GroupBasic2(t *testing.T) {
|
2019-06-19 09:06:52 +08:00
|
|
|
p := ports.PopRand()
|
|
|
|
s := g.Server(p)
|
|
|
|
obj := new(GroupObject)
|
|
|
|
ctl := new(GroupController)
|
|
|
|
// 分组路由批量注册
|
2019-07-28 17:58:43 +08:00
|
|
|
s.Group("/api").Bind([]g.Slice{
|
2019-06-19 09:06:52 +08:00
|
|
|
{"ALL", "/handler", Handler},
|
|
|
|
{"ALL", "/ctl", ctl},
|
|
|
|
{"GET", "/ctl/my-show", ctl, "Show"},
|
|
|
|
{"REST", "/ctl/rest", ctl},
|
|
|
|
{"ALL", "/obj", obj},
|
|
|
|
{"GET", "/obj/my-show", obj, "Show"},
|
|
|
|
{"REST", "/obj/rest", obj},
|
|
|
|
})
|
|
|
|
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-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))
|
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/api/handler"), "Handler")
|
2019-06-19 09:06:52 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/api/ctl/my-show"), "1Controller Show2")
|
|
|
|
t.Assert(client.GetContent("/api/ctl/post"), "1Controller Post2")
|
|
|
|
t.Assert(client.GetContent("/api/ctl/show"), "1Controller Show2")
|
|
|
|
t.Assert(client.PostContent("/api/ctl/rest"), "1Controller Post2")
|
2019-06-19 09:06:52 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/api/obj/delete"), "1Object Delete2")
|
|
|
|
t.Assert(client.GetContent("/api/obj/my-show"), "1Object Show2")
|
|
|
|
t.Assert(client.GetContent("/api/obj/show"), "1Object Show2")
|
|
|
|
t.Assert(client.DeleteContent("/api/obj/rest"), "1Object Delete2")
|
2019-06-19 09:06:52 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.DeleteContent("/ThisDoesNotExist"), "Not Found")
|
|
|
|
t.Assert(client.DeleteContent("/api/ThisDoesNotExist"), "Not Found")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2018-12-30 22:02:46 +08:00
|
|
|
}
|
2019-03-01 23:45:55 +08:00
|
|
|
|
|
|
|
func Test_Router_GroupBuildInVar(t *testing.T) {
|
2019-06-19 09:06:52 +08:00
|
|
|
p := ports.PopRand()
|
|
|
|
s := g.Server(p)
|
|
|
|
obj := new(GroupObject)
|
|
|
|
ctl := new(GroupController)
|
|
|
|
// 分组路由方法注册
|
2019-12-02 23:00:48 +08:00
|
|
|
group := s.Group("/api")
|
|
|
|
group.ALL("/{.struct}/{.method}", ctl)
|
|
|
|
group.ALL("/{.struct}/{.method}", obj)
|
2019-06-19 09:06:52 +08:00
|
|
|
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-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))
|
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/api/group-controller/index"), "1Controller Index2")
|
|
|
|
t.Assert(client.GetContent("/api/group-controller/post"), "1Controller Post2")
|
|
|
|
t.Assert(client.GetContent("/api/group-controller/show"), "1Controller Show2")
|
2019-06-19 09:06:52 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/api/group-object/index"), "1Object Index2")
|
|
|
|
t.Assert(client.GetContent("/api/group-object/delete"), "1Object Delete2")
|
|
|
|
t.Assert(client.GetContent("/api/group-object/show"), "1Object Show2")
|
2019-06-19 09:06:52 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.DeleteContent("/ThisDoesNotExist"), "Not Found")
|
|
|
|
t.Assert(client.DeleteContent("/api/ThisDoesNotExist"), "Not Found")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
|
|
|
}
|
2020-03-11 15:51:24 +08:00
|
|
|
|
|
|
|
func Test_Router_Group_Mthods(t *testing.T) {
|
|
|
|
p := ports.PopRand()
|
|
|
|
s := g.Server(p)
|
|
|
|
obj := new(GroupObject)
|
|
|
|
ctl := new(GroupController)
|
|
|
|
group := s.Group("/")
|
|
|
|
group.ALL("/obj", obj, "Show, Delete")
|
|
|
|
group.ALL("/ctl", ctl, "Show, Post")
|
|
|
|
s.SetPort(p)
|
|
|
|
s.SetDumpRouterMap(false)
|
|
|
|
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-03-11 15:51:24 +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("/ctl/show"), "1Controller Show2")
|
|
|
|
t.Assert(client.GetContent("/ctl/post"), "1Controller Post2")
|
|
|
|
t.Assert(client.GetContent("/obj/show"), "1Object Show2")
|
|
|
|
t.Assert(client.GetContent("/obj/delete"), "1Object Delete2")
|
2020-03-11 15:51:24 +08:00
|
|
|
})
|
|
|
|
}
|
2020-03-24 19:48:10 +08:00
|
|
|
|
|
|
|
func Test_Router_Group_MultiServer(t *testing.T) {
|
|
|
|
p1 := ports.PopRand()
|
|
|
|
p2 := ports.PopRand()
|
|
|
|
s1 := g.Server(p1)
|
|
|
|
s2 := g.Server(p2)
|
|
|
|
s1.Group("/", func(group *ghttp.RouterGroup) {
|
|
|
|
group.POST("/post", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("post1")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
s2.Group("/", func(group *ghttp.RouterGroup) {
|
|
|
|
group.POST("/post", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("post2")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
s1.SetPort(p1)
|
|
|
|
s2.SetPort(p2)
|
|
|
|
s1.SetDumpRouterMap(false)
|
|
|
|
s2.SetDumpRouterMap(false)
|
|
|
|
gtest.Assert(s1.Start(), nil)
|
|
|
|
gtest.Assert(s2.Start(), nil)
|
|
|
|
defer s1.Shutdown()
|
|
|
|
defer s2.Shutdown()
|
|
|
|
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
c1 := ghttp.NewClient()
|
|
|
|
c1.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p1))
|
|
|
|
c2 := ghttp.NewClient()
|
|
|
|
c2.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p2))
|
|
|
|
t.Assert(c1.PostContent("/post"), "post1")
|
|
|
|
t.Assert(c2.PostContent("/post"), "post2")
|
|
|
|
})
|
|
|
|
}
|