forked from infobloxopen/atlas-app-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransaction_test.go
350 lines (301 loc) · 8.71 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
package gorm
import (
"context"
"errors"
"reflect"
"testing"
sqlmock "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) {
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
txn.Begin()
if txn.current == nil {
t.Fatal("failed to begin transaction")
}
prev := txn.current
txn.Begin()
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 TestBeginFromContext_Good(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)
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)
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) {
ctx := context.Background()
// Case: Transaction missing from context
txn1, err := BeginFromContext(ctx)
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}))
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{}))
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")
}
}