1 Star 0 Fork 110

Admin/zorm

forked from springrain/zorm 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dialect_test.go 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
package zorm
import (
"fmt"
"reflect"
"testing"
)
func Test_getFieldTagName(t *testing.T) {
type args struct {
field *reflect.StructField
}
tests := []struct {
name string
args args
fn func(string) string
want string
}{
{
name: "test `",
args: args{
field: &reflect.StructField{
Name: "Described",
Tag: `column:"described" json:"desc,omitempty"`,
},
},
fn: func(colName string) string {
return fmt.Sprintf("`%s`", colName)
},
want: "`described`",
},
{
name: "test '",
args: args{
field: &reflect.StructField{
Name: "Described",
Tag: `column:"described" json:"desc,omitempty"`,
},
},
fn: func(colName string) string {
return fmt.Sprintf("'%s'", colName)
},
want: "'described'",
},
{
name: "test empty",
args: args{
field: &reflect.StructField{
Name: "Described",
Tag: `column:"described" json:"desc,omitempty"`,
},
},
fn: func(colName string) string {
return fmt.Sprintf("%s", colName)
},
want: "described",
},
{
name: "test default",
args: args{
field: &reflect.StructField{
Name: "Described",
Tag: `column:"described" json:"desc,omitempty"`,
},
},
fn: nil,
want: "described",
},
}
tagMap := make(map[string]string)
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.fn != nil {
FuncWrapFieldTagName = tt.fn
}
tagMap[tt.args.field.Name] = tt.args.field.Tag.Get("column")
if got := getFieldTagName(tt.args.field, &tagMap); got != tt.want {
t.Errorf("getFieldTagName() = %v, want %v", got, tt.want)
}
})
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/nebula_6_0/zorm.git
git@gitee.com:nebula_6_0/zorm.git
nebula_6_0
zorm
zorm
master

搜索帮助