Improve one logger_test

pull/40/head
Vinícius Garcia 2023-07-15 13:34:08 -03:00
parent c97a3a6996
commit fc0c52e608
1 changed files with 13 additions and 1 deletions

View File

@ -12,12 +12,24 @@ import (
func TestCtxLog(t *testing.T) {
ctx := context.Background()
t.Run("should not log anything nor panic if logger is nil", func(t *testing.T) {
defer func() {
logPrinter = fmt.Println
}()
t.Run("should not log anything nor panic when the logger is not injected", func(t *testing.T) {
var printedArgs []interface{}
logPrinter = func(args ...interface{}) (n int, err error) {
printedArgs = args
return 0, nil
}
panicPayload := tt.PanicHandler(func() {
ctxLog(ctx, "fakeQuery", []interface{}{}, nil)
})
tt.AssertEqual(t, panicPayload, nil)
tt.AssertEqual(t, printedArgs, []interface{}(nil))
})
}
func TestBuiltinLoggers(t *testing.T) {