2021-01-17 21:46:25 +08:00
|
|
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
2019-11-27 23:19:07 +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
|
|
|
|
|
|
|
|
import (
|
2021-11-17 23:20:58 +08:00
|
|
|
"context"
|
2019-11-27 23:19:07 +08:00
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2021-11-17 23:20:58 +08:00
|
|
|
"github.com/gogf/gf/v2/container/garray"
|
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"
|
2019-11-27 23:19:07 +08:00
|
|
|
)
|
|
|
|
|
2021-11-17 23:20:58 +08:00
|
|
|
var (
|
|
|
|
ctx = context.TODO()
|
|
|
|
ports = garray.NewIntArray(true)
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
genv.Set("UNDER_TEST", "1")
|
|
|
|
for i := 7000; i <= 8000; i++ {
|
|
|
|
ports.Append(i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-27 23:19:07 +08:00
|
|
|
func Test_GetUrl(t *testing.T) {
|
2020-03-30 20:47:50 +08:00
|
|
|
p, _ := ports.PopRand()
|
2019-11-27 23:19:07 +08:00
|
|
|
s := g.Server(p)
|
|
|
|
s.BindHandler("/url", func(r *ghttp.Request) {
|
|
|
|
r.Response.Write(r.GetUrl())
|
|
|
|
})
|
|
|
|
s.SetPort(p)
|
2019-12-04 13:55:08 +08:00
|
|
|
s.SetDumpRouterMap(false)
|
2019-11-27 23:19:07 +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) {
|
2019-11-27 23:19:07 +08:00
|
|
|
prefix := fmt.Sprintf("http://127.0.0.1:%d", p)
|
2020-11-25 16:40:45 +08:00
|
|
|
client := g.Client()
|
2019-11-27 23:19:07 +08:00
|
|
|
client.SetBrowserMode(true)
|
|
|
|
client.SetPrefix(prefix)
|
|
|
|
|
2021-09-30 14:06:46 +08:00
|
|
|
t.Assert(client.GetContent(ctx, "/url"), prefix+"/url")
|
2019-11-27 23:19:07 +08:00
|
|
|
})
|
|
|
|
}
|