2019-02-02 16:18:25 +08:00
|
|
|
|
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
2019-01-14 13:55:07 +08:00
|
|
|
|
//
|
|
|
|
|
// 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,
|
2019-02-02 16:18:25 +08:00
|
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2019-01-14 13:55:07 +08:00
|
|
|
|
|
|
|
|
|
package gconv_test
|
|
|
|
|
|
|
|
|
|
import (
|
2019-02-02 16:18:25 +08:00
|
|
|
|
"github.com/gogf/gf/g"
|
|
|
|
|
"github.com/gogf/gf/g/util/gconv"
|
|
|
|
|
"github.com/gogf/gf/g/test/gtest"
|
2019-01-14 13:55:07 +08:00
|
|
|
|
"testing"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2019-01-15 21:54:34 +08:00
|
|
|
|
func Test_Struct_Basic1(t *testing.T) {
|
2019-01-14 13:55:07 +08:00
|
|
|
|
gtest.Case(t, func() {
|
|
|
|
|
type User struct {
|
|
|
|
|
Uid int
|
|
|
|
|
Name string
|
|
|
|
|
Site_Url string
|
|
|
|
|
NickName string
|
|
|
|
|
Pass1 string `gconv:"password1"`
|
|
|
|
|
Pass2 string `gconv:"password2"`
|
|
|
|
|
}
|
|
|
|
|
user := (*User)(nil)
|
|
|
|
|
// 使用默认映射规则绑定属性值到对象
|
|
|
|
|
user = new(User)
|
|
|
|
|
params1 := g.Map{
|
|
|
|
|
"uid" : 1,
|
|
|
|
|
"Name" : "john",
|
2019-01-30 21:27:03 +08:00
|
|
|
|
"siteurl" : "https://goframe.org",
|
2019-01-14 13:55:07 +08:00
|
|
|
|
"nick_name" : "johng",
|
|
|
|
|
"PASS1" : "123",
|
|
|
|
|
"PASS2" : "456",
|
|
|
|
|
}
|
|
|
|
|
if err := gconv.Struct(params1, user); err != nil {
|
|
|
|
|
gtest.Error(err)
|
|
|
|
|
}
|
|
|
|
|
gtest.Assert(user, &User{
|
|
|
|
|
Uid : 1,
|
|
|
|
|
Name : "john",
|
2019-01-30 21:27:03 +08:00
|
|
|
|
Site_Url : "https://goframe.org",
|
2019-01-14 13:55:07 +08:00
|
|
|
|
NickName : "johng",
|
|
|
|
|
Pass1 : "123",
|
|
|
|
|
Pass2 : "456",
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 使用struct tag映射绑定属性值到对象
|
|
|
|
|
user = new(User)
|
|
|
|
|
params2 := g.Map {
|
|
|
|
|
"uid" : 2,
|
|
|
|
|
"name" : "smith",
|
2019-01-30 21:27:03 +08:00
|
|
|
|
"site-url" : "https://goframe.org",
|
2019-01-14 13:55:07 +08:00
|
|
|
|
"nick name" : "johng",
|
|
|
|
|
"password1" : "111",
|
|
|
|
|
"password2" : "222",
|
|
|
|
|
}
|
|
|
|
|
if err := gconv.Struct(params2, user); err != nil {
|
|
|
|
|
gtest.Error(err)
|
|
|
|
|
}
|
|
|
|
|
gtest.Assert(user, &User{
|
|
|
|
|
Uid : 2,
|
|
|
|
|
Name : "smith",
|
2019-01-30 21:27:03 +08:00
|
|
|
|
Site_Url : "https://goframe.org",
|
2019-01-14 13:55:07 +08:00
|
|
|
|
NickName : "johng",
|
|
|
|
|
Pass1 : "111",
|
|
|
|
|
Pass2 : "222",
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
2019-01-15 21:54:34 +08:00
|
|
|
|
|
|
|
|
|
// 使用默认映射规则绑定属性值到对象
|
|
|
|
|
func Test_Struct_Basic2(t *testing.T) {
|
|
|
|
|
gtest.Case(t, func() {
|
|
|
|
|
type User struct {
|
|
|
|
|
Uid int
|
|
|
|
|
Name string
|
|
|
|
|
SiteUrl string
|
|
|
|
|
Pass1 string
|
|
|
|
|
Pass2 string
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
user := new(User)
|
|
|
|
|
params := g.Map {
|
|
|
|
|
"uid" : 1,
|
|
|
|
|
"Name" : "john",
|
2019-01-30 21:27:03 +08:00
|
|
|
|
"site_url" : "https://goframe.org",
|
2019-01-15 21:54:34 +08:00
|
|
|
|
"PASS1" : "123",
|
|
|
|
|
"PASS2" : "456",
|
|
|
|
|
}
|
|
|
|
|
if err := gconv.Struct(params, user); err != nil {
|
|
|
|
|
gtest.Error(err)
|
|
|
|
|
}
|
|
|
|
|
gtest.Assert(user, &User{
|
|
|
|
|
Uid : 1,
|
|
|
|
|
Name : "john",
|
2019-01-30 21:27:03 +08:00
|
|
|
|
SiteUrl : "https://goframe.org",
|
2019-01-15 21:54:34 +08:00
|
|
|
|
Pass1 : "123",
|
|
|
|
|
Pass2 : "456",
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// slice类型属性的赋值
|
|
|
|
|
func Test_Struct_Attr_Slice(t *testing.T) {
|
|
|
|
|
gtest.Case(t, func() {
|
|
|
|
|
type User struct {
|
|
|
|
|
Scores []int
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user := new(User)
|
|
|
|
|
scores := []interface{}{99, 100, 60, 140}
|
|
|
|
|
|
|
|
|
|
// 通过map映射转换
|
|
|
|
|
if err := gconv.Struct(g.Map{"Scores" : scores}, user); err != nil {
|
|
|
|
|
gtest.Error(err)
|
|
|
|
|
} else {
|
|
|
|
|
gtest.Assert(user, &User{
|
|
|
|
|
Scores : []int{99, 100, 60, 140},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 通过变量映射转换,直接slice赋值
|
|
|
|
|
if err := gconv.Struct(scores, user); err != nil {
|
|
|
|
|
gtest.Error(err)
|
|
|
|
|
} else {
|
|
|
|
|
gtest.Assert(user, &User{
|
|
|
|
|
Scores : []int{99, 100, 60, 140},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 属性为struct对象
|
|
|
|
|
func Test_Struct_Attr_Struct(t *testing.T) {
|
|
|
|
|
gtest.Case(t, func() {
|
|
|
|
|
type Score struct {
|
|
|
|
|
Name string
|
|
|
|
|
Result int
|
|
|
|
|
}
|
|
|
|
|
type User struct {
|
|
|
|
|
Scores Score
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user := new(User)
|
|
|
|
|
scores := map[string]interface{}{
|
|
|
|
|
"Scores" : map[string]interface{}{
|
|
|
|
|
"Name" : "john",
|
|
|
|
|
"Result" : 100,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 嵌套struct转换
|
|
|
|
|
if err := gconv.Struct(scores, user); err != nil {
|
|
|
|
|
gtest.Error(err)
|
|
|
|
|
} else {
|
|
|
|
|
gtest.Assert(user, &User{
|
|
|
|
|
Scores : Score {
|
|
|
|
|
Name : "john",
|
|
|
|
|
Result : 100,
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 属性为struct对象指针
|
|
|
|
|
func Test_Struct_Attr_Struct_Ptr(t *testing.T) {
|
|
|
|
|
gtest.Case(t, func() {
|
|
|
|
|
type Score struct {
|
|
|
|
|
Name string
|
|
|
|
|
Result int
|
|
|
|
|
}
|
|
|
|
|
type User struct {
|
|
|
|
|
Scores *Score
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user := new(User)
|
|
|
|
|
scores := map[string]interface{}{
|
|
|
|
|
"Scores" : map[string]interface{}{
|
|
|
|
|
"Name" : "john",
|
|
|
|
|
"Result" : 100,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 嵌套struct转换
|
|
|
|
|
if err := gconv.Struct(scores, user); err != nil {
|
|
|
|
|
gtest.Error(err)
|
|
|
|
|
} else {
|
|
|
|
|
gtest.Assert(user.Scores, &Score {
|
|
|
|
|
Name : "john",
|
|
|
|
|
Result : 100,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 属性为struct对象slice
|
|
|
|
|
func Test_Struct_Attr_Struct_Slice1(t *testing.T) {
|
|
|
|
|
gtest.Case(t, func() {
|
|
|
|
|
type Score struct {
|
|
|
|
|
Name string
|
|
|
|
|
Result int
|
|
|
|
|
}
|
|
|
|
|
type User struct {
|
|
|
|
|
Scores []Score
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user := new(User)
|
|
|
|
|
scores := map[string]interface{}{
|
|
|
|
|
"Scores" : map[string]interface{}{
|
|
|
|
|
"Name" : "john",
|
|
|
|
|
"Result" : 100,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 嵌套struct转换,属性为slice类型,数值为map类型
|
|
|
|
|
if err := gconv.Struct(scores, user); err != nil {
|
|
|
|
|
gtest.Error(err)
|
|
|
|
|
} else {
|
|
|
|
|
gtest.Assert(user.Scores, []Score {
|
|
|
|
|
{
|
|
|
|
|
Name : "john",
|
|
|
|
|
Result : 100,
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 属性为struct对象slice
|
|
|
|
|
func Test_Struct_Attr_Struct_Slice2(t *testing.T) {
|
|
|
|
|
gtest.Case(t, func() {
|
|
|
|
|
type Score struct {
|
|
|
|
|
Name string
|
|
|
|
|
Result int
|
|
|
|
|
}
|
|
|
|
|
type User struct {
|
|
|
|
|
Scores []Score
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user := new(User)
|
|
|
|
|
scores := map[string]interface{}{
|
|
|
|
|
"Scores" : []interface{}{
|
|
|
|
|
map[string]interface{}{
|
|
|
|
|
"Name" : "john",
|
|
|
|
|
"Result" : 100,
|
|
|
|
|
},
|
|
|
|
|
map[string]interface{}{
|
|
|
|
|
"Name" : "smith",
|
|
|
|
|
"Result" : 60,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 嵌套struct转换,属性为slice类型,数值为slice map类型
|
|
|
|
|
if err := gconv.Struct(scores, user); err != nil {
|
|
|
|
|
gtest.Error(err)
|
|
|
|
|
} else {
|
|
|
|
|
gtest.Assert(user.Scores, []Score {
|
|
|
|
|
{
|
|
|
|
|
Name : "john",
|
|
|
|
|
Result : 100,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
Name : "smith",
|
|
|
|
|
Result : 60,
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 属性为struct对象slice ptr
|
|
|
|
|
func Test_Struct_Attr_Struct_Slice_Ptr(t *testing.T) {
|
|
|
|
|
gtest.Case(t, func() {
|
|
|
|
|
type Score struct {
|
|
|
|
|
Name string
|
|
|
|
|
Result int
|
|
|
|
|
}
|
|
|
|
|
type User struct {
|
|
|
|
|
Scores []*Score
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user := new(User)
|
|
|
|
|
scores := map[string]interface{}{
|
|
|
|
|
"Scores" : []interface{}{
|
|
|
|
|
map[string]interface{}{
|
|
|
|
|
"Name" : "john",
|
|
|
|
|
"Result" : 100,
|
|
|
|
|
},
|
|
|
|
|
map[string]interface{}{
|
|
|
|
|
"Name" : "smith",
|
|
|
|
|
"Result" : 60,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 嵌套struct转换,属性为slice类型,数值为slice map类型
|
|
|
|
|
if err := gconv.Struct(scores, user); err != nil {
|
|
|
|
|
gtest.Error(err)
|
|
|
|
|
} else {
|
|
|
|
|
gtest.Assert(len(user.Scores), 2)
|
|
|
|
|
gtest.Assert(user.Scores[0], &Score {
|
|
|
|
|
Name : "john",
|
|
|
|
|
Result : 100,
|
|
|
|
|
})
|
|
|
|
|
gtest.Assert(user.Scores[1], &Score {
|
|
|
|
|
Name : "smith",
|
|
|
|
|
Result : 60,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|