mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 12:17:53 +08:00
66 lines
1.9 KiB
Go
66 lines
1.9 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.
|
|
|
|
// static service testing.
|
|
|
|
package ghttp_test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
"github.com/gogf/gf/v2/os/gfile"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
"github.com/gogf/gf/v2/text/gstr"
|
|
)
|
|
|
|
func Test_Log(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
logDir := gfile.TempDir(gtime.TimestampNanoStr())
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
s.BindHandler("/hello", func(r *ghttp.Request) {
|
|
r.Response.Write("hello")
|
|
})
|
|
s.BindHandler("/error", func(r *ghttp.Request) {
|
|
panic("custom error")
|
|
})
|
|
s.SetLogPath(logDir)
|
|
s.SetAccessLogEnabled(true)
|
|
s.SetErrorLogEnabled(true)
|
|
s.SetLogStdout(false)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
defer gfile.Remove(logDir)
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := g.Client()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent(ctx, "/hello"), "hello")
|
|
t.Assert(client.GetContent(ctx, "/error"), "custom error")
|
|
|
|
var (
|
|
logPath1 = gfile.Join(logDir, gtime.Now().Format("Y-m-d")+".log")
|
|
content = gfile.GetContents(logPath1)
|
|
)
|
|
t.Assert(gstr.Contains(content, "http server started listening on"), true)
|
|
t.Assert(gstr.Contains(content, "HANDLER"), true)
|
|
|
|
logPath2 := gfile.Join(logDir, "access-"+gtime.Now().Format("Ymd")+".log")
|
|
// fmt.Println(gfile.GetContents(logPath2))
|
|
t.Assert(gstr.Contains(gfile.GetContents(logPath2), " /hello "), true)
|
|
|
|
logPath3 := gfile.Join(logDir, "error-"+gtime.Now().Format("Ymd")+".log")
|
|
// fmt.Println(gfile.GetContents(logPath3))
|
|
t.Assert(gstr.Contains(gfile.GetContents(logPath3), "custom error"), true)
|
|
})
|
|
}
|