mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 20:58:47 +08:00
127 lines
3.6 KiB
Go
127 lines
3.6 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"
|
|
)
|
|
|
|
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.SetDumpRouteMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
// 等待启动完成
|
|
time.Sleep(200 * time.Millisecond)
|
|
gtest.Case(t, func() {
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
gtest.Assert(client.GetContent("/"), "1Object Index2")
|
|
gtest.Assert(client.GetContent("/init"), "Not Found")
|
|
gtest.Assert(client.GetContent("/shut"), "Not Found")
|
|
gtest.Assert(client.GetContent("/index"), "1Object Index2")
|
|
gtest.Assert(client.GetContent("/show"), "1Object Show2")
|
|
|
|
gtest.Assert(client.GetContent("/object"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/init"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/shut"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/index"), "1Object Index2")
|
|
gtest.Assert(client.GetContent("/object/show"), "1Object Show2")
|
|
|
|
gtest.Assert(client.GetContent("/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.SetDumpRouteMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
// 等待启动完成
|
|
time.Sleep(200 * 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("/object"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/init"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/shut"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/index"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/show"), "1Object Show2")
|
|
gtest.Assert(client.GetContent("/object/info"), "1Object Info2")
|
|
|
|
gtest.Assert(client.GetContent("/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.SetDumpRouteMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
// 等待启动完成
|
|
time.Sleep(200 * 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("/object"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/init"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/shut"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/index"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/show"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object/info"), "Not Found")
|
|
gtest.Assert(client.GetContent("/object-info"), "1Object Info2")
|
|
|
|
gtest.Assert(client.GetContent("/none-exist"), "Not Found")
|
|
})
|
|
}
|