forked from piotrkowalczuk/pqt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
type_test.go
211 lines (163 loc) · 4.57 KB
/
type_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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package pqt_test
import (
"testing"
"reflect"
"github.com/piotrkowalczuk/pqt"
)
func TestTypeSerialSmall(t *testing.T) {
assertType(t, "SMALLSERIAL", pqt.TypeSerialSmall())
}
func TestTypeSerialBig(t *testing.T) {
assertType(t, "BIGSERIAL", pqt.TypeSerialBig())
}
func TestTypeUUID(t *testing.T) {
assertType(t, "UUID", pqt.TypeUUID())
}
func TestTypeCharacter(t *testing.T) {
assertType(t, "CHARACTER[100]", pqt.TypeCharacter(100))
}
func TestTypeBytea(t *testing.T) {
assertType(t, "BYTEA", pqt.TypeBytea())
}
func TestTypeTimestamp(t *testing.T) {
assertType(t, "TIMESTAMP", pqt.TypeTimestamp())
}
func TestTypeTimestampTZ(t *testing.T) {
assertType(t, "TIMESTAMPTZ", pqt.TypeTimestampTZ())
}
func TestTypeJSON(t *testing.T) {
assertType(t, "JSON", pqt.TypeJSON())
}
func TestTypeJSONB(t *testing.T) {
assertType(t, "JSONB", pqt.TypeJSONB())
}
func TestTypeIntegerSmall(t *testing.T) {
assertType(t, "SMALLINT", pqt.TypeIntegerSmall())
}
func TestTypeIntegerSmallArray_zero(t *testing.T) {
expected := "SMALLINT[]"
got := pqt.TypeIntegerSmallArray(0)
assertType(t, expected, got)
}
func TestTypeIntegerSmallArray(t *testing.T) {
expected := "SMALLINT[100]"
got := pqt.TypeIntegerSmallArray(100)
assertType(t, expected, got)
}
func TestTypeIntegerArray_zero(t *testing.T) {
expected := "INTEGER[]"
got := pqt.TypeIntegerArray(0)
assertType(t, expected, got)
}
func TestTypeIntegerArray(t *testing.T) {
expected := "INTEGER[100]"
got := pqt.TypeIntegerArray(100)
assertType(t, expected, got)
}
func TestTypeIntegerBigArray_zero(t *testing.T) {
expected := "BIGINT[]"
got := pqt.TypeIntegerBigArray(0)
assertType(t, expected, got)
}
func TestTypeIntegerBigArray(t *testing.T) {
expected := "BIGINT[100]"
got := pqt.TypeIntegerBigArray(100)
assertType(t, expected, got)
}
func TestTypeDecimal_zeroPrecisionZeroScale(t *testing.T) {
expected := "DECIMAL"
got := pqt.TypeDecimal(0, 0)
assertType(t, expected, got)
}
func TestTypeDecimal_zeroScale(t *testing.T) {
expected := "DECIMAL(100)"
got := pqt.TypeDecimal(100, 0)
assertType(t, expected, got)
}
func TestTypeDecimal(t *testing.T) {
expected := "DECIMAL(100,2)"
got := pqt.TypeDecimal(100, 2)
assertType(t, expected, got)
}
func TestTypeNumeric_zeroPrecisionZeroScale(t *testing.T) {
expected := "NUMERIC"
got := pqt.TypeNumeric(0, 0)
assertType(t, expected, got)
}
func TestTypeNumeric_zeroScale(t *testing.T) {
expected := "NUMERIC(100)"
got := pqt.TypeNumeric(100, 0)
assertType(t, expected, got)
}
func TestTypeNumeric(t *testing.T) {
expected := "NUMERIC(100,2)"
got := pqt.TypeNumeric(100, 2)
assertType(t, expected, got)
}
func TestTypeDoubleArray_zero(t *testing.T) {
expected := "DOUBLE PRECISION[]"
got := pqt.TypeDoubleArray(0)
assertType(t, expected, got)
}
func TestTypeDoubleArray(t *testing.T) {
expected := "DOUBLE PRECISION[100]"
got := pqt.TypeDoubleArray(100)
assertType(t, expected, got)
}
func TestTypeReal(t *testing.T) {
expected := "REAL"
got := pqt.TypeReal()
assertType(t, expected, got)
}
func TestTypeDoublePrecision(t *testing.T) {
expected := "DOUBLE PRECISION"
got := pqt.TypeDoublePrecision()
assertType(t, expected, got)
}
func TestTypeTextArray_zero(t *testing.T) {
expected := "TEXT[]"
got := pqt.TypeTextArray(0)
assertType(t, expected, got)
}
func TestTypeTextArray(t *testing.T) {
expected := "TEXT[100]"
got := pqt.TypeTextArray(100)
assertType(t, expected, got)
}
func TestTypeVarchar_zero(t *testing.T) {
expected := "VARCHAR"
got := pqt.TypeVarchar(0)
assertType(t, expected, got)
}
func TestTypeVarchar(t *testing.T) {
expected := "VARCHAR(100)"
got := pqt.TypeVarchar(100)
assertType(t, expected, got)
}
func assertType(t *testing.T, expected string, got pqt.Type) {
if got.String() != expected {
t.Errorf("unexpected sql representation, expected %s got %s", expected, got.String())
}
}
func TestBaseType_Fingerprint(t *testing.T) {
if pqt.TypeText().Fingerprint() != "base: TEXT" {
t.Errorf("wrong fingerprint: %s", pqt.TypeText().Fingerprint())
}
}
func TestTypeEnumerated(t *testing.T) {
given := pqt.TypeEnumerated("pets", "cat", "dog", "pig")
assertType(t, "pets", given)
if !reflect.DeepEqual(given.Enums, []string{"cat", "dog", "pig"}) {
t.Errorf("wrong set of enums: %v", given.Enums)
}
if given.Fingerprint() != "enumarated: pets" {
t.Errorf("wrong fingerprint: %s", given.Fingerprint())
}
}
func TestTypeMappable(t *testing.T) {
given := pqt.TypeMappable(pqt.TypeInteger(), pqt.TypeText())
assertType(t, "INTEGER", given)
if given.Fingerprint() != "mappable: INTEGER" {
t.Errorf("wrong fingerprint: %s", given.Fingerprint())
}
}