gf/util/gconv/gconv_z_unit_slice_test.go
2022-03-10 11:36:40 +08:00

177 lines
4.2 KiB
Go

// 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 gconv_test
import (
"testing"
"github.com/gogf/gf/v2/container/gvar"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/test/gtest"
"github.com/gogf/gf/v2/util/gconv"
)
func Test_Slice(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
value := 123.456
t.AssertEQ(gconv.Bytes("123"), []byte("123"))
t.AssertEQ(gconv.Bytes([]interface{}{1}), []byte{1})
t.AssertEQ(gconv.Bytes([]interface{}{300}), []byte("[300]"))
t.AssertEQ(gconv.Strings(value), []string{"123.456"})
t.AssertEQ(gconv.Ints(value), []int{123})
t.AssertEQ(gconv.Floats(value), []float64{123.456})
t.AssertEQ(gconv.Interfaces(value), []interface{}{123.456})
})
gtest.C(t, func(t *gtest.T) {
s := []*gvar.Var{
gvar.New(1),
gvar.New(2),
}
t.AssertEQ(gconv.SliceInt64(s), []int64{1, 2})
})
}
func Test_Slice_Ints(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Ints(nil), nil)
t.AssertEQ(gconv.Ints("[26, 27]"), []int{26, 27})
t.AssertEQ(gconv.Ints(" [26, 27] "), []int{26, 27})
})
}
func Test_Slice_Uint64s(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Uint64s(nil), nil)
t.AssertEQ(gconv.Uint64s("[26, 27]"), []uint64{26, 27})
t.AssertEQ(gconv.Uint64s(" [26, 27] "), []uint64{26, 27})
})
}
func Test_Slice_Empty(t *testing.T) {
// Int.
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Ints(""), []int{})
t.Assert(gconv.Ints(nil), nil)
})
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Int32s(""), []int32{})
t.Assert(gconv.Int32s(nil), nil)
})
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Int64s(""), []int64{})
t.Assert(gconv.Int64s(nil), nil)
})
// Uint.
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Uints(""), []uint{})
t.Assert(gconv.Uints(nil), nil)
})
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Uint32s(""), []uint32{})
t.Assert(gconv.Uint32s(nil), nil)
})
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Uint64s(""), []uint64{})
t.Assert(gconv.Uint64s(nil), nil)
})
// Float.
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Floats(""), []float64{})
t.Assert(gconv.Floats(nil), nil)
})
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Float32s(""), []float32{})
t.Assert(gconv.Float32s(nil), nil)
})
gtest.C(t, func(t *gtest.T) {
t.AssertEQ(gconv.Float64s(""), []float64{})
t.Assert(gconv.Float64s(nil), nil)
})
}
func Test_Strings(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
array := []*g.Var{
g.NewVar(1),
g.NewVar(2),
g.NewVar(3),
}
t.AssertEQ(gconv.Strings(array), []string{"1", "2", "3"})
})
}
func Test_Slice_Interfaces(t *testing.T) {
// map
gtest.C(t, func(t *gtest.T) {
array := gconv.Interfaces(g.Map{
"id": 1,
"name": "john",
})
t.Assert(len(array), 1)
t.Assert(array[0].(g.Map)["id"], 1)
t.Assert(array[0].(g.Map)["name"], "john")
})
// struct
gtest.C(t, func(t *gtest.T) {
type A struct {
Id int `json:"id"`
Name string
}
array := gconv.Interfaces(&A{
Id: 1,
Name: "john",
})
t.Assert(len(array), 1)
t.Assert(array[0].(*A).Id, 1)
t.Assert(array[0].(*A).Name, "john")
})
}
func Test_Slice_PrivateAttribute(t *testing.T) {
type User struct {
Id int `json:"id"`
name string `json:"name"`
}
gtest.C(t, func(t *gtest.T) {
user := &User{1, "john"}
array := gconv.Interfaces(user)
t.Assert(len(array), 1)
t.Assert(array[0].(*User).Id, 1)
t.Assert(array[0].(*User).name, "john")
})
}
func Test_Slice_Structs(t *testing.T) {
type Base struct {
Age int
}
type User struct {
Id int
Name string
Base
}
gtest.C(t, func(t *gtest.T) {
users := make([]User, 0)
params := []g.Map{
{"id": 1, "name": "john", "age": 18},
{"id": 2, "name": "smith", "age": 20},
}
err := gconv.Structs(params, &users)
t.AssertNil(err)
t.Assert(len(users), 2)
t.Assert(users[0].Id, params[0]["id"])
t.Assert(users[0].Name, params[0]["name"])
t.Assert(users[0].Age, 18)
t.Assert(users[1].Id, params[1]["id"])
t.Assert(users[1].Name, params[1]["name"])
t.Assert(users[1].Age, 20)
})
}