milvus/pkg/util/logutil/logutil_test.go
jaime c9d0c157ec
Move some modules from internal to public package (#22572)
Signed-off-by: jaime <yun.zhang@zilliz.com>
2023-04-06 19:14:32 +08:00

32 lines
732 B
Go

package logutil
import (
"testing"
"github.com/stretchr/testify/assert"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"github.com/milvus-io/milvus/pkg/log"
)
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")
}