2021-01-17 21:46:25 +08:00
|
|
|
// Copyright GoFrame Author(https://goframe.org). 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/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
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2020-03-30 20:47:50 +08:00
|
|
|
p, _ := ports.PopRand()
|
2019-06-19 09:06:52 +08:00
|
|
|
s := g.Server(p)
|
|
|
|
obj := new(GroupObject)
|
|
|
|
// 分组路由方法注册
|
2019-12-02 23:00:48 +08:00
|
|
|
group := s.Group("/api")
|
|
|
|
group.ALL("/handler", Handler)
|
|
|
|
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) {
|
2020-11-25 16:40:45 +08:00
|
|
|
client := g.Client()
|
2019-06-19 09:06:52 +08:00
|
|
|
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/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) {
|
2020-03-30 20:47:50 +08:00
|
|
|
p, _ := ports.PopRand()
|
2019-06-19 09:06:52 +08:00
|
|
|
s := g.Server(p)
|
|
|
|
obj := new(GroupObject)
|
|
|
|
// 分组路由批量注册
|
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", "/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) {
|
2020-11-25 16:40:45 +08:00
|
|
|
client := g.Client()
|
2019-06-19 09:06:52 +08:00
|
|
|
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/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) {
|
2020-03-30 20:47:50 +08:00
|
|
|
p, _ := ports.PopRand()
|
2019-06-19 09:06:52 +08:00
|
|
|
s := g.Server(p)
|
|
|
|
obj := new(GroupObject)
|
|
|
|
// 分组路由方法注册
|
2019-12-02 23:00:48 +08:00
|
|
|
group := s.Group("/api")
|
|
|
|
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) {
|
2020-11-25 16:40:45 +08:00
|
|
|
client := g.Client()
|
2019-06-19 09:06:52 +08:00
|
|
|
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-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
|
|
|
|
2021-07-30 15:15:44 +08:00
|
|
|
func Test_Router_Group_Methods(t *testing.T) {
|
2020-03-30 20:47:50 +08:00
|
|
|
p, _ := ports.PopRand()
|
2020-03-11 15:51:24 +08:00
|
|
|
s := g.Server(p)
|
|
|
|
obj := new(GroupObject)
|
|
|
|
group := s.Group("/")
|
|
|
|
group.ALL("/obj", obj, "Show, Delete")
|
|
|
|
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-11-25 16:40:45 +08:00
|
|
|
client := g.Client()
|
2020-03-11 15:51:24 +08:00
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
2020-03-19 22:56:12 +08:00
|
|
|
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) {
|
2020-03-30 20:56:00 +08:00
|
|
|
p1, _ := ports.PopRand()
|
|
|
|
p2, _ := ports.PopRand()
|
2020-03-24 19:48:10 +08:00
|
|
|
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) {
|
2020-11-25 16:40:45 +08:00
|
|
|
c1 := g.Client()
|
2020-03-24 19:48:10 +08:00
|
|
|
c1.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p1))
|
2020-11-25 16:40:45 +08:00
|
|
|
c2 := g.Client()
|
2020-03-24 19:48:10 +08:00
|
|
|
c2.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p2))
|
|
|
|
t.Assert(c1.PostContent("/post"), "post1")
|
|
|
|
t.Assert(c2.PostContent("/post"), "post2")
|
|
|
|
})
|
|
|
|
}
|