加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
util_test.go 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
Oscar van Leusen 提交于 2022-08-26 23:29 . add golangci-lint linter
package validate
import (
"reflect"
"testing"
"github.com/gookit/goutil/dump"
"github.com/stretchr/testify/assert"
)
func TestValueLen(t *testing.T) {
is := assert.New(t)
tests := []interface{}{
"abc",
123,
int8(123), int16(123), int32(123), int64(123),
uint8(123), uint16(123), uint32(123), uint64(123),
float32(123), float64(123),
[]int{1, 2, 3}, []string{"a", "b", "c"},
map[string]string{"k0": "v0", "k1": "v1", "k2": "v2"},
}
for _, sample := range tests {
is.Equal(3, ValueLen(reflect.ValueOf(sample)))
}
ptrArr := &[]string{"a", "b"}
is.Equal(2, ValueLen(reflect.ValueOf(ptrArr)))
is.Equal(4, ValueLen(reflect.ValueOf("ab你好")))
is.Equal(-1, ValueLen(reflect.ValueOf(nil)))
}
func TestCallByValue(t *testing.T) {
is := assert.New(t)
is.Panics(func() {
CallByValue(reflect.ValueOf("invalid"))
})
is.Panics(func() {
CallByValue(reflect.ValueOf(IsJSON), "age0", "age1")
})
rs := CallByValue(reflect.ValueOf(IsNumeric), "123")
is.Len(rs, 1)
is.Equal(true, rs[0].Interface())
}
func TestCallByValue_nil_arg(t *testing.T) {
fn1 := func(in interface{}) interface{} {
_, ok := in.(NilObject)
assert.True(t, IsNilObj(in))
dump.P(in, ok)
return in
}
// runtime error: invalid memory address or nil pointer dereference
// typ := reflect.TypeOf(interface{}(nil))
// typ.Kind()
nilV := 2
dump.P(
reflect.ValueOf(nilV).Kind().String(),
// reflect.New(reflect.Interface).Kind(),
)
rs := CallByValue(reflect.ValueOf(fn1), nil)
dump.P(rs[0].CanInterface(), rs[0].Interface())
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化