gf/net/ghttp/ghttp_z_unit_feature_router_object_test.go
2021-11-17 23:20:58 +08:00

124 lines
3.6 KiB
Go

// 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 (
"fmt"
"testing"
"time"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/net/ghttp"
"github.com/gogf/gf/v2/test/gtest"
)
type Object struct{}
func (o *Object) Init(r *ghttp.Request) {
r.Response.Write("1")
}
func (o *Object) Shut(r *ghttp.Request) {
r.Response.Write("2")
}
func (o *Object) Index(r *ghttp.Request) {
r.Response.Write("Object Index")
}
func (o *Object) Show(r *ghttp.Request) {
r.Response.Write("Object Show")
}
func (o *Object) Info(r *ghttp.Request) {
r.Response.Write("Object Info")
}
func Test_Router_Object1(t *testing.T) {
p, _ := ports.PopRand()
s := g.Server(p)
s.BindObject("/", new(Object))
s.BindObject("/{.struct}/{.method}", new(Object))
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
client := g.Client()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
t.Assert(client.GetContent(ctx, "/"), "1Object Index2")
t.Assert(client.GetContent(ctx, "/init"), "Not Found")
t.Assert(client.GetContent(ctx, "/shut"), "Not Found")
t.Assert(client.GetContent(ctx, "/index"), "1Object Index2")
t.Assert(client.GetContent(ctx, "/show"), "1Object Show2")
t.Assert(client.GetContent(ctx, "/object"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/init"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/shut"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/index"), "1Object Index2")
t.Assert(client.GetContent(ctx, "/object/show"), "1Object Show2")
t.Assert(client.GetContent(ctx, "/none-exist"), "Not Found")
})
}
func Test_Router_Object2(t *testing.T) {
p, _ := ports.PopRand()
s := g.Server(p)
s.BindObject("/object", new(Object), "Show, Info")
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
client := g.Client()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
t.Assert(client.GetContent(ctx, "/"), "Not Found")
t.Assert(client.GetContent(ctx, "/object"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/init"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/shut"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/index"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/show"), "1Object Show2")
t.Assert(client.GetContent(ctx, "/object/info"), "1Object Info2")
t.Assert(client.GetContent(ctx, "/none-exist"), "Not Found")
})
}
func Test_Router_ObjectMethod(t *testing.T) {
p, _ := ports.PopRand()
s := g.Server(p)
s.BindObjectMethod("/object-info", new(Object), "Info")
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
client := g.Client()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
t.Assert(client.GetContent(ctx, "/"), "Not Found")
t.Assert(client.GetContent(ctx, "/object"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/init"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/shut"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/index"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/show"), "Not Found")
t.Assert(client.GetContent(ctx, "/object/info"), "Not Found")
t.Assert(client.GetContent(ctx, "/object-info"), "1Object Info2")
t.Assert(client.GetContent(ctx, "/none-exist"), "Not Found")
})
}