-
Notifications
You must be signed in to change notification settings - Fork 0
/
db_test.go
71 lines (61 loc) · 1.12 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
package mini_kv_db
import (
"reflect"
"testing"
)
func TestOpen(t *testing.T) {
miniKVDB, err := Open("/tmp/minikvdb")
if err != nil {
t.Error(err)
}
t.Log(miniKVDB)
}
func TestMiniKVDB_Set(t *testing.T) {
miniKVDB, err := Open("/tmp/minikvdb")
if err != nil {
t.Error(err)
}
err = miniKVDB.Set([]byte("key1"), []byte("value1"))
if err != nil {
t.Error(err)
}
}
//
// TestMiniKVDB_Get
// @Description: 测试这个方法前要先测试set
// @param t
//
func TestMiniKVDB_Get(t *testing.T) {
miniKVDB, err := Open("/tmp/minikvdb")
if err != nil {
t.Error(err)
}
bytes, err := miniKVDB.Get([]byte("key1"))
if err != nil {
t.Error(err)
}
equal := reflect.DeepEqual(bytes, []byte("value1"))
if !equal {
t.Error("not equal")
}
}
func TestMiniKVDB_Del(t *testing.T) {
miniKVDB, err := Open("/tmp/minikvdb")
if err != nil {
t.Error(err)
}
err = miniKVDB.Del([]byte("key1"))
if err != nil {
t.Error(err)
}
}
func TestMiniKVDB_Merge(t *testing.T) {
miniKVDB, err := Open("/tmp/minikvdb")
if err != nil {
t.Error(err)
}
err = miniKVDB.Merge()
if err != nil {
t.Error("merge err", err)
}
}