mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 21:28:22 +08:00
196 lines
8.1 KiB
Go
196 lines
8.1 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"
|
||
|
"github.com/gogf/gf/g"
|
||
|
"github.com/gogf/gf/g/net/ghttp"
|
||
|
"github.com/gogf/gf/g/test/gtest"
|
||
|
"testing"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type DomainObject struct {}
|
||
|
|
||
|
func (o *DomainObject) Init(r *ghttp.Request) {
|
||
|
r.Response.Write("1")
|
||
|
}
|
||
|
|
||
|
func (o *DomainObject) Shut(r *ghttp.Request) {
|
||
|
r.Response.Write("2")
|
||
|
}
|
||
|
|
||
|
func (o *DomainObject) Index(r *ghttp.Request) {
|
||
|
r.Response.Write("Object Index")
|
||
|
}
|
||
|
|
||
|
func (o *DomainObject) Show(r *ghttp.Request) {
|
||
|
r.Response.Write("Object Show")
|
||
|
}
|
||
|
|
||
|
func (o *DomainObject) Info(r *ghttp.Request) {
|
||
|
r.Response.Write("Object Info")
|
||
|
}
|
||
|
|
||
|
func Test_Router_DomainObject1(t *testing.T) {
|
||
|
p := ports.PopRand()
|
||
|
s := g.Server(p)
|
||
|
s.Domain("localhost, local").BindObject("/", new(DomainObject))
|
||
|
s.SetPort(p)
|
||
|
s.SetDumpRouteMap(false)
|
||
|
s.Start()
|
||
|
defer s.Shutdown()
|
||
|
|
||
|
// 等待启动完成
|
||
|
time.Sleep(time.Second)
|
||
|
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("/init"), "Not Found")
|
||
|
gtest.Assert(client.GetContent("/shut"), "Not Found")
|
||
|
gtest.Assert(client.GetContent("/index"), "Not Found")
|
||
|
gtest.Assert(client.GetContent("/show"), "Not Found")
|
||
|
gtest.Assert(client.GetContent("/none-exist"), "Not Found")
|
||
|
})
|
||
|
|
||
|
gtest.Case(t, func() {
|
||
|
client := ghttp.NewClient()
|
||
|
client.SetPrefix(fmt.Sprintf("http://localhost:%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("/info"), "1Object Info2")
|
||
|
gtest.Assert(client.GetContent("/none-exist"), "Not Found")
|
||
|
})
|
||
|
|
||
|
gtest.Case(t, func() {
|
||
|
client := ghttp.NewClient()
|
||
|
client.SetPrefix(fmt.Sprintf("http://local:%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("/info"), "1Object Info2")
|
||
|
gtest.Assert(client.GetContent("/none-exist"), "Not Found")
|
||
|
})
|
||
|
}
|
||
|
|
||
|
|
||
|
func Test_Router_DomainObject2(t *testing.T) {
|
||
|
p := ports.PopRand()
|
||
|
s := g.Server(p)
|
||
|
s.Domain("localhost, local").BindObject("/object", new(DomainObject), "Show, Info")
|
||
|
s.SetPort(p)
|
||
|
s.SetDumpRouteMap(false)
|
||
|
s.Start()
|
||
|
defer s.Shutdown()
|
||
|
|
||
|
// 等待启动完成
|
||
|
time.Sleep(time.Second)
|
||
|
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("/none-exist"), "Not Found")
|
||
|
})
|
||
|
gtest.Case(t, func() {
|
||
|
client := ghttp.NewClient()
|
||
|
client.SetPrefix(fmt.Sprintf("http://localhost:%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")
|
||
|
})
|
||
|
gtest.Case(t, func() {
|
||
|
client := ghttp.NewClient()
|
||
|
client.SetPrefix(fmt.Sprintf("http://local:%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_DomainObjectMethod(t *testing.T) {
|
||
|
p := ports.PopRand()
|
||
|
s := g.Server(p)
|
||
|
s.Domain("localhost, local").BindObjectMethod("/object-info", new(DomainObject), "Info")
|
||
|
s.SetPort(p)
|
||
|
s.SetDumpRouteMap(false)
|
||
|
s.Start()
|
||
|
defer s.Shutdown()
|
||
|
|
||
|
// 等待启动完成
|
||
|
time.Sleep(time.Second)
|
||
|
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"), "Not Found")
|
||
|
gtest.Assert(client.GetContent("/none-exist"), "Not Found")
|
||
|
})
|
||
|
gtest.Case(t, func() {
|
||
|
client := ghttp.NewClient()
|
||
|
client.SetPrefix(fmt.Sprintf("http://localhost:%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")
|
||
|
})
|
||
|
gtest.Case(t, func() {
|
||
|
client := ghttp.NewClient()
|
||
|
client.SetPrefix(fmt.Sprintf("http://local:%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")
|
||
|
})
|
||
|
}
|