-
Notifications
You must be signed in to change notification settings - Fork 7
/
merkletree_test.go
381 lines (309 loc) · 8.48 KB
/
merkletree_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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
package merkletree
import (
"bytes"
"encoding/hex"
"fmt"
"strings"
"testing"
)
// drops the unprintable prefix
func bytesToStrForTest(xs []byte) string {
var xs2 []byte
for i, c := range xs {
if c < 128 && c > 31 {
xs2 = append(xs2, xs[i])
}
}
return string(xs2)
}
func trimNewlines(str string) string {
return strings.Trim(str, "\n")
}
func expectStrEqual(t *testing.T, actual string, expected string) {
if trimNewlines(actual) != expected {
fmt.Println(fmt.Sprintf("=====ACTUAL======\n\n%s\n\n=====EXPECTED======\n\n%s\n", actual, expected))
t.Fail()
}
}
var givenOneBlock = trimNewlines(`
(B root: alphaalpha
(L root: alpha)
(L root: alpha))
`)
var givenFourBlocks = trimNewlines(`
(B root: alphabetakappagamma
(B root: alphabeta
(L root: alpha)
(L root: beta))
(B root: kappagamma
(L root: kappa)
(L root: gamma)))
`)
var givenTwoBlocks = trimNewlines(`
(B root: alphabeta
(L root: alpha)
(L root: beta))
`)
var givenThreeBlocks = trimNewlines(`
(B root: alphabetakappakappa
(B root: alphabeta
(L root: alpha)
(L root: beta))
(B root: kappakappa
(L root: kappa)
(L root: kappa)))
`)
var givenSixBlocks = trimNewlines(`
(B root: alphabetakappagammaepsilonomegaepsilonomega
(B root: alphabetakappagamma
(B root: alphabeta
(L root: alpha)
(L root: beta))
(B root: kappagamma
(L root: kappa)
(L root: gamma)))
(B root: epsilonomegaepsilonomega
(B root: epsilonomega
(L root: epsilon)
(L root: omega))
(B root: epsilonomega
(L root: epsilon)
(L root: omega))))
`)
var proofA = trimNewlines(`
route from omega (leaf) to root:
epsilon + omega = epsilonomega
epsilonomega + muzeta = epsilonomegamuzeta
alphabetakappagamma + epsilonomegamuzeta = alphabetakappagammaepsilonomegamuzeta
`)
func TestCreateMerkleTree(t *testing.T) {
t.Run("easy tree - just one level (the root) of nodes", func(t *testing.T) {
blocks := [][]byte{[]byte("alpha"), []byte("beta")}
tree := NewTree(IdentityHashForTest, blocks)
expectStrEqual(t, tree.ToString(bytesToStrForTest, 0), givenTwoBlocks)
})
t.Run("two levels of nodes", func(t *testing.T) {
blocks := [][]byte{[]byte("alpha"), []byte("beta"), []byte("kappa"), []byte("gamma")}
tree := NewTree(IdentityHashForTest, blocks)
expectStrEqual(t, tree.ToString(bytesToStrForTest, 0), givenFourBlocks)
})
t.Run("one block - one level", func(t *testing.T) {
blocks := [][]byte{[]byte("alpha")}
tree := NewTree(IdentityHashForTest, blocks)
expectStrEqual(t, tree.ToString(bytesToStrForTest, 0), givenOneBlock)
})
/*
duplicate a leaf
123{3}
/ \
12 3{3}
/ \ / \
1 2 3 {3}
*/
t.Run("duplicate a leaf to keep the binary tree balanced", func(t *testing.T) {
blocks := [][]byte{[]byte("alpha"), []byte("beta"), []byte("kappa")}
tree := NewTree(IdentityHashForTest, blocks)
expectStrEqual(t, tree.ToString(bytesToStrForTest, 0), givenThreeBlocks)
})
/*
duplicate a node
123456{56}
/ \
1234 56{56}
/ \ / \
12 34 56 {56}
/ \ / \ / \ / \
1 2 3 4 5 6 {5} {6}
*/
t.Run("duplicate a branch to keep the tree balanced", func(t *testing.T) {
blocks := [][]byte{[]byte("alpha"), []byte("beta"), []byte("kappa"), []byte("gamma"), []byte("epsilon"), []byte("omega")}
tree := NewTree(IdentityHashForTest, blocks)
expectStrEqual(t, tree.ToString(bytesToStrForTest, 0), givenSixBlocks)
})
}
func TestAuditProof(t *testing.T) {
t.Run("Tree#CreateProof", func(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
[]byte("kappa"),
}
tree := NewTree(IdentityHashForTest, blocks)
target := tree.checksumFunc(true, []byte("alpha"))
proof, err := tree.CreateProof(target)
if err != nil {
t.Fail()
}
expected := Proof{
parts: []*ProofPart{{
isRight: true,
checksum: tree.checksumFunc(true, []byte("beta")),
}, {
isRight: true,
checksum: tree.checksumFunc(false, append(tree.checksumFunc(true, []byte("kappa")), tree.checksumFunc(true, []byte("kappa"))...)),
}},
target: target,
}
if !expected.Equals(proof) {
t.Fail()
}
})
t.Run("Proof#ToString", func(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
[]byte("kappa"),
[]byte("gamma"),
[]byte("epsilon"),
[]byte("omega"),
[]byte("mu"),
[]byte("zeta"),
}
tree := NewTree(IdentityHashForTest, blocks)
target := tree.checksumFunc(true, []byte("omega"))
proof, _ := tree.CreateProof(target)
expectStrEqual(t, proof.ToString(bytesToStrForTest), proofA)
})
t.Run("Tree#VerifyProof", func(t *testing.T) {
t.Run("valid proof for a two-leaf tree", func(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
}
tree := NewTree(IdentityHashForTest, blocks)
proof := &Proof{
parts: []*ProofPart{{
isRight: true,
checksum: tree.checksumFunc(true, []byte("beta")),
}},
target: tree.checksumFunc(true, []byte("alpha")),
}
if !tree.VerifyProof(proof) {
t.Fail()
}
})
t.Run("invalid proof (isRight should be true) for a two-leaf tree", func(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
}
tree := NewTree(IdentityHashForTest, blocks)
proof := &Proof{
parts: []*ProofPart{{
isRight: false,
checksum: tree.checksumFunc(true, []byte("beta")),
}},
target: tree.checksumFunc(true, []byte("alpha")),
}
if tree.VerifyProof(proof) {
t.Fail()
}
})
t.Run("invalid proof (wrong sibling) for a two-leaf tree", func(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
}
tree := NewTree(IdentityHashForTest, blocks)
proof := &Proof{
parts: []*ProofPart{{
isRight: true,
checksum: tree.checksumFunc(true, []byte("kappa")),
}},
target: tree.checksumFunc(true, []byte("alpha")),
}
if tree.VerifyProof(proof) {
t.Fail()
}
})
t.Run("invalid proof (tree doesn't contain target) for a two-leaf tree", func(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
}
tree := NewTree(IdentityHashForTest, blocks)
proof := &Proof{
parts: []*ProofPart{{
isRight: true,
checksum: tree.checksumFunc(true, []byte("beta")),
}},
target: tree.checksumFunc(true, []byte("kappa")),
}
if tree.VerifyProof(proof) {
t.Fail()
}
})
t.Run("valid proof for eight leaf tree", func(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
[]byte("kappa"),
[]byte("gamma"),
[]byte("epsilon"),
[]byte("omega"),
[]byte("mu"),
[]byte("zeta"),
}
tree := NewTree(IdentityHashForTest, blocks)
target := tree.checksumFunc(true, []byte("alpha"))
proof, err := tree.CreateProof(target)
if err != nil {
t.Fail()
}
if !tree.VerifyProof(proof) {
t.Fail()
}
})
})
}
func TestHandlesPreimageAttack(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
[]byte("kappa"),
}
tree := NewTree(Sha256DoubleHash, blocks)
l := append(tree.checksumFunc(true, []byte("alpha")), tree.checksumFunc(true, []byte("beta"))...)
r := append(tree.checksumFunc(true, []byte("kappa")), tree.checksumFunc(true, []byte("kappa"))...)
tree2 := NewTree(Sha256DoubleHash, [][]byte{l, r})
if bytes.Equal(tree.root.GetChecksum(), tree2.root.GetChecksum()) {
t.Fail()
}
}
func TestDocsCreateAndPrintAuditProof(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
[]byte("kappa"),
}
tree := NewTree(Sha256DoubleHash, blocks)
target := tree.checksumFunc(true, []byte("alpha"))
proof, _ := tree.CreateProof(target)
fmt.Println(proof.ToString(func(bytes []byte) string {
return hex.EncodeToString(bytes)[0:16]
}))
}
func TestDocsCreateAndPrintTree(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
[]byte("kappa"),
}
tree := NewTree(Sha256DoubleHash, blocks)
fmt.Println(tree.ToString(func(bytes []byte) string {
return hex.EncodeToString(bytes)[0:16]
}, 0))
}
func TestDocsValidateProof(t *testing.T) {
blocks := [][]byte{
[]byte("alpha"),
[]byte("beta"),
[]byte("kappa"),
}
tree := NewTree(Sha256DoubleHash, blocks)
proof, err := tree.CreateProof(tree.rows[0][0].GetChecksum())
if err != nil {
panic(err)
}
tree.VerifyProof(proof) // true
}