2021-01-17 21:46:25 +08:00
|
|
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
2019-03-06 15:21:00 +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
|
|
|
|
|
2019-03-08 17:31:30 +08:00
|
|
|
import (
|
2019-06-19 09:06:52 +08:00
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
"time"
|
2019-07-29 21:01:19 +08:00
|
|
|
|
2021-10-11 21:41:56 +08:00
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
|
|
"github.com/gogf/gf/v2/test/gtest"
|
2022-02-22 14:12:09 +08:00
|
|
|
"github.com/gogf/gf/v2/util/guid"
|
2019-03-08 17:31:30 +08:00
|
|
|
)
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
type NamesObject struct{}
|
2019-03-08 17:31:30 +08:00
|
|
|
|
|
|
|
func (o *NamesObject) ShowName(r *ghttp.Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
r.Response.Write("Object Show Name")
|
2019-03-08 17:31:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_NameToUri_FullName(t *testing.T) {
|
2022-02-22 14:12:09 +08:00
|
|
|
s := g.Server(guid.S())
|
2021-09-27 22:47:39 +08:00
|
|
|
s.SetNameToUriType(ghttp.UriTypeFullName)
|
2019-06-19 09:06:52 +08:00
|
|
|
s.BindObject("/{.struct}/{.method}", new(NamesObject))
|
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-03-08 17:31:30 +08:00
|
|
|
|
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.SetBrowserMode(true)
|
2022-02-22 14:12:09 +08:00
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
|
2021-09-30 14:06:46 +08:00
|
|
|
t.Assert(client.GetContent(ctx, "/"), "Not Found")
|
|
|
|
t.Assert(client.GetContent(ctx, "/NamesObject"), "Not Found")
|
|
|
|
t.Assert(client.GetContent(ctx, "/NamesObject/ShowName"), "Object Show Name")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-03-08 17:31:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_NameToUri_AllLower(t *testing.T) {
|
2022-02-22 14:12:09 +08:00
|
|
|
s := g.Server(guid.S())
|
2021-09-27 22:47:39 +08:00
|
|
|
s.SetNameToUriType(ghttp.UriTypeAllLower)
|
2019-06-19 09:06:52 +08:00
|
|
|
s.BindObject("/{.struct}/{.method}", new(NamesObject))
|
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-03-08 17:31:30 +08:00
|
|
|
|
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.SetBrowserMode(true)
|
2022-02-22 14:12:09 +08:00
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
|
2021-09-30 14:06:46 +08:00
|
|
|
t.Assert(client.GetContent(ctx, "/"), "Not Found")
|
|
|
|
t.Assert(client.GetContent(ctx, "/NamesObject"), "Not Found")
|
|
|
|
t.Assert(client.GetContent(ctx, "/namesobject/showname"), "Object Show Name")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-03-08 17:31:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_NameToUri_Camel(t *testing.T) {
|
2022-02-22 14:12:09 +08:00
|
|
|
s := g.Server(guid.S())
|
2021-09-27 22:47:39 +08:00
|
|
|
s.SetNameToUriType(ghttp.UriTypeCamel)
|
2019-06-19 09:06:52 +08:00
|
|
|
s.BindObject("/{.struct}/{.method}", new(NamesObject))
|
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-03-08 17:31:30 +08:00
|
|
|
|
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.SetBrowserMode(true)
|
2022-02-22 14:12:09 +08:00
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
|
2021-09-30 14:06:46 +08:00
|
|
|
t.Assert(client.GetContent(ctx, "/"), "Not Found")
|
|
|
|
t.Assert(client.GetContent(ctx, "/NamesObject"), "Not Found")
|
|
|
|
t.Assert(client.GetContent(ctx, "/namesObject/showName"), "Object Show Name")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-03-08 17:31:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_NameToUri_Default(t *testing.T) {
|
2022-02-22 14:12:09 +08:00
|
|
|
s := g.Server(guid.S())
|
2021-07-13 23:01:31 +08:00
|
|
|
s.SetNameToUriType(ghttp.UriTypeDefault)
|
2019-06-19 09:06:52 +08:00
|
|
|
s.BindObject("/{.struct}/{.method}", new(NamesObject))
|
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-03-08 17:31:30 +08:00
|
|
|
|
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.SetBrowserMode(true)
|
2022-02-22 14:12:09 +08:00
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
|
2021-09-30 14:06:46 +08:00
|
|
|
t.Assert(client.GetContent(ctx, "/"), "Not Found")
|
|
|
|
t.Assert(client.GetContent(ctx, "/NamesObject"), "Not Found")
|
|
|
|
t.Assert(client.GetContent(ctx, "/names-object/show-name"), "Object Show Name")
|
2019-06-19 09:06:52 +08:00
|
|
|
})
|
2019-03-08 17:31:30 +08:00
|
|
|
}
|