aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/storage/chunker_test.go
blob: db719ca047b303cd6cfb92792e3abd01a1e36a0f (plain) (blame)
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
// Copyright 2016 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package storage

import (
    "bytes"
    "context"
    "crypto/rand"
    "encoding/binary"
    "fmt"
    "io"
    "testing"

    "github.com/ethereum/go-ethereum/crypto/sha3"
)

/*
Tests TreeChunker by splitting and joining a random byte slice
*/

type test interface {
    Fatalf(string, ...interface{})
    Logf(string, ...interface{})
}

type chunkerTester struct {
    inputs map[uint64][]byte
    t      test
}

func newTestHasherStore(store ChunkStore, hash string) *hasherStore {
    return NewHasherStore(store, MakeHashFunc(hash), false)
}

func testRandomBrokenData(n int, tester *chunkerTester) {
    data := io.LimitReader(rand.Reader, int64(n))
    brokendata := brokenLimitReader(data, n, n/2)

    buf := make([]byte, n)
    _, err := brokendata.Read(buf)
    if err == nil || err.Error() != "Broken reader" {
        tester.t.Fatalf("Broken reader is not broken, hence broken. Returns: %v", err)
    }

    data = io.LimitReader(rand.Reader, int64(n))
    brokendata = brokenLimitReader(data, n, n/2)

    putGetter := newTestHasherStore(NewMapChunkStore(), SHA3Hash)

    expectedError := fmt.Errorf("Broken reader")
    ctx := context.Background()
    key, _, err := TreeSplit(ctx, brokendata, int64(n), putGetter)
    if err == nil || err.Error() != expectedError.Error() {
        tester.t.Fatalf("Not receiving the correct error! Expected %v, received %v", expectedError, err)
    }
    tester.t.Logf(" Address = %v\n", key)
}

func testRandomData(usePyramid bool, hash string, n int, tester *chunkerTester) Address {
    if tester.inputs == nil {
        tester.inputs = make(map[uint64][]byte)
    }
    input, found := tester.inputs[uint64(n)]
    var data io.Reader
    if !found {
        data, input = GenerateRandomData(n)
        tester.inputs[uint64(n)] = input
    } else {
        data = io.LimitReader(bytes.NewReader(input), int64(n))
    }

    putGetter := newTestHasherStore(NewMapChunkStore(), hash)

    var addr Address
    var wait func(context.Context) error
    var err error
    ctx := context.TODO()
    if usePyramid {
        addr, wait, err = PyramidSplit(ctx, data, putGetter, putGetter)
    } else {
        addr, wait, err = TreeSplit(ctx, data, int64(n), putGetter)
    }
    if err != nil {
        tester.t.Fatalf(err.Error())
    }
    tester.t.Logf(" Address = %v\n", addr)
    err = wait(ctx)
    if err != nil {
        tester.t.Fatalf(err.Error())
    }

    reader := TreeJoin(ctx, addr, putGetter, 0)
    output := make([]byte, n)
    r, err := reader.Read(output)
    if r != n || err != io.EOF {
        tester.t.Fatalf("read error  read: %v  n = %v  err = %v\n", r, n, err)
    }
    if input != nil {
        if !bytes.Equal(output, input) {
            tester.t.Fatalf("input and output mismatch\n IN: %v\nOUT: %v\n", input, output)
        }
    }

    // testing partial read
    for i := 1; i < n; i += 10000 {
        readableLength := n - i
        output := make([]byte, readableLength)
        r, err := reader.ReadAt(output, int64(i))
        if r != readableLength || err != io.EOF {
            tester.t.Fatalf("readAt error with offset %v read: %v  n = %v  err = %v\n", i, r, readableLength, err)
        }
        if input != nil {
            if !bytes.Equal(output, input[i:]) {
                tester.t.Fatalf("input and output mismatch\n IN: %v\nOUT: %v\n", input[i:], output)
            }
        }
    }

    return addr
}

