milvus/internal/util/logutil/logutil_test.go
2022-06-24 10:36:15 +08:00

33 lines
738 B
Go

package logutil
import (
"testing"
"github.com/stretchr/testify/assert"
"go.uber.org/zap/zapcore"
"github.com/milvus-io/milvus/internal/log"
"go.uber.org/zap"
)
func TestName(t *testing.T) {
conf := &log.Config{Level: "debug", DisableTimestamp: true}
logger, _, _ := log.InitTestLogger(t, conf, zap.AddCallerSkip(1), zap.Hooks(func(entry zapcore.Entry) error {
assert.Equal(t, "Testing", entry.Message)
return nil
}))
wrapper := &zapWrapper{logger, 0}
wrapper.Info("Testing")
wrapper.Infoln("Testing")
wrapper.Infof("%s", "Testing")
wrapper.Warning("Testing")
wrapper.Warningln("Testing")
wrapper.Warningf("%s", "Testing")
wrapper.Error("Testing")
wrapper.Errorln("Testing")
wrapper.Errorf("%s", "Testing")
}