mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
parent
4f4d2c2f8e
commit
42e3c5f39a
@ -53,6 +53,21 @@ func Test_New(t *testing.T) {
|
||||
t.Assert(j.Get("k2"), "v2")
|
||||
t.Assert(j.Get("k3"), nil)
|
||||
})
|
||||
// https://github.com/gogf/gf/issues/3253
|
||||
gtest.C(t, func(t *gtest.T) {
|
||||
type TestStruct struct {
|
||||
Result []map[string]string `json:"result"`
|
||||
}
|
||||
ts := &TestStruct{
|
||||
Result: []map[string]string{
|
||||
{
|
||||
"Name": "gf",
|
||||
"Role": "",
|
||||
},
|
||||
},
|
||||
}
|
||||
gjson.New(ts)
|
||||
})
|
||||
}
|
||||
|
||||
func Test_Valid(t *testing.T) {
|
||||
|
26
internal/utils/utils_reflect.go
Normal file
26
internal/utils/utils_reflect.go
Normal file
@ -0,0 +1,26 @@
|
||||
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
||||
//
|
||||
// This Source Code Form is subject to the terms of the MIT License.
|
||||
// If a copy of the MIT was not distributed with this file,
|
||||
// You can obtain one at https://github.com/gogf/gf.
|
||||
|
||||
package utils
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
)
|
||||
|
||||
// CanCallIsNil Can reflect.Value call reflect.Value.IsNil.
|
||||
// It can avoid reflect.Value.IsNil panics.
|
||||
func CanCallIsNil(v interface{}) bool {
|
||||
rv, ok := v.(reflect.Value)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
switch rv.Kind() {
|
||||
case reflect.Interface, reflect.Chan, reflect.Func, reflect.Map, reflect.Ptr, reflect.Slice, reflect.UnsafePointer:
|
||||
return true
|
||||
default:
|
||||
return false
|
||||
}
|
||||
}
|
@ -8,7 +8,9 @@ package utils_test
|
||||
|
||||
import (
|
||||
"io"
|
||||
"reflect"
|
||||
"testing"
|
||||
"unsafe"
|
||||
|
||||
"github.com/gogf/gf/v2/internal/utils"
|
||||
"github.com/gogf/gf/v2/test/gtest"
|
||||
@ -71,3 +73,25 @@ func Test_RemoveSymbols(t *testing.T) {
|
||||
t.Assert(utils.RemoveSymbols(`-a-b我._a c1!@#$%^&*是()_+:帅";'.,哥'01`), `ab我ac1是帅哥01`)
|
||||
})
|
||||
}
|
||||
|
||||
func Test_CanCallIsNil(t *testing.T) {
|
||||
gtest.C(t, func(t *gtest.T) {
|
||||
var (
|
||||
iValue = "gf"
|
||||
iChan = make(chan struct{})
|
||||
iFunc = func() {}
|
||||
iMap = map[string]struct{}{}
|
||||
iPtr = &iValue
|
||||
iSlice = make([]struct{}, 0)
|
||||
iUnsafePointer = unsafe.Pointer(&iValue)
|
||||
)
|
||||
|
||||
t.Assert(utils.CanCallIsNil(reflect.ValueOf(iValue)), false)
|
||||
t.Assert(utils.CanCallIsNil(reflect.ValueOf(iChan)), true)
|
||||
t.Assert(utils.CanCallIsNil(reflect.ValueOf(iFunc)), true)
|
||||
t.Assert(utils.CanCallIsNil(reflect.ValueOf(iMap)), true)
|
||||
t.Assert(utils.CanCallIsNil(reflect.ValueOf(iPtr)), true)
|
||||
t.Assert(utils.CanCallIsNil(reflect.ValueOf(iSlice)), true)
|
||||
t.Assert(utils.CanCallIsNil(reflect.ValueOf(iUnsafePointer)), true)
|
||||
})
|
||||
}
|
||||
|
@ -303,7 +303,7 @@ func doMapConvertForMapOrStructValue(in doMapConvertForMapOrStructValueInput) in
|
||||
)
|
||||
switch {
|
||||
case mapKeyValue.IsZero():
|
||||
if mapKeyValue.IsNil() {
|
||||
if utils.CanCallIsNil(mapKeyValue) && mapKeyValue.IsNil() {
|
||||
// quick check for nil value.
|
||||
mapValue = nil
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user