func TestSha3ForCorrectness(t *testing.T) {
    tester := &chunkerTester{t: t}

    size := 4096
    input := make([]byte, size+8)
    binary.LittleEndian.PutUint64(input[:8], uint64(size))

    io.LimitReader(bytes.NewReader(input[8:]), int64(size))

    rawSha3 := sha3.NewKeccak256()
    rawSha3.Reset()
    rawSha3.Write(input)
    rawSha3Output := rawSha3.Sum(nil)

    sha3FromMakeFunc := MakeHashFunc(SHA3Hash)()
    sha3FromMakeFunc.ResetWithLength(input[:8])
    sha3FromMakeFunc.Write(input[8:])
    sha3FromMakeFuncOutput := sha3FromMakeFunc.Sum(nil)

    if len(rawSha3Output) != len(sha3FromMakeFuncOutput) {
        tester.t.Fatalf("Original SHA3 and abstracted Sha3 has different length %v:%v\n", len(rawSha3Output), len(sha3FromMakeFuncOutput))
    }

    if !bytes.Equal(rawSha3Output, sha3FromMakeFuncOutput) {
        tester.t.Fatalf("Original SHA3 and abstracted Sha3 mismatch %v:%v\n", rawSha3Output, sha3FromMakeFuncOutput)
    }

}

func TestDataAppend(t *testing.T) {
    sizes := []int{1, 1, 1, 4095, 4096, 4097, 1, 1, 1, 123456, 2345678, 2345678}
    appendSizes := []int{4095, 4096, 4097, 1, 1, 1, 8191, 8192, 8193, 9000, 3000, 5000}

    tester := &chunkerTester{t: t}
    for i := range sizes {
        n := sizes[i]
        m := appendSizes[i]

        if tester.inputs == nil {
            tester.inputs = make(map[uint64][]byte)
        }
        input, found := tester.inputs[uint64(n)]
        var data io.Reader
        if !found {
            data, input = GenerateRandomData(n)
            tester.inputs[uint64(n)] = input
        } else {
            data = io.LimitReader(bytes.NewReader(input), int64(n))
        }

        store := NewMapChunkStore()
        putGetter := newTestHasherStore(store, SHA3Hash)

        ctx := context.TODO()
        addr, wait, err := PyramidSplit(ctx, data, putGetter, putGetter)
        if err != nil {
            tester.t.Fatalf(err.Error())
        }
        err = wait(ctx)
        if err != nil {
            tester.t.Fatalf(err.Error())
        }
        //create a append data stream
        appendInput, found := tester.inputs[uint64(m)]
        var appendData io.Reader
        if !found {
            appendData, appendInput = GenerateRandomData(m)
            tester.inputs[uint64(m)] = appendInput
        } else {
            appendData = io.LimitReader(bytes.NewReader(appendInput), int64(m))
        }

        putGetter = newTestHasherStore(store, SHA3Hash)
        newAddr, wait, err := PyramidAppend(ctx, addr, appendData, putGetter, putGetter)
        if err != nil {
            tester.t.Fatalf(err.Error())
        }
        err = wait(ctx)
        if err != nil {
            tester.t.Fatalf(err.Error())
        }

        reader := TreeJoin(ctx, newAddr, putGetter, 0)
        newOutput := make([]byte, n+m)
        r, err := reader.Read(newOutput)
        if r != (n + m) {
            tester.t.Fatalf("read error  read: %v  n = %v  m = %v  err = %v\n", r, n, m, err)
        }

        newInput := append(input, appendInput...)
        if !bytes.Equal(newOutput, newInput) {
            tester.t.Fatalf("input and output mismatch\n IN: %v\nOUT: %v\n", newInput, newOutput)
        }
    }
}

