mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 12:47:50 +08:00
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
// 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 (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gogf/gf/v2/container/garray"
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
"github.com/gogf/gf/v2/os/genv"
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
)
|
|
|
|
var (
|
|
ctx = context.TODO()
|
|
ports = garray.NewIntArray(true)
|
|
)
|
|
|
|
func init() {
|
|
genv.Set("UNDER_TEST", "1")
|
|
for i := 7000; i <= 8000; i++ {
|
|
ports.Append(i)
|
|
}
|
|
}
|
|
|
|
func Test_GetUrl(t *testing.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
s.BindHandler("/url", func(r *ghttp.Request) {
|
|
r.Response.Write(r.GetUrl())
|
|
})
|
|
s.SetPort(p)
|
|
s.SetDumpRouterMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
gtest.C(t, func(t *gtest.T) {
|
|
prefix := fmt.Sprintf("http://127.0.0.1:%d", p)
|
|
client := g.Client()
|
|
client.SetBrowserMode(true)
|
|
client.SetPrefix(prefix)
|
|
|
|
t.Assert(client.GetContent(ctx, "/url"), prefix+"/url")
|
|
})
|
|
}
|