1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

fix: #3362 IsEmpty panics when some interface implement panics with nil receiver (#3367)

This commit is contained in:
John Guo 2024-03-20 19:52:12 +08:00 committed by GitHub
parent cade0775e8
commit b3f48212f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 46 additions and 3 deletions

View File

@ -97,6 +97,11 @@ func IsEmpty(value interface{}, traceSource ...bool) bool {
if v, ok := value.(reflect.Value); ok {
rv = v
} else {
rv = reflect.ValueOf(value)
if IsNil(rv) {
return true
}
// =========================
// Common interfaces checks.
// =========================
@ -124,8 +129,6 @@ func IsEmpty(value interface{}, traceSource ...bool) bool {
}
return len(f.MapStrAny()) == 0
}
rv = reflect.ValueOf(value)
}
switch rv.Kind() {
@ -188,9 +191,11 @@ func IsEmpty(value interface{}, traceSource ...bool) bool {
case reflect.Invalid:
return true
}
}
default:
return false
}
}
}
// IsNil checks whether given `value` is nil, especially for interface{} type value.
@ -230,6 +235,9 @@ func IsNil(value interface{}, traceSource ...bool) bool {
} else {
return !rv.IsValid() || rv.IsNil()
}
default:
return false
}
return false
}

View File

@ -8,7 +8,9 @@ package empty_test
import (
"testing"
"time"
"github.com/gogf/gf/v2/container/gvar"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/internal/empty"
"github.com/gogf/gf/v2/test/gtest"
@ -128,3 +130,36 @@ func TestIsNil(t *testing.T) {
t.Assert(empty.IsNil(&i, true), true)
})
}
type Issue3362St struct {
time.Time
}
func Test_Issue3362(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
type A struct {
Issue3362 *Issue3362St `json:"issue,omitempty"`
}
m := gvar.New(
&A{},
).Map(
gvar.MapOption{
OmitEmpty: true,
},
)
t.Assert(m, nil)
})
gtest.C(t, func(t *gtest.T) {
var i int
t.Assert(empty.IsNil(i), false)
})
gtest.C(t, func(t *gtest.T) {
var i *int
t.Assert(empty.IsNil(i), true)
})
gtest.C(t, func(t *gtest.T) {
var i *int
t.Assert(empty.IsNil(&i), false)
t.Assert(empty.IsNil(&i, true), true)
})
}