-
Notifications
You must be signed in to change notification settings - Fork 25
/
db_test.go
301 lines (253 loc) · 7.03 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
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
package CouloyDB
import (
"fmt"
"os"
"testing"
"github.com/Kirov7/CouloyDB/public"
"github.com/Kirov7/CouloyDB/public/utils/bytex"
"github.com/Kirov7/CouloyDB/public/utils/wait"
"github.com/stretchr/testify/assert"
)
func destroyCouloyDB(db *DB) {
err := db.Close()
if err != nil {
panic(err.Error())
}
err = os.RemoveAll(db.options.DirPath)
if err != nil {
panic(err.Error())
}
}
func TestNewCouloyDB(t *testing.T) {
options := DefaultOptions()
couloyDB, err := NewCouloyDB(options)
defer destroyCouloyDB(couloyDB)
assert.Nil(t, err)
assert.NotNil(t, couloyDB)
}
func TestDB_Put(t *testing.T) {
options := DefaultOptions()
options.DataFileSize = 8 * 1024 * 1024
options.SyncWrites = false
couloyDB, err := NewCouloyDB(options)
defer destroyCouloyDB(couloyDB)
assert.Nil(t, err)
assert.NotNil(t, couloyDB)
// Normally put key 1 and a random value to db
err = couloyDB.Put(bytex.GetTestKey(1), bytex.RandomBytes(6))
assert.Nil(t, err)
value, err := couloyDB.Get(bytex.GetTestKey(1))
assert.NotNil(t, value)
assert.Nil(t, err)
// Test repeatedly key
err = couloyDB.Put(bytex.GetTestKey(1), bytex.RandomBytes(6))
assert.Nil(t, err)
value, err = couloyDB.Get(bytex.GetTestKey(1))
assert.NotNil(t, value)
assert.Nil(t, err)
// Test empty key
err = couloyDB.Put([]byte{}, bytex.RandomBytes(6))
assert.Equal(t, err, public.ErrKeyIsEmpty)
// Test empty value
err = couloyDB.Put(bytex.GetTestKey(2), []byte{})
assert.Nil(t, err)
value, err = couloyDB.Get(bytex.GetTestKey(2))
assert.Nil(t, err)
assert.Len(t, value, 0)
}
func TestDB_Get(t *testing.T) {
options := DefaultOptions()
options.DataFileSize = 8 * 1024 * 1024
options.SyncWrites = false
couloyDB, err := NewCouloyDB(options)
defer destroyCouloyDB(couloyDB)
assert.Nil(t, err)
assert.NotNil(t, couloyDB)
err = couloyDB.Put(bytex.GetTestKey(1), bytex.GetTestKey(1))
assert.Nil(t, err)
// Test get normally
value, err := couloyDB.Get(bytex.GetTestKey(1))
assert.NotNil(t, value)
assert.Nil(t, err)
assert.Equal(t, value, bytex.GetTestKey(1))
// Test get when key is empty
value, err = couloyDB.Get([]byte{})
assert.Nil(t, value)
assert.NotNil(t, err)
assert.Equal(t, public.ErrKeyIsEmpty, err)
// Test get when the same key changes
err = couloyDB.Put(bytex.GetTestKey(2), bytex.RandomBytes(64))
v1, err := couloyDB.Get(bytex.GetTestKey(2))
assert.Nil(t, err)
err = couloyDB.Put(bytex.GetTestKey(2), bytex.RandomBytes(64))
v2, err := couloyDB.Get(bytex.GetTestKey(2))
assert.Nil(t, err)
assert.NotEqual(t, v1, v2)
// Test get after delete key
err = couloyDB.Del(bytex.GetTestKey(2))
assert.Nil(t, err)
value, err = couloyDB.Get(bytex.GetTestKey(2))
assert.Nil(t, value)
assert.NotNil(t, err)
assert.Equal(t, public.ErrKeyNotFound, err)
}
func TestDB_Put_Get_Concurrency(t *testing.T) {
options := DefaultOptions()
options.DataFileSize = 8 * 1024 * 1024
options.SyncWrites = false
couloyDB, err := NewCouloyDB(options)
defer destroyCouloyDB(couloyDB)
assert.Nil(t, err)
assert.NotNil(t, couloyDB)
w := wait.NewWait()
workerNum := 200
// Test 200 put workers put kv parallel
w.Add(workerNum)
for id := 0; id < workerNum; id++ {
go func(id int) {
defer w.Done()
err := couloyDB.Put(bytex.GetTestKey(id), bytex.GetTestKey(id))
assert.Nil(t, err)
}(id)
}
w.Wait()
// Test whether the 200 put workers just now are successful
w.Add(workerNum)
for i := 0; i < workerNum; i++ {
go func(id int) {
defer w.Done()
value, err := couloyDB.Get(bytex.GetTestKey(id))
assert.Nil(t, err)
assert.NotNil(t, value)
}(i)
}
w.Wait()
// Test create new data file, and read from the new data file and old data files
workerNum = 10000
fill := make([]byte, 1024)
// This will make the active data file too large and create a new data file instead
w.Add(workerNum)
for id := 0; id < workerNum; id++ {
go func(id int) {
defer w.Done()
key := bytex.GetTestKey(id)
err := couloyDB.Put(key, append(key, fill...))
assert.Nil(t, err)
}(id)
}
w.Wait()
// Because there are multiple data files now, it must be read from multiple data files
w.Add(workerNum)
for id := 0; id < workerNum; id++ {
go func(id int) {
defer w.Done()
key := bytex.GetTestKey(id)
value, err := couloyDB.Get(key)
assert.Nil(t, err)
assert.Equal(t, value, append(key, fill...))
}(id)
}
w.Wait()
// must have old file
assert.NotEqual(t, len(couloyDB.oldFile), 0)
}
func TestDB_Del(t *testing.T) {
options := DefaultOptions()
options.DataFileSize = 8 * 1024 * 1024
options.SyncWrites = false
couloyDB, err := NewCouloyDB(options)
defer destroyCouloyDB(couloyDB)
assert.Nil(t, err)
assert.NotNil(t, couloyDB)
err = couloyDB.Put(bytex.GetTestKey(1), bytex.GetTestKey(1))
assert.Nil(t, err)
// Test del normally
err = couloyDB.Del(bytex.GetTestKey(1))
assert.Nil(t, err)
value, err := couloyDB.Get(bytex.GetTestKey(2))
assert.Nil(t, value)
assert.NotNil(t, err)
assert.Equal(t, public.ErrKeyNotFound, err)
// Test del an empty key
err = couloyDB.Del([]byte{})
assert.NotNil(t, err)
assert.Equal(t, err, public.ErrKeyIsEmpty)
// Test del a key that is not exist
err = couloyDB.Del([]byte("not exist!"))
assert.Nil(t, err)
}
func TestDB_Reboot(t *testing.T) {
options := DefaultOptions()
options.DataFileSize = 8 * 1024 * 1024
options.SyncWrites = false
couloyDB, err := NewCouloyDB(options)
assert.Nil(t, err)
assert.NotNil(t, couloyDB)
w := wait.NewWait()
w.Wait()
workerNum := 10000
fill := make([]byte, 1024)
w.Add(workerNum)
for id := 0; id < workerNum; id++ {
go func(id int) {
defer w.Done()
key := bytex.GetTestKey(id)
err := couloyDB.Put(key, append(key, fill...))
assert.Nil(t, err)
}(id)
}
w.Wait()
// Reboot couloydb
err = couloyDB.Close()
assert.Nil(t, err)
couloyDB, err = NewCouloyDB(options)
defer destroyCouloyDB(couloyDB)
assert.Nil(t, err)
assert.NotNil(t, couloyDB)
// Test whether the data can still be read from the previous file after the db is restarted
w.Add(workerNum)
for id := 0; id < workerNum; id++ {
go func(id int) {
defer w.Done()
key := bytex.GetTestKey(id)
value, err := couloyDB.Get(key)
assert.Nil(t, err)
assert.Equal(t, value, append(key, fill...))
}(id)
}
w.Wait()
}
func TestDB_Fold(t *testing.T) {
options := DefaultOptions()
options.SetSyncWrites(false)
couloyDB, err := NewCouloyDB(options)
defer destroyCouloyDB(couloyDB)
assert.Nil(t, err)
assert.NotNil(t, couloyDB)
// put some key-value
var n = 3
for i := 0; i < n; i++ {
err = couloyDB.Put([]byte(fmt.Sprintf("key%d", i)), []byte(fmt.Sprintf("value%d", i)))
assert.Nil(t, err)
}
// define a map that collects all key-value pairs
results := make(map[string]string)
err = couloyDB.Fold(func(key []byte, value []byte) bool {
results[string(key)] = string(value)
return true
})
assert.Nil(t, err)
// check the result
assert.Equal(t, n, len(results))
// test the early termination feature of the Fold func
count := 0
err = couloyDB.Fold(func(key []byte, value []byte) bool {
count++
if count == 2 {
return false
}
return true
})
assert.Nil(t, err)
assert.Equal(t, count, 2)
}