-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcolumn_test.go
139 lines (131 loc) · 2.53 KB
/
column_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package sqlchemy
import (
"reflect"
"testing"
"yunion.io/x/jsonutils"
)
func TestBaseColumns(t *testing.T) {
cases := []struct {
name string
sqlType string
tags map[string]string
isPointer bool
want SBaseColumn
}{
{
name: "test",
sqlType: "TEXT",
tags: map[string]string{},
isPointer: false,
want: SBaseColumn{
name: "test",
dbName: "",
sqlType: "TEXT",
isPointer: false,
isNullable: true,
isPrimary: false,
tags: make(map[string]string),
colIndex: -1,
},
},
{
name: "test",
sqlType: "TEXT",
tags: map[string]string{"primary": "true"},
isPointer: false,
want: SBaseColumn{
name: "test",
dbName: "",
sqlType: "TEXT",
isPointer: false,
isNullable: false,
isPrimary: true,
tags: make(map[string]string),
colIndex: -1,
},
},
{
name: "test",
sqlType: "TEXT",
tags: map[string]string{"primary": "true", "index": "true"},
isPointer: false,
want: SBaseColumn{
name: "test",
dbName: "",
sqlType: "TEXT",
isPointer: false,
isNullable: false,
isPrimary: true,
isIndex: true,
tags: make(map[string]string),
colIndex: -1,
},
},
}
for _, c := range cases {
got := NewBaseColumn(c.name, c.sqlType, c.tags, c.isPointer)
if !reflect.DeepEqual(got, c.want) {
t.Errorf("want: %#v got: %#v", c.want, got)
}
}
}
func TestConvertFromString(t *testing.T) {
cases := []struct {
in string
want interface{}
}{
{
in: `{"name":"John"}`,
want: `{"name":"John"}`,
},
{
in: "test",
want: `"test"`,
},
{
in: "",
want: "null",
},
}
for _, c := range cases {
cc := SBaseCompoundColumn{}
got := cc.ConvertFromString(c.in)
if !reflect.DeepEqual(got, c.want) {
t.Errorf("want: %s got %s", jsonutils.Marshal(c.want), jsonutils.Marshal(got))
}
}
}
type sSerial struct {
}
func (s *sSerial) String() string {
return "test"
}
func (s *sSerial) IsZero() bool {
return false
}
func TestConvertFromValue(t *testing.T) {
cases := []struct {
in interface{}
want interface{}
}{
{
in: &sSerial{},
want: `test`,
},
{
in: struct {
Name string
}{
Name: "abc",
},
want: `{"name":"abc"}`,
},
}
for _, c := range cases {
cc := SBaseCompoundColumn{}
got := cc.ConvertFromValue(c.in)
if !reflect.DeepEqual(got, c.want) {
t.Errorf("want: %s got %s", jsonutils.Marshal(c.want), jsonutils.Marshal(got))
}
}
}