func TestRandomData(t *testing.T) {
    // This test can validate files up to a relatively short length, as tree chunker slows down drastically.
    // Validation of longer files is done by TestLocalStoreAndRetrieve in swarm package.
    sizes := []int{1, 60, 83, 179, 253, 1024, 4095, 4096, 4097, 8191, 8192, 8193, 12287, 12288, 12289, 524288, 524288 + 1, 524288 + 4097, 7 * 524288, 7*524288 + 1, 7*524288 + 4097}
    tester := &chunkerTester{t: t}

    for _, s := range sizes {
        treeChunkerAddress := testRandomData(false, SHA3Hash, s, tester)
        pyramidChunkerAddress := testRandomData(true, SHA3Hash, s, tester)
        if treeChunkerAddress.String() != pyramidChunkerAddress.String() {
            tester.t.Fatalf("tree chunker and pyramid chunker key mismatch for size %v\n TC: %v\n PC: %v\n", s, treeChunkerAddress.String(), pyramidChunkerAddress.String())
        }
    }

    for _, s := range sizes {
        treeChunkerAddress := testRandomData(false, BMTHash, s, tester)
        pyramidChunkerAddress := testRandomData(true, BMTHash, s, tester)
        if treeChunkerAddress.String() != pyramidChunkerAddress.String() {
            tester.t.Fatalf("tree chunker and pyramid chunker key mismatch for size %v\n TC: %v\n PC: %v\n", s, treeChunkerAddress.String(), pyramidChunkerAddress.String())
        }
    }
}

func TestRandomBrokenData(t *testing.T) {
    sizes := []int{1, 60, 83, 179, 253, 1024, 4095, 4096, 4097, 8191, 8192, 8193, 12287, 12288, 12289, 123456, 2345678}
    tester := &chunkerTester{t: t}
    for _, s := range sizes {
        testRandomBrokenData(s, tester)
    }
}

func benchReadAll(reader LazySectionReader) {
    size, _ := reader.Size(context.TODO(), nil)
    output := make([]byte, 1000)
    for pos := int64(0); pos < size; pos += 1000 {
        reader.ReadAt(output, pos)
    }
}

func benchmarkSplitJoin(n int, t *testing.B) {
    t.ReportAllocs()
    for i := 0; i < t.N; i++ {
        data := testDataReader(n)

        putGetter := newTestHasherStore(NewMapChunkStore(), SHA3Hash)
        ctx := context.TODO()
        key, wait, err := PyramidSplit(ctx, data, putGetter, putGetter)
        if err != nil {
            t.Fatalf(err.Error())
        }
        err = wait(ctx)
        if err != nil {
            t.Fatalf(err.Error())
        }
        reader := TreeJoin(ctx, key, putGetter, 0)
        benchReadAll(reader)
    }
}

func benchmarkSplitTreeSHA3(n int, t *testing.B) {
    t.ReportAllocs()
    for i := 0; i < t.N; i++ {
        data := testDataReader(n)
        putGetter := newTestHasherStore(&FakeChunkStore{}, SHA3Hash)

        ctx := context.Background()
        _, wait, err := TreeSplit(ctx, data, int64(n), putGetter)
        if err != nil {
            t.Fatalf(err.Error())
        }
        err = wait(ctx)
        if err != nil {
            t.Fatalf(err.Error())
        }

    }
}

func benchmarkSplitTreeBMT(n int, t *testing.B) {
    t.ReportAllocs()
    for i := 0; i < t.N; i++ {
        data := testDataReader(n)
        putGetter := newTestHasherStore(&FakeChunkStore{}, BMTHash)

        ctx := context.Background()
        _, wait, err := TreeSplit(ctx, data, int64(n), putGetter)
        if err != nil {
            t.Fatalf(err.Error())
        }
        err = wait(ctx)
        if err != nil {
            t.Fatalf(err.Error())
        }
    }
}

func benchmarkSplitPyramidBMT(n int, t *testing.B) {
    t.ReportAllocs()
    for i := 0; i < t.N; i++ {
        data := testDataReader(n)
        putGetter := newTestHasherStore(&FakeChunkStore{}, BMTHash)

        ctx := context.Background()
        _, wait, err := PyramidSplit(ctx, data, putGetter, putGetter)
        if err != nil {
            t.Fatalf(err.Error())
        }
        err = wait(ctx)
        if err != nil {
            t.Fatalf(err.Error())
        }
    }
}

func benchmarkSplitPyramidSHA3(n int, t *testing.B) {
    t.ReportAllocs()
    for i := 0; i < t.N; i++ {
        data := testDataReader(n)
        putGetter := newTestHasherStore(&FakeChunkStore{}, SHA3Hash)

        ctx := context.Background()
        _, wait, err := PyramidSplit(ctx, data, putGetter, putGetter)
        if err != nil {
            t.Fatalf(err.Error())
        }
        err = wait(ctx)
        if err != nil {
            t.Fatalf(err.Error())
        }
    }
}

