代码拉取完成,页面将自动刷新
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())
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。