log/log_test.go

44 lines
862 B
Go
Raw Normal View History

2019-11-06 02:11:12 +00:00
package log
import (
2020-12-31 08:21:31 +00:00
"go.uber.org/zap"
2019-11-06 02:11:12 +00:00
"testing"
"time"
2019-11-06 02:11:12 +00:00
)
func TestLog(t *testing.T) {
Debugf("this is %s message", "debug")
Infof("this is %s message", "info")
Errorf("this is %s message", "error")
// Panicf("this is %s message", "panic")
}
func TestLogWithConfig(t *testing.T) {
2020-12-31 08:21:31 +00:00
config := NewLogConfig()
_ = config.Level.Set("d")
config.Name = "main"
//config.Fields = []zap.Field{zap.String("traceid", "12123123123")}
2019-11-06 02:11:12 +00:00
2020-12-31 08:21:31 +00:00
config.Init()
With("foo", "baz")
2019-11-06 02:11:12 +00:00
Debugf("this is %s message", "debug")
2020-12-31 08:21:31 +00:00
config.Init()
With(zap.String("traceid", "12123123123"))
2019-11-06 02:11:12 +00:00
Infof("this is %s message", "info")
2020-12-31 08:21:31 +00:00
//Errorf("this is %s message", "error")
2019-11-06 02:11:12 +00:00
// Panicf("this is %s message", "panic")
}
func TestLogRote(t *testing.T) {
lc := NewLogConfig()
lc.MaxSize = 1
lc.Init()
for {
Infof("this is %s message", "info")
2019-11-08 09:45:09 +00:00
time.Sleep(time.Millisecond * 1)
}
}