forked from linxGnu/grocksdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
comparator_test.go
52 lines (43 loc) · 1.08 KB
/
comparator_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
package grocksdb
import (
"bytes"
"runtime"
"testing"
"github.com/stretchr/testify/require"
)
func TestComparator(t *testing.T) {
t.Parallel()
db, opts := newTestDBAndOpts(t, func(opts *Options) {
opts.SetComparator(NewComparator("rev", func(a, b []byte) int {
return bytes.Compare(a, b) * -1
}))
})
defer func() {
db.Close()
opts.Destroy()
}()
runtime.GC()
// insert keys
givenKeys := [][]byte{[]byte("key1"), []byte("key2"), []byte("key3")}
wo := NewDefaultWriteOptions()
for _, k := range givenKeys {
require.Nil(t, db.Put(wo, k, []byte("val")))
runtime.GC()
}
// create a iterator to collect the keys
ro := NewDefaultReadOptions()
iter := db.NewIterator(ro)
defer iter.Close()
// we seek to the last key and iterate in reverse order
// to match given keys
var actualKeys [][]byte
for iter.SeekToLast(); iter.Valid(); iter.Prev() {
key := make([]byte, 4)
copy(key, iter.Key().Data())
actualKeys = append(actualKeys, key)
runtime.GC()
}
require.Nil(t, iter.Err())
// ensure that the order is correct
require.EqualValues(t, actualKeys, givenKeys)
}