func benchmarkSplitAppendPyramid(n, m int, t *testing.B) {
    t.ReportAllocs()
    for i := 0; i < t.N; i++ {
        data := testDataReader(n)
        data1 := testDataReader(m)

        store := NewMapChunkStore()
        putGetter := newTestHasherStore(store, SHA3Hash)

        ctx := context.Background()
        key, wait, err := PyramidSplit(ctx, data, putGetter, putGetter)
        if err != nil {
            t.Fatalf(err.Error())
        }
        err = wait(ctx)
        if err != nil {
            t.Fatalf(err.Error())
        }

        putGetter = newTestHasherStore(store, SHA3Hash)
        _, wait, err = PyramidAppend(ctx, key, data1, putGetter, putGetter)
        if err != nil {
            t.Fatalf(err.Error())
        }
        err = wait(ctx)
        if err != nil {
            t.Fatalf(err.Error())
        }
    }
}

func BenchmarkSplitJoin_2(t *testing.B) { benchmarkSplitJoin(100, t) }
func BenchmarkSplitJoin_3(t *testing.B) { benchmarkSplitJoin(1000, t) }
func BenchmarkSplitJoin_4(t *testing.B) { benchmarkSplitJoin(10000, t) }
func BenchmarkSplitJoin_5(t *testing.B) { benchmarkSplitJoin(100000, t) }
func BenchmarkSplitJoin_6(t *testing.B) { benchmarkSplitJoin(1000000, t) }
func BenchmarkSplitJoin_7(t *testing.B) { benchmarkSplitJoin(10000000, t) }

// func BenchmarkSplitJoin_8(t *testing.B) { benchmarkJoin(100000000, t) }

func BenchmarkSplitTreeSHA3_2(t *testing.B)  { benchmarkSplitTreeSHA3(100, t) }
func BenchmarkSplitTreeSHA3_2h(t *testing.B) { benchmarkSplitTreeSHA3(500, t) }
func BenchmarkSplitTreeSHA3_3(t *testing.B)  { benchmarkSplitTreeSHA3(1000, t) }
func BenchmarkSplitTreeSHA3_3h(t *testing.B) { benchmarkSplitTreeSHA3(5000, t) }
func BenchmarkSplitTreeSHA3_4(t *testing.B)  { benchmarkSplitTreeSHA3(10000, t) }
func BenchmarkSplitTreeSHA3_4h(t *testing.B) { benchmarkSplitTreeSHA3(50000, t) }
func BenchmarkSplitTreeSHA3_5(t *testing.B)  { benchmarkSplitTreeSHA3(100000, t) }
func BenchmarkSplitTreeSHA3_6(t *testing.B)  { benchmarkSplitTreeSHA3(1000000, t) }
func BenchmarkSplitTreeSHA3_7(t *testing.B)  { benchmarkSplitTreeSHA3(10000000, t) }

// func BenchmarkSplitTreeSHA3_8(t *testing.B)  { benchmarkSplitTreeSHA3(100000000, t) }

func BenchmarkSplitTreeBMT_2(t *testing.B)  { benchmarkSplitTreeBMT(100, t) }
func BenchmarkSplitTreeBMT_2h(t *testing.B) { benchmarkSplitTreeBMT(500, t) }
func BenchmarkSplitTreeBMT_3(t *testing.B)  { benchmarkSplitTreeBMT(1000, t) }
func BenchmarkSplitTreeBMT_3h(t *testing.B) { benchmarkSplitTreeBMT(5000, t) }
func BenchmarkSplitTreeBMT_4(t *testing.B)  { benchmarkSplitTreeBMT(10000, t) }
func BenchmarkSplitTreeBMT_4h(t *testing.B) { benchmarkSplitTreeBMT(50000, t) }
func BenchmarkSplitTreeBMT_5(t *testing.B)  { benchmarkSplitTreeBMT(100000, t) }
func BenchmarkSplitTreeBMT_6(t *testing.B)  { benchmarkSplitTreeBMT(1000000, t) }
func BenchmarkSplitTreeBMT_7(t *testing.B)  { benchmarkSplitTreeBMT(10000000, t) }

