aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/storage/localstore/localstore_test.go
blob: c7309d3cd887d692fc020372dbcee176554e4169 (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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
// Copyright 2018 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 localstore

import (
    "bytes"
    "fmt"
    "io/ioutil"
    "math/rand"
    "os"
    "sort"
    "strconv"
    "sync"
    "testing"
    "time"

    ch "github.com/ethereum/go-ethereum/swarm/chunk"
    "github.com/ethereum/go-ethereum/swarm/shed"
    "github.com/ethereum/go-ethereum/swarm/storage"
    "github.com/syndtr/goleveldb/leveldb"
)

// TestDB validates if the chunk can be uploaded and
// correctly retrieved.
func TestDB(t *testing.T) {
    db, cleanupFunc := newTestDB(t, nil)
    defer cleanupFunc()

    chunk := generateRandomChunk()

    err := db.NewPutter(ModePutUpload).Put(chunk)
    if err != nil {
        t.Fatal(err)
    }

    got, err := db.NewGetter(ModeGetRequest).Get(chunk.Address())
    if err != nil {
        t.Fatal(err)
    }

    if !bytes.Equal(got.Address(), chunk.Address()) {
        t.Errorf("got address %x, want %x", got.Address(), chunk.Address())
    }
    if !bytes.Equal(got.Data(), chunk.Data()) {
        t.Errorf("got data %x, want %x", got.Data(), chunk.Data())
    }
}

// TestDB_updateGCSem tests maxParallelUpdateGC limit.
// This test temporary sets the limit to a low number,
// makes updateGC function execution time longer by
// setting a custom testHookUpdateGC function with a sleep
// and a count current and maximal number of goroutines.
func TestDB_updateGCSem(t *testing.T) {
    updateGCSleep := time.Second
    var count int
    var max int
    var mu sync.Mutex
    defer setTestHookUpdateGC(func() {
        mu.Lock()
        // add to the count of current goroutines
        count++
        if count > max {
            // set maximal detected numbers of goroutines
            max = count
        }
        mu.Unlock()

        // wait for some time to ensure multiple parallel goroutines
        time.Sleep(updateGCSleep)

        mu.Lock()
        count--
        mu.Unlock()
    })()

    defer func(m int) { maxParallelUpdateGC = m }(maxParallelUpdateGC)
    maxParallelUpdateGC = 3

    db, cleanupFunc := newTestDB(t, nil)
    defer cleanupFunc()

    chunk := generateRandomChunk()

    err := db.NewPutter(ModePutUpload).Put(chunk)
    if err != nil {
        t.Fatal(err)
    }

    getter := db.NewGetter(ModeGetRequest)

    // get more chunks then maxParallelUpdateGC
    // in time shorter then updateGCSleep
    for i := 0; i < 5; i++ {
        _, err = getter.Get(chunk.Address())
        if err != nil {
            t.Fatal(err)
        }
    }

    if max != maxParallelUpdateGC {
        t.Errorf("got max %v, want %v", max, maxParallelUpdateGC)
    }
}

// BenchmarkNew measures the time that New function
// needs to initialize and count the number of key/value
// pairs in GC index.
// This benchmark generates a number of chunks, uploads them,
// sets them to synced state for them to enter the GC index,
// and measures the execution time of New function by creating
// new databases with the same data directory.
//
// This benchmark takes significant amount of time.
//
// Measurements on MacBook Pro (Retina, 15-inch, Mid 2014) show
// that New function executes around 1s for database with 1M chunks.
//
// # go test -benchmem -run=none github.com/ethereum/go-ethereum/swarm/storage/localstore -bench BenchmarkNew -v -timeout 20m
// goos: darwin
// goarch: amd64
// pkg: github.com/ethereum/go-ethereum/swarm/storage/localstore
// BenchmarkNew/1000-8               200      11672414 ns/op     9570960 B/op      10008 allocs/op
// BenchmarkNew/10000-8              100      14890609 ns/op    10490118 B/op       7759 allocs/op
// BenchmarkNew/100000-8              20      58334080 ns/op    17763157 B/op      22978 allocs/op
// BenchmarkNew/1000000-8              2     748595153 ns/op    45297404 B/op     253242 allocs/op
// PASS
func BenchmarkNew(b *testing.B) {
    if testing.Short() {
        b.Skip("skipping benchmark in short mode")
    }
    for _, count := range []int{
        1000,
        10000,
        100000,
        1000000,
    } {
        b.Run(strconv.Itoa(count), func(b *testing.B) {
            dir, err := ioutil.TempDir("", "localstore-new-benchmark")
            if err != nil {
                b.Fatal(err)
            }
            defer os.RemoveAll(dir)
            baseKey := make([]byte, 32)
            if _, err := rand.Read(baseKey); err != nil {
                b.Fatal(err)
            }
            db, err := New(dir, baseKey, nil)
            if err != nil {
                b.Fatal(err)
            }
            uploader := db.NewPutter(ModePutUpload)
            syncer := db.NewSetter(ModeSetSync)
            for i := 0; i < count; i++ {
                chunk := generateFakeRandomChunk()
                err := uploader.Put(chunk)
                if err != nil {
                    b.Fatal(err)
                }
                err = syncer.Set(chunk.Address())
                if err != nil {
                    b.Fatal(err)
                }
            }
            err = db.Close()
            if err != nil {
                b.Fatal(err)
            }
            b.ResetTimer()

            for n := 0; n < b.N; n++ {
                b.StartTimer()
                db, err := New(dir, baseKey, nil)
                b.StopTimer()

                if err != nil {
                    b.Fatal(err)
                }
                err = db.Close()
                if err != nil {
                    b.Fatal(err)
                }
            }
        })
    }
}

// newTestDB is a helper function that constructs a
// temporary database and returns a cleanup function that must
// be called to remove the data.
func newTestDB(t testing.TB, o *Options) (db *DB, cleanupFunc func()) {
    t.Helper()

    dir, err := ioutil.TempDir("", "localstore-test")
    if err != nil {
        t.Fatal(err)
    }
    cleanupFunc = func() { os.RemoveAll(dir) }
    baseKey := make([]byte, 32)
    if _, err := rand.Read(baseKey); err != nil {
        t.Fatal(err)
    }
    db, err = New(dir, baseKey, o)
    if err != nil {
        cleanupFunc()
        t.Fatal(err)
    }
    cleanupFunc = func() {
        err := db.Close()
        if err != nil {
            t.Error(err)
        }
        os.RemoveAll(dir)
    }
    return db, cleanupFunc
}

// generateRandomChunk generates a valid Chunk with
// data size of default chunk size.
func generateRandomChunk() storage.Chunk {
    return storage.GenerateRandomChunk(ch.DefaultSize)
}

func init() {
    // needed for generateFakeRandomChunk
    rand.Seed(time.Now().UnixNano())
}

// generateFakeRandomChunk generates a Chunk that is not
// valid, but it contains a random key and a random value.
// This function is faster then storage.GenerateRandomChunk
// which generates a valid chunk.
// Some tests in this package do not need valid chunks, just
// random data, and their execution time can be decreased
// using this function.
func generateFakeRandomChunk() storage.Chunk {
    data := make([]byte, ch.DefaultSize)
    rand.Read(data)
    key := make([]byte, 32)
    rand.Read(key)
    return storage.NewChunk(key, data)
}

// TestGenerateFakeRandomChunk validates that
// generateFakeRandomChunk returns random data by comparing
// two generated chunks.
func TestGenerateFakeRandomChunk(t *testing.T) {
    c1 := generateFakeRandomChunk()
    c2 := generateFakeRandomChunk()
    addrLen := len(c1.Address())
    if addrLen != 32 {
        t.Errorf("first chunk address length %v, want %v", addrLen, 32)
    }
    dataLen := len(c1.Data())
    if dataLen != ch.DefaultSize {
        t.Errorf("first chunk data length %v, want %v", dataLen, ch.DefaultSize)
    }
    addrLen = len(c2.Address())
    if addrLen != 32 {
        t.Errorf("second chunk address length %v, want %v", addrLen, 32)
    }
    dataLen = len(c2.Data())
    if dataLen != ch.DefaultSize {
        t.Errorf("second chunk data length %v, want %v", dataLen, ch.DefaultSize)
    }
    if bytes.Equal(c1.Address(), c2.Address()) {
        t.Error("fake chunks addresses do not differ")
    }
    if bytes.Equal(c1.Data(), c2.Data()) {
        t.Error("fake chunks data bytes do not differ")
    }
}

// newRetrieveIndexesTest returns a test function that validates if the right
// chunk values are in the retrieval indexes.
func newRetrieveIndexesTest(db *DB, chunk storage.Chunk, storeTimestamp, accessTimestamp int64) func(t *testing.T) {
    return func(t *testing.T) {
        item, err := db.retrievalDataIndex.Get(addressToItem(chunk.Address()))
        if err != nil {
            t.Fatal(err)
        }
        validateItem(t, item, chunk.Address(), chunk.Data(), storeTimestamp, 0)

        // access index should not be set
        wantErr := leveldb.ErrNotFound
        item, err = db.retrievalAccessIndex.Get(addressToItem(chunk.Address()))
        if err != wantErr {
            t.Errorf("got error %v, want %v", err, wantErr)
        }
    }
}

// newRetrieveIndexesTestWithAccess returns a test function that validates if the right
// chunk values are in the retrieval indexes when access time must be stored.
func newRetrieveIndexesTestWithAccess(db *DB, chunk storage.Chunk, storeTimestamp, accessTimestamp int64) func(t *testing.T) {
    return func(t *testing.T) {
        item, err := db.retrievalDataIndex.Get(addressToItem(chunk.Address()))
        if err != nil {
            t.Fatal(err)
        }
        validateItem(t, item, chunk.Address(), chunk.Data(), storeTimestamp, 0)

        if accessTimestamp > 0 {
            item, err = db.retrievalAccessIndex.Get(addressToItem(chunk.Address()))
            if err != nil {
                t.Fatal(err)
            }
            validateItem(t, item, chunk.Address(), nil, 0, accessTimestamp)
        }
    }
}

// newPullIndexTest returns a test function that validates if the right
// chunk values are in the pull index.
func newPullIndexTest(db *DB, chunk storage.Chunk, storeTimestamp int64, wantError error) func(t *testing.T) {
    return func(t *testing.T) {
        item, err := db.pullIndex.Get(shed.Item{
            Address:        chunk.Address(),
            StoreTimestamp: storeTimestamp,
        })
        if err != wantError {
            t.Errorf("got error %v, want %v", err, wantError)
        }
        if err == nil {
            validateItem(t, item, chunk.Address(), nil, storeTimestamp, 0)
        }
    }
}

// newPushIndexTest returns a test function that validates if the right
// chunk values are in the push index.
func newPushIndexTest(db *DB, chunk storage.Chunk, storeTimestamp int64, wantError error) func(t *testing.T) {
    return func(t *testing.T) {
        item, err := db.pushIndex.Get(shed.Item{
            Address:        chunk.Address(),
            StoreTimestamp: storeTimestamp,
        })
        if err != wantError {
            t.Errorf("got error %v, want %v", err, wantError)
        }
        if err == nil {
            validateItem(t, item, chunk.Address(), nil, storeTimestamp, 0)
        }
    }
}

// newGCIndexTest returns a test function that validates if the right
// chunk values are in the push index.
func newGCIndexTest(db *DB, chunk storage.Chunk, storeTimestamp, accessTimestamp int64) func(t *testing.T) {
    return func(t *testing.T) {
        item, err := db.gcIndex.Get(shed.Item{
            Address:         chunk.Address(),
            StoreTimestamp:  storeTimestamp,
            AccessTimestamp: accessTimestamp,
        })
        if err != nil {
            t.Fatal(err)
        }
        validateItem(t, item, chunk.Address(), nil, storeTimestamp, accessTimestamp)
    }
}

// newItemsCountTest returns a test function that validates if
// an index contains expected number of key/value pairs.
func newItemsCountTest(i shed.Index, want int) func(t *testing.T) {
    return func(t *testing.T) {
        var c int
        err := i.Iterate(func(item shed.Item) (stop bool, err error) {
            c++
            return
        }, nil)
        if err != nil {
            t.Fatal(err)
        }
        if c != want {
            t.Errorf("got %v items in index, want %v", c, want)
        }
    }
}

// newIndexGCSizeTest retruns a test function that validates if DB.gcSize
// value is the same as the number of items in DB.gcIndex.
func newIndexGCSizeTest(db *DB) func(t *testing.T) {
    return func(t *testing.T) {
        var want int64
        err := db.gcIndex.Iterate(func(item shed.Item) (stop bool, err error) {
            want++
            return
        }, nil)
        if err != nil {
            t.Fatal(err)
        }
        got := db.getGCSize()
        if got != want {
            t.Errorf("got gc size %v, want %v", got, want)
        }
    }
}

// testIndexChunk embeds storageChunk with additional data that is stored
// in database. It is used for index values validations.
type testIndexChunk struct {
    storage.Chunk
    storeTimestamp int64
}

// testItemsOrder tests the order of chunks in the index. If sortFunc is not nil,
// chunks will be sorted with it before validation.
func testItemsOrder(t *testing.T, i shed.Index, chunks []testIndexChunk, sortFunc func(i, j int) (less bool)) {
    newItemsCountTest(i, len(chunks))(t)

    if sortFunc != nil {
        sort.Slice(chunks, sortFunc)
    }

    var cursor int
    err := i.Iterate(func(item shed.Item) (stop bool, err error) {
        want := chunks[cursor].Address()
        got := item.Address
        if !bytes.Equal(got, want) {
            return true, fmt.Errorf("got address %x at position %v, want %x", got, cursor, want)
        }
        cursor++
        return false, nil
    }, nil)
    if err != nil {
        t.Fatal(err)
    }
}

// validateItem is a helper function that checks Item values.
func validateItem(t *testing.T, item shed.Item, address, data []byte, storeTimestamp, accessTimestamp int64) {
    t.Helper()

    if !bytes.Equal(item.Address, address) {
        t.Errorf("got item address %x, want %x", item.Address, address)
    }
    if !bytes.Equal(item.Data, data) {
        t.Errorf("got item data %x, want %x", item.Data, data)
    }
    if item.StoreTimestamp != storeTimestamp {
        t.Errorf("got item store timestamp %v, want %v", item.StoreTimestamp, storeTimestamp)
    }
    if item.AccessTimestamp != accessTimestamp {
        t.Errorf("got item access timestamp %v, want %v", item.AccessTimestamp, accessTimestamp)
    }
}

// setNow replaces now function and
// returns a function that will reset it to the
// value before the change.
func setNow(f func() int64) (reset func()) {
    current := now
    reset = func() { now = current }
    now = f
    return reset
}

// TestSetNow tests if setNow function changes now function
// correctly and if its reset function resets the original function.
func TestSetNow(t *testing.T) {
    // set the current function after the test finishes
    defer func(f func() int64) { now = f }(now)

    // expected value for the unchanged function
    var original int64 = 1
    // expected value for the changed function
    var changed int64 = 2

    // define the original (unchanged) functions
    now = func() int64 {
        return original
    }

    // get the time
    got := now()

    // test if got variable is set correctly
    if got != original {
        t.Errorf("got now value %v, want %v", got, original)
    }

    // set the new function
    reset := setNow(func() int64 {
        return changed
    })

    // get the time
    got = now()

    // test if got variable is set correctly to changed value
    if got != changed {
        t.Errorf("got hook value %v, want %v", got, changed)
    }

    // set the function to the original one
    reset()

    // get the time
    got = now()

    // test if got variable is set correctly to original value
    if got != original {
        t.Errorf("got hook value %v, want %v", got, original)
    }
}