gf/net/ghttp/ghttp_unit_router_controller_test.go

129 lines
3.7 KiB
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// 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 (
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"
)
// 控制器
type Controller struct {
2019-06-19 09:06:52 +08:00
gmvc.Controller
}
func (c *Controller) Init(r *ghttp.Request) {
2019-06-19 09:06:52 +08:00
c.Controller.Init(r)
c.Response.Write("1")
}
func (c *Controller) Shut() {
2019-06-19 09:06:52 +08:00
c.Response.Write("2")
}
func (c *Controller) Index() {
2019-06-19 09:06:52 +08:00
c.Response.Write("Controller Index")
}
func (c *Controller) Show() {
2019-06-19 09:06:52 +08:00
c.Response.Write("Controller Show")
}
func (c *Controller) Info() {
2019-06-19 09:06:52 +08:00
c.Response.Write("Controller Info")
}
func Test_Router_Controller1(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.BindController("/", new(Controller))
s.BindController("/{.struct}/{.method}", new(Controller))
s.SetPort(p)
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +08:00
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()
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("/"), "1Controller Index2")
t.Assert(client.GetContent("/init"), "Not Found")
t.Assert(client.GetContent("/shut"), "Not Found")
t.Assert(client.GetContent("/index"), "1Controller Index2")
t.Assert(client.GetContent("/show"), "1Controller Show2")
2019-06-19 09:06:52 +08:00
2020-03-19 22:56:12 +08:00
t.Assert(client.GetContent("/controller"), "Not Found")
t.Assert(client.GetContent("/controller/init"), "Not Found")
t.Assert(client.GetContent("/controller/shut"), "Not Found")
t.Assert(client.GetContent("/controller/index"), "1Controller Index2")
t.Assert(client.GetContent("/controller/show"), "1Controller 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
})
}
func Test_Router_Controller2(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.BindController("/controller", new(Controller), "Show, Info")
s.SetPort(p)
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +08:00
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()
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("/controller"), "Not Found")
t.Assert(client.GetContent("/controller/init"), "Not Found")
t.Assert(client.GetContent("/controller/shut"), "Not Found")
t.Assert(client.GetContent("/controller/index"), "Not Found")
t.Assert(client.GetContent("/controller/show"), "1Controller Show2")
t.Assert(client.GetContent("/controller/info"), "1Controller 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
})
}
func Test_Router_ControllerMethod(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.BindControllerMethod("/controller-info", new(Controller), "Info")
s.SetPort(p)
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +08:00
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()
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("/controller"), "Not Found")
t.Assert(client.GetContent("/controller/init"), "Not Found")
t.Assert(client.GetContent("/controller/shut"), "Not Found")
t.Assert(client.GetContent("/controller/index"), "Not Found")
t.Assert(client.GetContent("/controller/show"), "Not Found")
t.Assert(client.GetContent("/controller/info"), "Not Found")
t.Assert(client.GetContent("/controller-info"), "1Controller 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
})
}