// func BenchmarkSplitTreeBMT_8(t *testing.B)  { benchmarkSplitTreeBMT(100000000, t) }

func BenchmarkSplitPyramidSHA3_2(t *testing.B)  { benchmarkSplitPyramidSHA3(100, t) }
func BenchmarkSplitPyramidSHA3_2h(t *testing.B) { benchmarkSplitPyramidSHA3(500, t) }
func BenchmarkSplitPyramidSHA3_3(t *testing.B)  { benchmarkSplitPyramidSHA3(1000, t) }
func BenchmarkSplitPyramidSHA3_3h(t *testing.B) { benchmarkSplitPyramidSHA3(5000, t) }
func BenchmarkSplitPyramidSHA3_4(t *testing.B)  { benchmarkSplitPyramidSHA3(10000, t) }
func BenchmarkSplitPyramidSHA3_4h(t *testing.B) { benchmarkSplitPyramidSHA3(50000, t) }
func BenchmarkSplitPyramidSHA3_5(t *testing.B)  { benchmarkSplitPyramidSHA3(100000, t) }
func BenchmarkSplitPyramidSHA3_6(t *testing.B)  { benchmarkSplitPyramidSHA3(1000000, t) }
func BenchmarkSplitPyramidSHA3_7(t *testing.B)  { benchmarkSplitPyramidSHA3(10000000, t) }

// func BenchmarkSplitPyramidSHA3_8(t *testing.B)  { benchmarkSplitPyramidSHA3(100000000, t) }

func BenchmarkSplitPyramidBMT_2(t *testing.B)  { benchmarkSplitPyramidBMT(100, t) }
func BenchmarkSplitPyramidBMT_2h(t *testing.B) { benchmarkSplitPyramidBMT(500, t) }
func BenchmarkSplitPyramidBMT_3(t *testing.B)  { benchmarkSplitPyramidBMT(1000, t) }
func BenchmarkSplitPyramidBMT_3h(t *testing.B) { benchmarkSplitPyramidBMT(5000, t) }
func BenchmarkSplitPyramidBMT_4(t *testing.B)  { benchmarkSplitPyramidBMT(10000, t) }
func BenchmarkSplitPyramidBMT_4h(t *testing.B) { benchmarkSplitPyramidBMT(50000, t) }
func BenchmarkSplitPyramidBMT_5(t *testing.B)  { benchmarkSplitPyramidBMT(100000, t) }
func BenchmarkSplitPyramidBMT_6(t *testing.B)  { benchmarkSplitPyramidBMT(1000000, t) }
func BenchmarkSplitPyramidBMT_7(t *testing.B)  { benchmarkSplitPyramidBMT(10000000, t) }

// func BenchmarkSplitPyramidBMT_8(t *testing.B)  { benchmarkSplitPyramidBMT(100000000, t) }

func BenchmarkSplitAppendPyramid_2(t *testing.B)  { benchmarkSplitAppendPyramid(100, 1000, t) }
func BenchmarkSplitAppendPyramid_2h(t *testing.B) { benchmarkSplitAppendPyramid(500, 1000, t) }
func BenchmarkSplitAppendPyramid_3(t *testing.B)  { benchmarkSplitAppendPyramid(1000, 1000, t) }
func BenchmarkSplitAppendPyramid_4(t *testing.B)  { benchmarkSplitAppendPyramid(10000, 1000, t) }
func BenchmarkSplitAppendPyramid_4h(t *testing.B) { benchmarkSplitAppendPyramid(50000, 1000, t) }
func BenchmarkSplitAppendPyramid_5(t *testing.B)  { benchmarkSplitAppendPyramid(1000000, 1000, t) }
func BenchmarkSplitAppendPyramid_6(t *testing.B)  { benchmarkSplitAppendPyramid(1000000, 1000, t) }
func BenchmarkSplitAppendPyramid_7(t *testing.B)  { benchmarkSplitAppendPyramid(10000000, 1000, t) }

// func BenchmarkAppendPyramid_8(t *testing.B)  { benchmarkAppendPyramid(100000000, 1000, t) }

// go test -timeout 20m -cpu 4 -bench=./swarm/storage -run no
// If you dont add the timeout argument above .. the benchmark will timeout and dump