Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

field/error: Handle panic in Error() #867

Merged
merged 4 commits into from Nov 24, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions error.go
Expand Up @@ -21,9 +21,8 @@
package zap

import (
"sync"

"go.uber.org/zap/zapcore"
"sync"
)
abhinav marked this conversation as resolved.
Show resolved Hide resolved

var _errArrayElemPool = sync.Pool{New: func() interface{} {
Expand Down
23 changes: 20 additions & 3 deletions zapcore/error.go
Expand Up @@ -22,6 +22,7 @@ package zapcore

import (
"fmt"
"reflect"
"sync"
)

Expand All @@ -42,13 +43,29 @@ import (
// ...
// ],
// }
func encodeError(key string, err error, enc ObjectEncoder) error {
func encodeError(key string, err error, enc ObjectEncoder) (retErr error) {
// Try to capture panics (from nil references or otherwise) when calling
// the Error() method
defer func() {
if rerr := recover(); rerr != nil {
// If it's a nil pointer, just say "<nil>". The likeliest causes are a
// Stringer that fails to guard against nil or a nil pointer for a
abhinav marked this conversation as resolved.
Show resolved Hide resolved
// value receiver, and in either case, "<nil>" is a nice result.
if v := reflect.ValueOf(err); v.Kind() == reflect.Ptr && v.IsNil() {
enc.AddString(key, "<nil>")
return
}

retErr = fmt.Errorf("PANIC=%v", rerr)
}
}()

basic := err.Error()
enc.AddString(key, basic)

switch e := err.(type) {
case errorGroup:
return enc.AddArray(key+"Causes", errArray(e.Errors()))
retErr = enc.AddArray(key+"Causes", errArray(e.Errors()))
abhinav marked this conversation as resolved.
Show resolved Hide resolved
case fmt.Formatter:
verbose := fmt.Sprintf("%+v", e)
if verbose != basic {
Expand All @@ -57,7 +74,7 @@ func encodeError(key string, err error, enc ObjectEncoder) error {
enc.AddString(key+"Verbose", verbose)
}
}
return nil
return retErr
abhinav marked this conversation as resolved.
Show resolved Hide resolved
}

type errorGroup interface {
Expand Down
6 changes: 3 additions & 3 deletions zapcore/field.go
Expand Up @@ -167,7 +167,7 @@ func (f Field) AddTo(enc ObjectEncoder) {
case StringerType:
err = encodeStringer(f.Key, f.Interface, enc)
case ErrorType:
encodeError(f.Key, f.Interface.(error), enc)
err = encodeError(f.Key, f.Interface.(error), enc)
case SkipType:
break
default:
Expand Down Expand Up @@ -209,7 +209,7 @@ func encodeStringer(key string, stringer interface{}, enc ObjectEncoder) (retErr
// Try to capture panics (from nil references or otherwise) when calling
// the String() method, similar to https://golang.org/src/fmt/print.go#L540
defer func() {
if err := recover(); err != nil {
if rerr := recover(); rerr != nil {
abhinav marked this conversation as resolved.
Show resolved Hide resolved
// If it's a nil pointer, just say "<nil>". The likeliest causes are a
// Stringer that fails to guard against nil or a nil pointer for a
// value receiver, and in either case, "<nil>" is a nice result.
Expand All @@ -218,7 +218,7 @@ func encodeStringer(key string, stringer interface{}, enc ObjectEncoder) (retErr
return
}

retErr = fmt.Errorf("PANIC=%v", err)
retErr = fmt.Errorf("PANIC=%v", rerr)
abhinav marked this conversation as resolved.
Show resolved Hide resolved
}
}()

Expand Down
15 changes: 15 additions & 0 deletions zapcore/field_test.go
Expand Up @@ -80,6 +80,19 @@ func (o *obj) String() string {
return "obj"
}

type errObj struct {
kind int
errMsg string
}

func (eobj *errObj) Error() string {
if eobj.kind == 1 {
panic("panic in Error() method")
} else {
return eobj.errMsg
}
}

func TestUnknownFieldType(t *testing.T) {
unknown := Field{Key: "k", String: "foo"}
assert.Equal(t, UnknownType, unknown.Type, "Expected zero value of FieldType to be UnknownType.")
Expand All @@ -102,6 +115,7 @@ func TestFieldAddingError(t *testing.T) {
{t: StringerType, iface: &obj{1}, want: empty, err: "PANIC=panic with string"},
{t: StringerType, iface: &obj{2}, want: empty, err: "PANIC=panic with error"},
{t: StringerType, iface: &obj{3}, want: empty, err: "PANIC=<nil>"},
{t: ErrorType, iface: &errObj{kind: 1}, want: empty, err: "PANIC=panic in Error() method"},
}
for _, tt := range tests {
f := Field{Key: "k", Interface: tt.iface, Type: tt.t}
Expand Down Expand Up @@ -150,6 +164,7 @@ func TestFields(t *testing.T) {
{t: SkipType, want: interface{}(nil)},
{t: StringerType, iface: (*url.URL)(nil), want: "<nil>"},
{t: StringerType, iface: (*users)(nil), want: "<nil>"},
{t: ErrorType, iface: (*errObj)(nil), want: "<nil>"},
}

for _, tt := range tests {
Expand Down