-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_test.go
256 lines (242 loc) · 4.9 KB
/
db_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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
package jobq
import (
"database/sql"
"database/sql/driver"
"errors"
"reflect"
"strings"
"testing"
"time"
)
type mockDBExecer struct {
wantStmt string
wantArgs []interface{}
wantErr bool
gotStmt string
gotArgs []interface{}
valid bool
}
func (e *mockDBExecer) Exec(stmt string, args ...interface{}) (sql.Result, error) {
e.gotStmt = stmt
e.gotArgs = args
stmt = strings.Replace(stmt, "\n", "", -1)
stmt = strings.Replace(stmt, "\t", "", -1)
wantStmt := e.wantStmt
wantStmt = strings.Replace(wantStmt, "\n", "", -1)
wantStmt = strings.Replace(wantStmt, "\t", "", -1)
if stmt != wantStmt {
goto end
}
if len(args) != len(e.wantArgs) {
goto end
}
if !reflect.DeepEqual(args, e.wantArgs) {
goto end
}
e.valid = true
end:
if e.wantErr {
return nil, errors.New("mock err")
}
return nil, nil
}
type mockDBQueryer struct {
wantStmt string
wantArgs []interface{}
wantErr bool
gotStmt string
gotArgs []interface{}
valid bool
}
func (e *mockDBQueryer) Query(stmt string, args ...interface{}) (*sql.Rows, error) {
e.gotStmt = stmt
e.gotArgs = args
stmt = strings.Replace(stmt, "\n", "", -1)
stmt = strings.Replace(stmt, "\t", "", -1)
wantStmt := e.wantStmt
wantStmt = strings.Replace(wantStmt, "\n", "", -1)
wantStmt = strings.Replace(wantStmt, "\t", "", -1)
if stmt != wantStmt {
goto end
}
if len(args) != len(e.wantArgs) {
goto end
}
if !reflect.DeepEqual(args, e.wantArgs) {
goto end
}
e.valid = true
end:
if e.wantErr {
return nil, errors.New("mock err")
}
return nil, nil
}
type mockTx struct {
*mockDBExecer
*mockDBQueryer
onCommit error
onRollback error
}
func (tx mockTx) Commit() error {
return tx.onCommit
}
func (tx mockTx) Rollback() error {
return tx.onRollback
}
type mockDB struct {
*mockDBExecer
*mockDBQueryer
onTx func() (*sql.Tx, error)
}
func (db mockDB) Begin() (*sql.Tx, error) {
return db.onTx()
}
func Test_nullTime_UnmarshalJSON(t *testing.T) {
tests := []struct {
name string
bytes []byte
want nullTime
wantErr bool
}{
{
name: "success_not_null",
want: nullTime{
Time: time.Unix(10000, 1).UTC(),
Valid: true,
},
bytes: []byte("\"1970-01-01T02:46:40.000000001\""),
},
{
name: "success_null",
want: nullTime{
Valid: false,
},
bytes: []byte("null"),
},
{
name: "fail_null",
bytes: []byte("invalid string here"),
wantErr: true,
},
{
name: "fail_not_null",
bytes: []byte("1970-01"),
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
nt := &nullTime{}
if err := nt.UnmarshalJSON(tt.bytes); (err != nil) != tt.wantErr {
t.Errorf("nullTime.UnmarshalJSON() error = %v, wantErr %v", err, tt.wantErr)
return
}
if nt.Valid != tt.want.Valid {
t.Errorf("nullTime.Valid = %v, want %v", nt.Valid, tt.want.Valid)
}
if !tt.want.Valid && nt.Time.Unix() != tt.want.Time.Unix() {
t.Errorf("nullTime.Time = %v, want %v", nt.Time.Unix(), tt.want.Time.Unix())
}
})
}
}
func Test_nullTime_MarshalJSON(t *testing.T) {
type fields struct {
Time time.Time
Valid bool
}
tests := []struct {
name string
fields fields
want []byte
wantErr bool
}{
{
name: "null",
fields: fields{
Valid: false,
},
want: []byte("null"),
},
{
name: "not_null",
fields: fields{
Time: time.Unix(10000, 1).UTC(),
Valid: true,
},
want: []byte("\"1970-01-01T02:46:40.000000001\""),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
nt := nullTime{
Time: tt.fields.Time,
Valid: tt.fields.Valid,
}
got, err := nt.MarshalJSON()
if (err != nil) != tt.wantErr {
t.Errorf("nullTime.MarshalJSON() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("nullTime.MarshalJSON() = %v, want %v", got, tt.want)
}
})
}
}
func Test_nullTime_Scan(t *testing.T) {
var nt nullTime
nt.Scan(time.Unix(10000, 1))
want := nullTime{
Time: time.Unix(10000, 1),
Valid: true,
}
if !reflect.DeepEqual(nt, want) {
t.Errorf("nullTime.Scan() = %v, want %v", nt, want)
}
}
func Test_nullTime_Value(t *testing.T) {
type fields struct {
Time time.Time
Valid bool
}
tests := []struct {
name string
fields fields
want driver.Value
wantErr bool
}{
{
name: "null",
fields: fields{
Valid: false,
},
want: nil,
},
{
name: "not_null",
fields: fields{
Time: time.Unix(10000, 1).UTC(),
Valid: true,
},
want: time.Unix(10000, 1).UTC(),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
nt := nullTime{
Time: tt.fields.Time,
Valid: tt.fields.Valid,
}
got, err := nt.Value()
if (err != nil) != tt.wantErr {
t.Errorf("nullTime.Value() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("nullTime.Value() = %v, want %v", got, tt.want)
}
})
}
}