mirror of
https://gitee.com/johng/gf.git
synced 2024-11-29 18:57:44 +08:00
52 lines
1.3 KiB
Go
52 lines
1.3 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 gins_test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gogf/gf/v2/frame/gins"
|
|
"github.com/gogf/gf/v2/internal/instance"
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
"github.com/gogf/gf/v2/os/gcfg"
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
"github.com/gogf/gf/v2/os/gfile"
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
)
|
|
|
|
func Test_Server(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
var (
|
|
path = gcfg.DefaultConfigFileName
|
|
serverConfigContent = gtest.DataContent("server", "config.yaml")
|
|
err = gfile.PutContents(path, serverConfigContent)
|
|
)
|
|
t.AssertNil(err)
|
|
defer gfile.Remove(path)
|
|
|
|
instance.Clear()
|
|
defer instance.Clear()
|
|
|
|
s := gins.Server("tempByInstanceName")
|
|
s.BindHandler("/", func(r *ghttp.Request) {
|
|
r.Response.Write("hello")
|
|
})
|
|
s.SetDumpRouterMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
prefix := fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort())
|
|
client := gins.HttpClient()
|
|
client.SetPrefix(prefix)
|
|
t.Assert(client.GetContent(gctx.New(), "/"), "hello")
|
|
})
|
|
}
|