79 lines
2.2 KiB
Go
79 lines
2.2 KiB
Go
package zerolog
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/rs/zerolog"
|
|
"github.com/unistack-org/micro/v3/logger"
|
|
)
|
|
|
|
func TestName(t *testing.T) {
|
|
l := NewLogger()
|
|
l.Init()
|
|
if l.String() != "zerolog" {
|
|
t.Errorf("error: name expected 'zerolog' actual: %s", l.String())
|
|
}
|
|
|
|
t.Logf("testing logger name: %s", l.String())
|
|
}
|
|
|
|
func TestWithOutput(t *testing.T) {
|
|
logger.DefaultLogger = NewLogger(logger.WithOutput(os.Stdout))
|
|
logger.DefaultLogger.Init()
|
|
logger.Infof(context.TODO(), "testing: %s", "WithOutput")
|
|
}
|
|
|
|
func TestSetLevel(t *testing.T) {
|
|
logger.DefaultLogger = NewLogger()
|
|
logger.Init(logger.WithLevel(logger.DebugLevel))
|
|
logger.Debugf(context.TODO(), "test show debug: %s", "debug msg")
|
|
|
|
logger.Init(logger.WithLevel(logger.InfoLevel))
|
|
logger.Debugf(context.TODO(), "test non-show debug: %s", "debug msg")
|
|
}
|
|
|
|
func TestWithReportCaller(t *testing.T) {
|
|
logger.DefaultLogger = NewLogger(ReportCaller())
|
|
logger.DefaultLogger.Init()
|
|
logger.Infof(context.TODO(), "testing: %s", "WithReportCaller")
|
|
}
|
|
|
|
func TestWithOut(t *testing.T) {
|
|
logger.DefaultLogger = NewLogger(logger.WithOutput(os.Stdout))
|
|
logger.DefaultLogger.Init()
|
|
logger.Infof(context.TODO(), "testing: %s", "WithOut")
|
|
}
|
|
|
|
func TestWithDevelopmentMode(t *testing.T) {
|
|
logger.DefaultLogger = NewLogger(WithDevelopmentMode(), WithTimeFormat(time.Kitchen))
|
|
logger.DefaultLogger.Init()
|
|
logger.Infof(context.TODO(), "testing: %s", "DevelopmentMode")
|
|
}
|
|
|
|
func TestWithFields(t *testing.T) {
|
|
logger.DefaultLogger = NewLogger()
|
|
logger.DefaultLogger.Init()
|
|
logger.Fields("sumo", "demo", "human", true, "age", 99).Infof(context.TODO(), "testing: %s", "WithFields")
|
|
}
|
|
|
|
func TestWithError(t *testing.T) {
|
|
logger.DefaultLogger = NewLogger()
|
|
logger.DefaultLogger.Init()
|
|
logger.Fields("error", errors.New("I am Error")).Errorf(context.TODO(), "testing: %s", "WithError")
|
|
}
|
|
|
|
func TestWithHooks(t *testing.T) {
|
|
simpleHook := zerolog.HookFunc(func(e *zerolog.Event, level zerolog.Level, msg string) {
|
|
e.Bool("has_level", level != zerolog.NoLevel)
|
|
e.Str("test", "logged")
|
|
})
|
|
|
|
logger.DefaultLogger = NewLogger(WithHooks([]zerolog.Hook{simpleHook}))
|
|
logger.DefaultLogger.Init()
|
|
logger.Infof(context.TODO(), "testing: %s", "WithHooks")
|
|
}
|