This repository was archived by the owner on Feb 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema_option_test.go
113 lines (109 loc) · 2.03 KB
/
schema_option_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
package sqlr
import (
"testing"
)
func TestWithNamingConvention(t *testing.T) {
tests := []struct {
schema *Schema
row interface{}
columnNames []string
}{
{
schema: NewSchema(
WithNamingConvention(SnakeCase),
WithField("ID", "RowID"),
),
row: struct {
ID int `sql:"row_id"`
FullName string
}{},
columnNames: []string{
"RowID",
"full_name",
},
},
{
schema: NewSchema(
WithNamingConvention(SnakeCase),
),
row: struct {
ID int `sql:"row_id"`
FullName string
}{},
columnNames: []string{
"row_id",
"full_name",
},
},
{
schema: NewSchema(
WithNamingConvention(SameCase),
),
row: struct {
ID int `sql:"Id"`
FullName string `sql:"Full_Name"`
}{},
columnNames: []string{
"Id",
"Full_Name",
},
},
{
schema: NewSchema(
WithNamingConvention(SameCase),
),
row: struct {
ID int `sql:"Id"`
FullName string `sql:"Full_Name"`
SomethingElse float32
}{},
columnNames: []string{
"Id",
"Full_Name",
"SomethingElse",
},
},
{
schema: NewSchema(
WithNamingConvention(LowerCase),
WithField("Home.Locality", "suburb"),
WithField("ID", "rowid"),
),
row: struct {
ID int
Home struct {
Street string
Locality string
}
}{},
columnNames: []string{
"rowid",
"homestreet",
"suburb",
},
},
}
for i, tt := range tests {
rowType, err := getRowType(tt.row)
if err != nil {
t.Errorf("%d: %v", i, err)
continue
}
tbl := tt.schema.TableFor(rowType)
for j, col := range tbl.Columns() {
if got, want := col.Name(), tt.columnNames[j]; got != want {
t.Errorf("%d: %d: want=%q, got=%q", i, j, want, got)
}
}
}
}
func TestWithKey(t *testing.T) {
s := NewSchema()
if got, want := s.Key(), ""; got != want {
t.Errorf("got=%q want=%q", got, want)
}
s = NewSchema(WithKey("xxx"))
if got, want := s.Key(), "xxx"; got != want {
t.Errorf("got=%q want=%q", got, want)
}
}