Files
gf/net/ghttp/ghttp_z_unit_test.go

77 lines
1.8 KiB
Go
Raw Permalink 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 (
2021-11-17 23:20:58 +08:00
"context"
"fmt"
"net/http"
"testing"
"time"
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/net/ghttp"
2021-11-17 23:20:58 +08:00
"github.com/gogf/gf/v2/os/genv"
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/test/gtest"
"github.com/gogf/gf/v2/util/guid"
)
2021-11-17 23:20:58 +08:00
var (
ctx = context.TODO()
2021-11-17 23:20:58 +08:00
)
func init() {
genv.Set("UNDER_TEST", "1")
}
func Test_GetUrl(t *testing.T) {
s := g.Server(guid.S())
s.BindHandler("/url", func(r *ghttp.Request) {
r.Response.Write(r.GetUrl())
})
s.SetDumpRouterMap(false)
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) {
prefix := fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort())
2020-11-25 16:40:45 +08:00
client := g.Client()
client.SetBrowserMode(true)
client.SetPrefix(prefix)
t.Assert(client.GetContent(ctx, "/url"), prefix+"/url")
})
}
func Test_XUrlPath(t *testing.T) {
s := g.Server(guid.S())
s.BindHandler("/test1", func(r *ghttp.Request) {
r.Response.Write(`test1`)
})
s.BindHandler("/test2", func(r *ghttp.Request) {
r.Response.Write(`test2`)
})
s.SetHandler(func(w http.ResponseWriter, r *http.Request) {
r.Header.Set(ghttp.HeaderXUrlPath, "/test2")
s.ServeHTTP(w, r)
})
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
c := g.Client()
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
t.Assert(c.GetContent(ctx, "/"), "test2")
t.Assert(c.GetContent(ctx, "/test/test"), "test2")
t.Assert(c.GetContent(ctx, "/test1"), "test2")
})
}