forked from osmosis-labs/osmosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree_test.go
136 lines (109 loc) · 2.89 KB
/
tree_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
package store_test
import (
"bytes"
"math/rand"
"sort"
"testing"
"github.com/stretchr/testify/suite"
"github.com/cosmos/iavl"
dbm "github.com/tendermint/tm-db"
iavlstore "github.com/cosmos/cosmos-sdk/store/iavl"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/osmosis-labs/osmosis/store"
)
type TreeTestSuite struct {
suite.Suite
tree store.Tree
}
func (suite *TreeTestSuite) SetupTest() {
db := dbm.NewMemDB()
tree, err := iavl.NewMutableTree(db, 100)
suite.Require().NoError(err)
_, _, err = tree.SaveVersion()
suite.Require().Nil(err)
kvstore := iavlstore.UnsafeNewStore(tree)
suite.tree = store.NewTree(kvstore, 10)
}
func TestTreeTestSuite(t *testing.T) {
suite.Run(t, new(TreeTestSuite))
}
type pair struct {
key []byte
value uint64
}
type pairs []pair
var _ sort.Interface = pairs{}
func (p pairs) Len() int {
return len(p)
}
func (p pairs) Less(i, j int) bool {
return bytes.Compare(p[i].key, p[j].key) < 0
}
func (p pairs) Swap(i, j int) {
temp := p[i]
p[i] = p[j]
p[j] = temp
}
func (p pairs) sum() (res uint64) {
for _, pair := range p {
res += pair.value
}
return
}
func (suite *TreeTestSuite) TestTreeInvariants() {
suite.SetupTest()
pairs := pairs{pair{[]byte("hello"), 100}}
suite.tree.Set([]byte("hello"), sdk.NewIntFromUint64(100))
// tested up to 2000
for i := 0; i < 500; i++ {
// add a single element
key := make([]byte, rand.Int()%20)
value := rand.Uint64() % 100
rand.Read(key)
idx := sort.Search(len(pairs), func(n int) bool { return bytes.Compare(pairs[n].key, key) >= 0 })
if idx < len(pairs) {
if bytes.Equal(pairs[idx].key, key) {
pairs[idx] = pair{key, value}
} else {
pairs = append(pairs, pair{key, value})
sort.Sort(pairs)
}
} else {
pairs = append(pairs, pair{key, value})
}
suite.tree.Set(key, sdk.NewIntFromUint64(value))
// check all is right
for _, pair := range pairs {
suite.Require().Equal(suite.tree.Get(pair.key).Uint64(), pair.value)
// XXX: check all branch nodes
}
// check accumulation calc is alright
left, exact, right := uint64(0), pairs[0].value, pairs[1:].sum()
for idx, pair := range pairs {
tleft, texact, tright := suite.tree.SplitAcc(pair.key)
suite.Require().Equal(left, tleft.Uint64())
suite.Require().Equal(exact, texact.Uint64())
suite.Require().Equal(right, tright.Uint64())
key := append(pair.key, 0x00)
if idx == len(pairs)-1 {
break
}
if bytes.Equal(key, pairs[idx+1].key) {
break
}
tleft, texact, tright = suite.tree.SplitAcc(key)
suite.Require().Equal(left+exact, tleft.Uint64())
suite.Require().Equal(uint64(0), texact.Uint64())
suite.Require().Equal(right, tright.Uint64())
left += exact
exact = pairs[idx+1].value
right -= exact
}
if rand.Int()%2 == 0 {
idx := rand.Int() % len(pairs)
pair := pairs[idx]
pairs = append(pairs[:idx], pairs[idx+1:]...)
suite.tree.Remove(pair.key)
}
}
}