forked from grafana/grafana
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtransactions_test.go
141 lines (113 loc) · 4.28 KB
/
transactions_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
package sqlstore
import (
"context"
"errors"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestIntegrationReuseSessionWithTransaction(t *testing.T) {
if testing.Short() {
t.Skip("skipping integration test")
}
ss, _ := InitTestDB(t)
t.Run("top level transaction", func(t *testing.T) {
var outerSession *DBSession
err := ss.InTransaction(context.Background(), func(ctx context.Context) error {
value := ctx.Value(ContextSessionKey{})
var ok bool
outerSession, ok = value.(*DBSession)
require.True(t, ok, "Session should be available in the context but it does not exist")
require.True(t, outerSession.transactionOpen, "Transaction should be open")
require.NoError(t, ss.WithDbSession(ctx, func(sess *DBSession) error {
require.Equal(t, outerSession, sess)
require.False(t, sess.IsClosed(), "Session is closed but it should not be")
return nil
}))
require.NoError(t, ss.WithTransactionalDbSession(ctx, func(sess *DBSession) error {
require.Equal(t, outerSession, sess)
require.False(t, sess.IsClosed(), "Session is closed but it should not be")
return nil
}))
require.False(t, outerSession.IsClosed(), "Session is closed but it should not be")
return nil
})
require.NoError(t, err)
require.True(t, outerSession.IsClosed())
})
t.Run("fails if reuses session without transaction", func(t *testing.T) {
require.NoError(t, ss.WithDbSession(context.Background(), func(outerSession *DBSession) error {
require.NotNil(t, outerSession)
require.NotNil(t, outerSession.DB()) // init the session
require.False(t, outerSession.IsClosed(), "Session is closed but it should not be")
ctx := context.WithValue(context.Background(), ContextSessionKey{}, outerSession)
require.NoError(t, ss.WithDbSession(ctx, func(sess *DBSession) error {
require.Equal(t, outerSession, sess)
require.False(t, sess.IsClosed(), "Session is closed but it should not be")
return nil
}))
require.Error(t, ss.WithTransactionalDbSession(ctx, func(sess *DBSession) error {
require.FailNow(t, "WithTransactionalDbSession should not be able to reuse session that did not open the transaction ")
return nil
}))
return nil
}))
})
}
func TestIntegrationPublishAfterCommitWithNestedTransactions(t *testing.T) {
if testing.Short() {
t.Skip("skipping integration test")
}
ss, _ := InitTestDB(t)
ctx := context.Background()
// On X success
var xHasSucceeded bool
ss.Bus().AddEventListener(func(ctx context.Context, e *X) error {
xHasSucceeded = true
t.Logf("Succeeded and committed: %T\n", e)
return nil
})
// On Y success
var yHasSucceeded bool
ss.Bus().AddEventListener(func(ctx context.Context, e *Y) error {
yHasSucceeded = true
t.Logf("Succeeded and committed: %T\n", e)
return nil
})
t.Run("When no session is stored into the context, each transaction should be independent", func(t *testing.T) {
t.Cleanup(func() { xHasSucceeded = false; yHasSucceeded = false })
err := ss.WithTransactionalDbSession(ctx, func(sess *DBSession) error {
t.Logf("Outer transaction: doing X... success!")
sess.PublishAfterCommit(&X{})
require.NoError(t, ss.WithTransactionalDbSession(ctx, func(sess *DBSession) error {
t.Log("Inner transaction: doing Y... success!")
sess.PublishAfterCommit(&Y{})
return nil
}))
t.Log("Outer transaction: doing Z... failure, rolling back...")
return errors.New("z failed")
})
assert.NotNil(t, err)
assert.False(t, xHasSucceeded)
assert.True(t, yHasSucceeded)
})
t.Run("When the session is stored into the context, the inner transaction should depend on the outer one", func(t *testing.T) {
t.Cleanup(func() { xHasSucceeded = false; yHasSucceeded = false })
err := ss.WithTransactionalDbSession(ctx, func(sess *DBSession) error {
t.Logf("Outer transaction: doing X... success!")
sess.PublishAfterCommit(&X{})
require.NoError(t, ss.InTransaction(ctx, func(ctx context.Context) error {
t.Log("Inner transaction: doing Y... success!")
sess.PublishAfterCommit(&Y{})
return nil
}))
t.Log("Outer transaction: doing Z... failure, rolling back...")
return errors.New("z failed")
})
assert.NotNil(t, err)
assert.False(t, xHasSucceeded)
assert.False(t, yHasSucceeded)
})
}
type X struct{}
type Y struct{}