gf/util/gutil/gutil_z_unit_struct_test.go
2023-09-12 22:00:35 +08:00

56 lines
1.2 KiB
Go
Executable File

// 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 gutil_test
import (
"testing"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/test/gtest"
"github.com/gogf/gf/v2/util/gutil"
)
func Test_StructToSlice(t *testing.T) {
type A struct {
K1 int
K2 string
}
gtest.C(t, func(t *gtest.T) {
a := &A{
K1: 1,
K2: "v2",
}
s := gutil.StructToSlice(a)
t.Assert(len(s), 4)
t.AssertIN(s[0], g.Slice{"K1", "K2", 1, "v2"})
t.AssertIN(s[1], g.Slice{"K1", "K2", 1, "v2"})
t.AssertIN(s[2], g.Slice{"K1", "K2", 1, "v2"})
t.AssertIN(s[3], g.Slice{"K1", "K2", 1, "v2"})
})
gtest.C(t, func(t *gtest.T) {
s := gutil.StructToSlice(1)
t.Assert(s, nil)
})
}
func Test_FillStructWithDefault(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
type A struct {
V1 int `d:"1.01"`
V2 string `d:"1.01"`
V3 float32 `d:"1.01"`
}
a := A{}
err := gutil.FillStructWithDefault(&a)
t.AssertNil(err)
t.Assert(a.V1, `1`)
t.Assert(a.V2, `1.01`)
t.Assert(a.V3, `1.01`)
})
}