forked from Masterminds/squirrel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag_test.go
123 lines (107 loc) · 2.62 KB
/
tag_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
package squirrel
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestDBTAGOK(t *testing.T) {
type TestStruct struct {
Name string `db:"db_name_field"`
Lastname string
}
st := TestStruct{
Name: "Testing",
Lastname: "More Testing",
}
expected := "db_name_field"
result, err := DBTAG(st, "Name")
assert.Nil(t, err)
assert.Equal(t, result, expected)
}
func TestDBTAGNoField(t *testing.T) {
type TestStruct struct {
Name string `db:"db_name_field"`
Lastname string
}
st := TestStruct{
Name: "Testing",
Lastname: "More Testing",
}
_, err := DBTAG(st, "TEST")
assert.NotNil(t, err)
assert.Equal(t, err, errFieldNotFound)
}
func TestDBTAGNoTag(t *testing.T) {
type TestStruct struct {
Name string `db:"db_name_field"`
Lastname string
}
st := TestStruct{
Name: "Testing",
Lastname: "More Testing",
}
_, err := DBTAG(st, "Lastname")
assert.NotNil(t, err)
assert.Equal(t, err, errEmptyDBTag)
}
func TestDBTAGNoStruct(t *testing.T) {
testing := "test"
_, err := DBTAG(testing, "Field")
assert.NotNil(t, err)
assert.Equal(t, err, errNotAStruct)
}
func TestMarshallDBOK(t *testing.T) {
type TestStruct struct {
Name string `db:"db_table.name"`
Lastname string
Age int `json:"age" db:"db_table.age"`
IsSomething *bool `db:"db_table.is_something"`
}
type NestedStruct struct {
Test string `db:"db_table.test"`
TestStruct
}
boolValue := true
st := NestedStruct{
Test: "test",
TestStruct: TestStruct{
Name: "Testing",
Lastname: "More Testing",
Age: 15,
IsSomething: &boolValue,
},
}
expected := map[string]interface{}{}
expected["db_table.test"] = "test"
expected["db_table.name"] = "Testing"
expected["db_table.age"] = 15
expected["db_table.is_something"] = &boolValue
expectedFields := []string{"db_table.test", "db_table.name", "db_table.age", "db_table.is_something"}
result, stFileds, err := MarshallDB(st)
assert.Nil(t, err)
assert.Equal(t, expected, result)
assert.Equal(t, stFileds, expectedFields)
}
func TestMarshallDBNoStruct(t *testing.T) {
testing := "test"
_, _, err := MarshallDB(testing)
assert.NotNil(t, err)
assert.Equal(t, err, errNotAStruct)
}
func TestMarshallDBEmptyResult(t *testing.T) {
type TestStruct struct {
Name string
Lastname string
Age int `json:"age"`
}
st := TestStruct{
Name: "Testing",
Lastname: "More Testing",
Age: 15,
}
expected := map[string]interface{}{}
expectedFields := []string{}
result, stFileds, err := MarshallDB(st)
assert.Nil(t, err)
assert.Equal(t, result, expected)
assert.Equal(t, stFileds, expectedFields)
}