This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
forked from linxGnu/grocksdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transactiondb_test.go
185 lines (151 loc) · 4.5 KB
/
transactiondb_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
package grocksdb
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestOpenTransactionDb(t *testing.T) {
db := newTestTransactionDB(t, nil)
defer db.Close()
}
func TestTransactionDBCRUD(t *testing.T) {
db := newTestTransactionDB(t, nil)
defer db.Close()
var (
givenKey = []byte("hello")
givenVal1 = []byte("world1")
givenVal2 = []byte("world2")
givenTxnKey = []byte("hello2")
givenTxnKey2 = []byte("hello3")
givenTxnVal1 = []byte("whatawonderful")
wo = NewDefaultWriteOptions()
ro = NewDefaultReadOptions()
to = NewDefaultTransactionOptions()
)
// create
require.Nil(t, db.Put(wo, givenKey, givenVal1))
// retrieve
v1, err := db.Get(ro, givenKey)
defer v1.Free()
require.Nil(t, err)
require.EqualValues(t, v1.Data(), givenVal1)
// update
require.Nil(t, db.Put(wo, givenKey, givenVal2))
v2, err := db.Get(ro, givenKey)
defer v2.Free()
require.Nil(t, err)
require.EqualValues(t, v2.Data(), givenVal2)
// delete
require.Nil(t, db.Delete(wo, givenKey))
v3, err := db.Get(ro, givenKey)
defer v3.Free()
require.Nil(t, err)
require.True(t, v3.Data() == nil)
// transaction
txn := db.TransactionBegin(wo, to, nil)
defer txn.Destroy()
// create
require.Nil(t, txn.Put(givenTxnKey, givenTxnVal1))
v4, err := txn.Get(ro, givenTxnKey)
defer v4.Free()
require.Nil(t, err)
require.EqualValues(t, v4.Data(), givenTxnVal1)
require.Nil(t, txn.Commit())
v5, err := db.Get(ro, givenTxnKey)
defer v5.Free()
require.Nil(t, err)
require.EqualValues(t, v5.Data(), givenTxnVal1)
// transaction
txn2 := db.TransactionBegin(wo, to, nil)
defer txn2.Destroy()
// create
require.Nil(t, txn2.Put(givenTxnKey2, givenTxnVal1))
// rollback
require.Nil(t, txn2.Rollback())
v6, err := txn2.Get(ro, givenTxnKey2)
defer v6.Free()
require.Nil(t, err)
require.True(t, v6.Data() == nil)
// transaction
txn3 := db.TransactionBegin(wo, to, nil)
defer txn3.Destroy()
require.NoError(t, txn3.SetName("fake_name"))
require.Equal(t, "fake_name", txn3.GetName())
// delete
require.Nil(t, txn3.Prepare())
require.Nil(t, txn3.Delete(givenTxnKey))
wi := txn3.GetWriteBatchWI()
require.EqualValues(t, 1, wi.Count())
require.Nil(t, txn3.Commit())
v7, err := db.Get(ro, givenTxnKey)
defer v7.Free()
require.Nil(t, err)
require.True(t, v7.Data() == nil)
// transaction
txn4 := db.TransactionBegin(wo, to, nil)
defer txn4.Destroy()
// mark delete
require.Nil(t, txn4.Delete(givenTxnKey))
// rebuild with put op
wi = NewWriteBatchWI(123, true)
wi.Put(givenTxnKey, givenTxnVal1)
require.Nil(t, txn4.RebuildFromWriteBatchWI(wi))
require.Nil(t, txn4.Commit())
v8, err := db.Get(ro, givenTxnKey)
defer v8.Free()
require.Nil(t, err)
require.True(t, v8.Data() != nil) // due to rebuild -> put -> key exists
// transaction
txn5 := db.TransactionBegin(wo, to, nil)
defer txn5.Destroy()
// mark delete
require.Nil(t, txn5.Delete(givenTxnKey2))
// rebuild with put op
wb := NewWriteBatch()
wb.Put(givenTxnKey2, givenTxnVal1)
require.Nil(t, txn5.RebuildFromWriteBatch(wb))
v, err := txn5.GetPinned(ro, givenTxnKey2)
require.Nil(t, err)
require.Equal(t, []byte(givenTxnVal1), v.Data())
v.Destroy()
require.Nil(t, txn5.Commit())
v9, err := db.Get(ro, givenTxnKey2)
defer v9.Free()
require.Nil(t, err)
require.True(t, v8.Data() != nil) // due to rebuild -> put -> key exists
}
func TestTransactionDBGetForUpdate(t *testing.T) {
lockTimeoutMilliSec := int64(50)
applyOpts := func(_ *Options, transactionDBOpts *TransactionDBOptions) {
transactionDBOpts.SetTransactionLockTimeout(lockTimeoutMilliSec)
}
db := newTestTransactionDB(t, applyOpts)
defer db.Close()
var (
givenKey = []byte("hello")
givenVal = []byte("world")
wo = NewDefaultWriteOptions()
ro = NewDefaultReadOptions()
to = NewDefaultTransactionOptions()
)
txn := db.TransactionBegin(wo, to, nil)
defer txn.Destroy()
v, err := txn.GetForUpdate(ro, givenKey)
defer v.Free()
require.Nil(t, err)
// expect lock timeout error to be thrown
if err := db.Put(wo, givenKey, givenVal); err == nil {
t.Error("expect locktime out error, got nil error")
}
}
func newTestTransactionDB(t *testing.T, applyOpts func(opts *Options, transactionDBOpts *TransactionDBOptions)) *TransactionDB {
dir := t.TempDir()
opts := NewDefaultOptions()
opts.SetCreateIfMissing(true)
transactionDBOpts := NewDefaultTransactionDBOptions()
if applyOpts != nil {
applyOpts(opts, transactionDBOpts)
}
db, err := OpenTransactionDb(opts, transactionDBOpts, dir)
require.Nil(t, err)
return db
}