mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 11:18:02 +08:00
132 lines
3.9 KiB
Go
132 lines
3.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.
|
|
|
|
package glog
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
"github.com/gogf/gf/v2/text/gstr"
|
|
)
|
|
|
|
var (
|
|
ctx = context.TODO()
|
|
)
|
|
|
|
func Test_Print(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
w := bytes.NewBuffer(nil)
|
|
l := NewWithWriter(w)
|
|
l.Print(ctx, 1, 2, 3)
|
|
l.Printf(ctx, "%d %d %d", 1, 2, 3)
|
|
t.Assert(gstr.Count(w.String(), "["), 0)
|
|
t.Assert(gstr.Count(w.String(), "1 2 3"), 2)
|
|
})
|
|
}
|
|
|
|
func Test_Debug(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
w := bytes.NewBuffer(nil)
|
|
l := NewWithWriter(w)
|
|
l.Debug(ctx, 1, 2, 3)
|
|
l.Debugf(ctx, "%d %d %d", 1, 2, 3)
|
|
t.Assert(gstr.Count(w.String(), defaultLevelPrefixes[LEVEL_DEBU]), 2)
|
|
t.Assert(gstr.Count(w.String(), "1 2 3"), 2)
|
|
})
|
|
}
|
|
|
|
func Test_Info(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
w := bytes.NewBuffer(nil)
|
|
l := NewWithWriter(w)
|
|
l.Info(ctx, 1, 2, 3)
|
|
l.Infof(ctx, "%d %d %d", 1, 2, 3)
|
|
t.Assert(gstr.Count(w.String(), defaultLevelPrefixes[LEVEL_INFO]), 2)
|
|
t.Assert(gstr.Count(w.String(), "1 2 3"), 2)
|
|
})
|
|
}
|
|
|
|
func Test_Notice(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
w := bytes.NewBuffer(nil)
|
|
l := NewWithWriter(w)
|
|
l.Notice(ctx, 1, 2, 3)
|
|
l.Noticef(ctx, "%d %d %d", 1, 2, 3)
|
|
t.Assert(gstr.Count(w.String(), defaultLevelPrefixes[LEVEL_NOTI]), 2)
|
|
t.Assert(gstr.Count(w.String(), "1 2 3"), 2)
|
|
})
|
|
}
|
|
|
|
func Test_Warning(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
w := bytes.NewBuffer(nil)
|
|
l := NewWithWriter(w)
|
|
l.Warning(ctx, 1, 2, 3)
|
|
l.Warningf(ctx, "%d %d %d", 1, 2, 3)
|
|
t.Assert(gstr.Count(w.String(), defaultLevelPrefixes[LEVEL_WARN]), 2)
|
|
t.Assert(gstr.Count(w.String(), "1 2 3"), 2)
|
|
})
|
|
}
|
|
|
|
func Test_Error(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
w := bytes.NewBuffer(nil)
|
|
l := NewWithWriter(w)
|
|
l.Error(ctx, 1, 2, 3)
|
|
l.Errorf(ctx, "%d %d %d", 1, 2, 3)
|
|
t.Assert(gstr.Count(w.String(), defaultLevelPrefixes[LEVEL_ERRO]), 2)
|
|
t.Assert(gstr.Count(w.String(), "1 2 3"), 2)
|
|
})
|
|
}
|
|
|
|
func Test_LevelPrefix(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
l := New()
|
|
t.Assert(l.GetLevelPrefix(LEVEL_DEBU), defaultLevelPrefixes[LEVEL_DEBU])
|
|
t.Assert(l.GetLevelPrefix(LEVEL_INFO), defaultLevelPrefixes[LEVEL_INFO])
|
|
t.Assert(l.GetLevelPrefix(LEVEL_NOTI), defaultLevelPrefixes[LEVEL_NOTI])
|
|
t.Assert(l.GetLevelPrefix(LEVEL_WARN), defaultLevelPrefixes[LEVEL_WARN])
|
|
t.Assert(l.GetLevelPrefix(LEVEL_ERRO), defaultLevelPrefixes[LEVEL_ERRO])
|
|
t.Assert(l.GetLevelPrefix(LEVEL_CRIT), defaultLevelPrefixes[LEVEL_CRIT])
|
|
l.SetLevelPrefix(LEVEL_DEBU, "debug")
|
|
t.Assert(l.GetLevelPrefix(LEVEL_DEBU), "debug")
|
|
l.SetLevelPrefixes(map[int]string{
|
|
LEVEL_CRIT: "critical",
|
|
})
|
|
t.Assert(l.GetLevelPrefix(LEVEL_DEBU), "debug")
|
|
t.Assert(l.GetLevelPrefix(LEVEL_INFO), defaultLevelPrefixes[LEVEL_INFO])
|
|
t.Assert(l.GetLevelPrefix(LEVEL_NOTI), defaultLevelPrefixes[LEVEL_NOTI])
|
|
t.Assert(l.GetLevelPrefix(LEVEL_WARN), defaultLevelPrefixes[LEVEL_WARN])
|
|
t.Assert(l.GetLevelPrefix(LEVEL_ERRO), defaultLevelPrefixes[LEVEL_ERRO])
|
|
t.Assert(l.GetLevelPrefix(LEVEL_CRIT), "critical")
|
|
})
|
|
gtest.C(t, func(t *gtest.T) {
|
|
buffer := bytes.NewBuffer(nil)
|
|
l := New()
|
|
l.SetWriter(buffer)
|
|
l.Debug(ctx, "test1")
|
|
t.Assert(gstr.Contains(buffer.String(), defaultLevelPrefixes[LEVEL_DEBU]), true)
|
|
|
|
buffer.Reset()
|
|
|
|
l.SetLevelPrefix(LEVEL_DEBU, "debug")
|
|
l.Debug(ctx, "test2")
|
|
t.Assert(gstr.Contains(buffer.String(), defaultLevelPrefixes[LEVEL_DEBU]), false)
|
|
t.Assert(gstr.Contains(buffer.String(), "debug"), true)
|
|
|
|
buffer.Reset()
|
|
l.SetLevelPrefixes(map[int]string{
|
|
LEVEL_ERRO: "error",
|
|
})
|
|
l.Error(ctx, "test3")
|
|
t.Assert(gstr.Contains(buffer.String(), defaultLevelPrefixes[LEVEL_ERRO]), false)
|
|
t.Assert(gstr.Contains(buffer.String(), "error"), true)
|
|
})
|
|
}
|