2021-01-17 21:46:25 +08:00
|
|
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
2019-02-28 23:57:20 +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,
|
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
|
|
|
|
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"
|
2019-02-28 23:57:20 +08:00
|
|
|
)
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
type Object struct{}
|
2019-02-28 23:57:20 +08:00
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (o *Object) 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 *Object) 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 *Object) Index(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("Object Index")
|
2019-02-28 23:57:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 23:45:55 +08:00
|
|
|
func (o *Object) Show(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("Object Show")
|
2019-02-28 23:57:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 15:21:00 +08:00
|
|
|
func (o *Object) Info(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("Object Info")
|
2019-03-06 15:21:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_Router_Object1(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)
|
|
|
|
s.BindObject("/", new(Object))
|
|
|
|
s.BindObject("/{.struct}/{.method}", new(Object))
|
|
|
|
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("/"), "1Object Index2")
|
|
|
|
t.Assert(client.GetContent("/init"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/shut"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/index"), "1Object Index2")
|
|
|
|
t.Assert(client.GetContent("/show"), "1Object Show2")
|
2019-06-19 09:06:52 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/object"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/init"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/shut"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/index"), "1Object Index2")
|
|
|
|
t.Assert(client.GetContent("/object/show"), "1Object Show2")
|
2019-06-19 09:06:52 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/none-exist"), "Not Found")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-02-28 23:57:20 +08:00
|
|
|
}
|
2019-03-06 15:21:00 +08:00
|
|
|
|
|
|
|
func Test_Router_Object2(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)
|
|
|
|
s.BindObject("/object", new(Object), "Show, Info")
|
|
|
|
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("/"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/init"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/shut"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/index"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/show"), "1Object Show2")
|
|
|
|
t.Assert(client.GetContent("/object/info"), "1Object Info2")
|
2019-06-19 09:06:52 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/none-exist"), "Not Found")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-03-06 15:21:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_Router_ObjectMethod(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)
|
|
|
|
s.BindObjectMethod("/object-info", new(Object), "Info")
|
|
|
|
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("/"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/init"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/shut"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/index"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/show"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object/info"), "Not Found")
|
|
|
|
t.Assert(client.GetContent("/object-info"), "1Object Info2")
|
2019-06-19 09:06:52 +08:00
|
|
|
|
2020-03-19 22:56:12 +08:00
|
|
|
t.Assert(client.GetContent("/none-exist"), "Not Found")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
|
|
|
}
|