forked from infobloxopen/atlas-app-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transaction_test.go
441 lines (391 loc) · 10.7 KB
/
transaction_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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
package gorm
import (
"context"
"database/sql"
"errors"
"reflect"
"testing"
"github.com/DATA-DOG/go-sqlmock"
"github.com/infobloxopen/atlas-app-toolkit/rpc/errdetails"
"github.com/jinzhu/gorm"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
func TestUnaryServerInterceptor_success(t *testing.T) {
db, mock, err := sqlmock.New()
if err != nil {
t.Fatalf("failed to create sqlmock - %s", err)
}
mock.ExpectBegin()
mock.ExpectCommit()
gdb, err := gorm.Open("postgres", db)
if err != nil {
t.Fatalf("failed to open gorm db - %s", err)
}
interceptor := UnaryServerInterceptor(gdb)
_, err = interceptor(context.Background(), nil, nil, func(ctx context.Context, req interface{}) (interface{}, error) {
txn, ok := FromContext(ctx)
if !ok {
t.Error("failed to extract transaction from context")
}
return nil, txn.Begin().Error
})
if err != nil {
t.Errorf("unexpected error - %s", err)
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("failed to manage transaction on success response - %s", err)
}
}
func TestUnaryServerInterceptor_error(t *testing.T) {
db, mock, err := sqlmock.New()
if err != nil {
t.Fatalf("failed to create sqlmock - %s", err)
}
mock.ExpectBegin()
mock.ExpectRollback().WillReturnError(errors.New("handler"))
gdb, err := gorm.Open("postgres", db)
if err != nil {
t.Fatalf("failed to open gorm db - %s", err)
}
interceptor := UnaryServerInterceptor(gdb)
_, err = interceptor(context.Background(), nil, nil, func(ctx context.Context, req interface{}) (interface{}, error) {
txn, ok := FromContext(ctx)
if !ok {
t.Error("failed to extract transaction from context")
}
txn.Begin()
return nil, status.Error(codes.InvalidArgument, "handler")
})
if st := status.Convert(err); st.Message() != "handler" || st.Code() != codes.InvalidArgument {
t.Fatalf("unexpected error - %s", err)
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("failed to manage transaction on error response - %s", err)
}
}
func TestUnaryServerInterceptor_details(t *testing.T) {
db, mock, err := sqlmock.New()
if err != nil {
t.Fatalf("failed to create sqlmock - %s", err)
}
mock.ExpectBegin()
mock.ExpectCommit()
gdb, err := gorm.Open("postgres", db)
if err != nil {
t.Fatalf("failed to open gorm db - %s", err)
}
interceptor := UnaryServerInterceptor(gdb)
_, err = interceptor(context.Background(), nil, nil, func(ctx context.Context, req interface{}) (interface{}, error) {
txn, ok := FromContext(ctx)
if !ok {
t.Error("failed to extract transaction from context")
}
txn.Begin()
txn.current.Error = errors.New("internal")
return nil, nil
})
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("failed to manage transaction on error response - %s", err)
}
details := status.Convert(err).Details()
if details == nil || len(details) == 0 {
t.Fatalf("empty details")
}
d, ok := details[0].(*errdetails.TargetInfo)
if !ok {
t.Fatal("unknown type of details")
}
if d.Code != int32(codes.Internal) || d.Message != "internal" || d.Target != "gorm" {
t.Errorf("invalid targer info - %s", d)
}
}
func TestTransaction_Begin(t *testing.T) {
tests := []struct {
desc string
withOpts bool
}{
{
desc: "begin without options",
withOpts: false,
},
{
desc: "begin with options",
withOpts: true,
},
}
begin := func(txn *Transaction, withOpts bool) {
switch withOpts {
case true:
opt := &sql.TxOptions{Isolation: sql.LevelSerializable}
txn.BeginWithOptions(opt)
case false:
txn.Begin()
}
}
for _, test := range tests {
test := test
t.Run(test.desc, func(t *testing.T) {
db, mock, err := sqlmock.New()
if err != nil {
t.Fatalf("failed to create sqlmock - %s", err)
}
mock.ExpectBegin()
gdb, err := gorm.Open("postgres", db)
if err != nil {
t.Fatalf("failed to open gorm db - %s", err)
}
txn := &Transaction{parent: gdb}
// test singleton behavior
begin(txn, test.withOpts)
if txn.current == nil {
t.Fatal("failed to begin transaction")
}
prev := txn.current
begin(txn, test.withOpts)
if txn.current != prev {
t.Fatal("transaction does not behaves like singleton")
}
// test begin behavior: no error
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("failed to begin transaction - %s", err)
}
})
}
}
func TestTransaction_Commit(t *testing.T) {
db, mock, err := sqlmock.New()
if err != nil {
t.Fatalf("failed to create sqlmock - %s", err)
}
mock.ExpectBegin()
mock.ExpectCommit()
gdb, err := gorm.Open("postgres", db)
if err != nil {
t.Fatalf("failed to open gorm db - %s", err)
}
txn := &Transaction{parent: gdb}
ctx := context.Background()
// test current transaction is nil
if err := txn.Commit(ctx); err != nil {
t.Errorf("unexpected error %s", err)
}
txn.Begin()
if err := txn.Commit(ctx); err != nil {
t.Errorf("failed to commit transaction - %s", err)
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("failed to commit transaction - %s", err)
}
if txn.current != nil {
t.Error("failed to reset current gorm instance - txn.current is not nil")
}
}
func TestTransaction_AfterCommitHook(t *testing.T) {
db, mock, err := sqlmock.New()
if err != nil {
t.Fatalf("failed to create sqlmock - %s", err)
}
mock.ExpectBegin()
mock.ExpectCommit()
gdb, err := gorm.Open("postgres", db)
if err != nil {
t.Fatalf("failed to open gorm db - %s", err)
}
txn := &Transaction{parent: gdb}
txn.Begin()
called := false
hook := func(context.Context) { called = true; return }
txn.AddAfterCommitHook(hook)
ctx := context.Background()
if err := txn.Commit(ctx); err != nil {
t.Errorf("failed to commit transaction - %s", err)
}
if !called {
t.Errorf("did not fire the hook")
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("failed to commit transaction - %s", err)
}
}
func TestTransaction_Rollback(t *testing.T) {
db, mock, err := sqlmock.New()
if err != nil {
t.Fatalf("failed to create sqlmock - %s", err)
}
mock.ExpectBegin()
mock.ExpectRollback()
gdb, err := gorm.Open("postgres", db)
if err != nil {
t.Fatalf("failed to open gorm db - %s", err)
}
txn := &Transaction{parent: gdb}
// test current transaction is nil
if err := txn.Rollback(); err != nil {
t.Errorf("unexpected error %s", err)
}
txn.Begin()
if err := txn.Rollback(); err != nil {
t.Errorf("failed to rollback transaction - %s", err)
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("failed to rollback transaction - %s", err)
}
if txn.current != nil {
t.Error("failed to reset current gorm instance - txn.current is not nil")
}
fdb, err := gorm.Open("postgres", db)
fdb.Close()
txn = &Transaction{parent: gdb}
txn.Begin()
if err := txn.Rollback(); !reflect.DeepEqual(err, status.Error(codes.Unavailable, "Database connection not available")) {
t.Errorf("Did not receive proper error for broken DB - %s", err)
}
}
func TestContext(t *testing.T) {
ctx := context.Background()
_, ok := FromContext(ctx)
if ok {
t.Error("false positive value FromContext")
}
txn := &Transaction{}
ctx = NewContext(ctx, txn)
ftxn, ok := FromContext(ctx)
if !ok {
t.Error("failed to extract transaction from context")
}
if ftxn != txn {
t.Error("unknown transaction instance")
}
}
func beginFromContext(ctx context.Context, withOpts bool) (*gorm.DB, error) {
switch withOpts {
case true:
opt := &sql.TxOptions{Isolation: sql.LevelSerializable}
return BeginWithOptionsFromContext(ctx, opt)
case false:
return BeginFromContext(ctx)
}
return nil, nil
}
func TestBeginFromContext_Good(t *testing.T) {
tests := []struct {
desc string
withOpts bool
}{
{
desc: "begin without options",
withOpts: false,
},
{
desc: "begin with options",
withOpts: true,
},
}
for _, test := range tests {
test := test
t.Run(test.desc, func(t *testing.T) {
ctx := context.Background()
db, mock, err := sqlmock.New()
if err != nil {
t.Fatalf("failed to create sqlmock - %s", err)
}
gdb, err := gorm.Open("postgres", db)
if err != nil {
t.Fatalf("failed to open gorm db - %s", err)
}
mock.ExpectBegin()
// Case: All good
ctxtxn := &Transaction{parent: gdb}
ctx = NewContext(ctx, ctxtxn)
txn1, err := beginFromContext(ctx, test.withOpts)
if txn1 == nil {
t.Error("Did not receive a transaction from context")
}
if err != nil {
t.Error("Received an error beginning transaction")
}
if err = mock.ExpectationsWereMet(); err != nil {
t.Errorf("failed to begin transaction - %s", err)
}
// Case: Transaction begin is idempotent
txn2, err := beginFromContext(ctx, test.withOpts)
if txn2 != txn1 {
t.Error("Got a different txn than was opened before")
}
if err != nil {
t.Error("Received an error opening transaction")
}
})
}
}
func TestBeginFromContext_Bad(t *testing.T) {
tests := []struct {
desc string
withOpts bool
contextCanceled bool
}{
{
desc: "begin without options",
withOpts: false,
},
{
desc: "begin with options",
withOpts: true,
},
{
desc: "canceled context without context",
withOpts: true,
contextCanceled: true,
},
{
desc: "canceled context with options",
withOpts: false,
contextCanceled: true,
},
}
for _, test := range tests {
test := test
t.Run(test.desc, func(t *testing.T) {
ctx := context.Background()
if test.contextCanceled {
var cancel context.CancelFunc
ctx, cancel = context.WithCancel(ctx)
cancel()
}
// Case: Transaction missing from context
txn1, err := beginFromContext(ctx, test.withOpts)
if err != ErrCtxTxnMissing {
t.Error("Did not receive a CtxTxnError when no context transaction was present")
}
if txn1 != nil {
t.Error("Got some txn returned when nil was expected")
}
db, mock, err := sqlmock.New()
if err != nil {
t.Fatalf("failed to create sqlmock - %s", err)
}
gdb, err := gorm.Open("postgres", db)
if err != nil {
t.Fatalf("failed to open gorm db - %s", err)
}
mock.ExpectBegin().WillReturnError(errors.New(""))
// Case: Transaction fails to open
txn2, err := beginFromContext(NewContext(ctx, &Transaction{parent: gdb}), test.withOpts)
if txn2 != nil {
t.Error("Got some txn returned when nil was expected")
}
if err == nil {
t.Error("Did not receive an error when transaction begin returned error")
}
// Case: DB Missing from Transaction in Context
txn3, err := beginFromContext(NewContext(ctx, &Transaction{}), test.withOpts)
if txn3 != nil {
t.Error("Got some txn returned when nil was expected")
}
if err != ErrCtxTxnNoDB {
t.Error("Did not receive an error opening a txn with nil DB")
}
})
}
}