-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnode_test.go
303 lines (262 loc) · 6.2 KB
/
node_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
302
303
package avl
import (
"testing"
"github.com/stretchr/testify/suite"
"golang.org/x/xerrors"
)
type ExampleMutableNode struct {
key []byte
height int16
left MutableNode
right MutableNode
value int
}
func (em *ExampleMutableNode) Key() []byte {
return em.key
}
func (em *ExampleMutableNode) Height() int16 {
return em.height
}
func (em *ExampleMutableNode) SetHeight(height int16) error {
if height < 0 {
return xerrors.Errorf("height must be greater than zero; height=%d", height)
}
em.height = height
return nil
}
func (em *ExampleMutableNode) Left() MutableNode {
return em.left
}
func (em *ExampleMutableNode) LeftKey() []byte {
if em.left == nil {
return nil
}
return em.left.Key()
}
func (em *ExampleMutableNode) SetLeft(node MutableNode) error {
if node == nil {
em.left = nil
return nil
}
if EqualKey(em.key, node.Key()) {
return xerrors.Errorf("left is same node; key=%v", em.key)
}
em.left = node
return nil
}
func (em *ExampleMutableNode) Right() MutableNode {
return em.right
}
func (em *ExampleMutableNode) RightKey() []byte {
if em.right == nil {
return nil
}
return em.right.Key()
}
func (em *ExampleMutableNode) SetRight(node MutableNode) error {
if node == nil {
em.right = nil
return nil
}
if EqualKey(em.key, node.Key()) {
return xerrors.Errorf("right is same node; key=%v", em.key)
}
em.right = node
return nil
}
func (em *ExampleMutableNode) Merge(node MutableNode) error {
e, ok := node.(*ExampleMutableNode)
if !ok {
return xerrors.Errorf("merge node is not *ExampleMutableNode; node=%T", node)
}
em.value = e.value
return nil
}
type ExampleNode struct {
key []byte
height int16
left []byte
right []byte
}
func (em *ExampleNode) Key() []byte {
return em.key
}
func (em *ExampleNode) Height() int16 {
return em.height
}
func (em *ExampleNode) LeftKey() []byte {
if em.left == nil || len(em.left) < 1 {
return nil
}
return em.left
}
func (em *ExampleNode) RightKey() []byte {
if em.right == nil || len(em.right) < 1 {
return nil
}
return em.right
}
type testNodeFuncs struct {
suite.Suite
}
func (t *testNodeFuncs) TestCompareKey() {
type b []byte
cases := []struct {
name string
a []byte
b []byte
result int
}{
{"1 char#0", b("a"), b("b"), -1},
{"1 char#1", b("a"), b("a"), 0},
{"1 char with space", b("a"), b("a "), -1},
{"int#0", b("0"), b("1"), -1},
{"int#1", b("1"), b("0"), 1},
{"int#2", b("0"), b("01"), -1},
}
for _, c := range cases {
c := c
t.Run(
c.name,
func() {
t.Equal(CompareKey(c.a, c.b), c.result, "%s: result not match", c.name)
},
)
}
}
func (t *testNodeFuncs) TestEqualKey() {
type b []byte
cases := []struct {
name string
a []byte
b []byte
result bool
}{
{"1 char#0", b("a"), b("b"), false},
{"1 char#1", b("a"), b("a"), true},
{"1 char with space", b("a"), b("a "), false},
{"int#0", b("0"), b("1"), false},
{"int#1", b("1"), b("0"), false},
{"int#2", b("0"), b("01"), false},
}
for _, c := range cases {
c := c
t.Run(
c.name,
func() {
t.Equal(EqualKey(c.a, c.b), c.result, "%s: result not match", c.name)
},
)
}
}
func (t *testNodeFuncs) TestIsValidNode() {
type b []byte
cases := []struct {
name string
node Node
left Node
right Node
result string
}{
{
name: "just with key",
node: &ExampleMutableNode{key: b("showme")},
},
{
name: "1 height without leaves",
node: &ExampleMutableNode{key: b("showme"), height: 1},
result: "height must be 0",
},
{
name: "0 height with left",
node: &ExampleMutableNode{key: b("5"), height: 0},
left: &ExampleMutableNode{key: b("3"), height: 0},
result: "height must be +1",
},
{
name: "0 height with right",
node: &ExampleMutableNode{key: b("5"), height: 0},
right: &ExampleMutableNode{key: b("8"), height: 0},
result: "height must be +1",
},
{
name: "bad height with left",
node: &ExampleMutableNode{key: b("5"), height: 3},
left: &ExampleMutableNode{key: b("3"), height: 0},
result: "height must be +1",
},
{
name: "bad height with right",
node: &ExampleMutableNode{key: b("5"), height: 3},
right: &ExampleMutableNode{key: b("8"), height: 0},
result: "height must be +1",
},
{
name: "bad left",
node: &ExampleMutableNode{key: b("5"), height: 1},
left: &ExampleMutableNode{key: b("8"), height: 0},
result: "left must be lesser",
},
{
name: "bad right",
node: &ExampleMutableNode{key: b("5"), height: 1},
left: &ExampleMutableNode{key: b("3"), height: 0},
result: "right must be greater",
},
{
name: "height with left is greater",
node: &ExampleMutableNode{key: b("5"), height: 2},
left: &ExampleMutableNode{key: b("3"), height: 1},
right: &ExampleMutableNode{key: b("8"), height: 0},
},
{
name: "bad height with left is greater",
node: &ExampleMutableNode{key: b("5"), height: 1},
left: &ExampleMutableNode{key: b("3"), height: 1},
right: &ExampleMutableNode{key: b("8"), height: 0},
result: "height must be +1",
},
{
name: "height violation; left > right+1",
node: &ExampleMutableNode{key: b("5"), height: 3},
left: &ExampleMutableNode{key: b("3"), height: 2},
right: &ExampleMutableNode{key: b("8"), height: 0},
result: "leaf is violated",
},
{
name: "height violation; right > left+1",
node: &ExampleMutableNode{key: b("5"), height: 3},
left: &ExampleMutableNode{key: b("3"), height: 0},
right: &ExampleMutableNode{key: b("8"), height: 2},
result: "leaf is violated",
},
}
for _, c := range cases {
c := c
t.Run(
c.name,
func() {
node := c.node.(*ExampleMutableNode)
if c.left != nil {
node.left = c.left.(*ExampleMutableNode)
}
if c.right != nil {
node.right = c.right.(*ExampleMutableNode)
}
err := IsValidNode(node, c.left, c.right)
if len(c.result) < 1 {
t.Nil(err, "%s: result must be nil, but %v", err)
} else {
if err == nil {
t.Nil(err, "%s: err must not be nil; expected=%v", c.result)
} else {
t.Contains(err.Error(), c.result, "%s: err does not match", c.name)
}
}
},
)
}
}
func TestNodeFuncs(t *testing.T) {
suite.Run(t, new(testNodeFuncs))
}