e38b227ce6
* swarm/storage: increase mget timeout in common_test.go TestDbStoreCorrect_1k sometimes timed out with -race on Travis. --- FAIL: TestDbStoreCorrect_1k (24.63s) common_test.go:194: testStore failed: timed out after 10s * swarm: remove unused vars from TestSnapshotSyncWithServer nodeCount and chunkCount is returned from setupSim and those values we use. * swarm: move race/norace helpers from stream to testutil As we will need to use the flag in other packages, too. * swarm: refactor TestSwarmNetwork case Extract long running test cases for better visibility. * swarm/network: skip TestSyncingViaGlobalSync with -race As panics on Travis. panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x7e351b] * swarm: run TestSwarmNetwork with fewer nodes with -race As otherwise we always get test failure with `network_test.go:374: context deadline exceeded` even with raised `Timeout`. * swarm/network: run TestDeliveryFromNodes with fewer nodes with -race Test on Travis times out with 8 or more nodes if -race flag is present. * swarm/network: smaller node count for discovery tests with -race TestDiscoveryPersistenceSimulationSimAdapters failed on Travis with `-race` flag present. The failure was due to extensive memory usage, coming from the CGO runtime. Using a smaller node count resolves the issue. === RUN TestDiscoveryPersistenceSimulationSimAdapter ==7227==ERROR: ThreadSanitizer failed to allocate 0x80000 (524288) bytes of clock allocator (error code: 12) FATAL: ThreadSanitizer CHECK failed: ./gotsan.cc:6976 "((0 && "unable to mmap")) != (0)" (0x0, 0x0) FAIL github.com/ethereum/go-ethereum/swarm/network/simulations/discovery 804.826s * swarm/network: run TestFileRetrieval with fewer nodes with -race Otherwise we get a failure due to extensive memory usage, as the CGO runtime cannot allocate more bytes. === RUN TestFileRetrieval ==7366==ERROR: ThreadSanitizer failed to allocate 0x80000 (524288) bytes of clock allocator (error code: 12) FATAL: ThreadSanitizer CHECK failed: ./gotsan.cc:6976 "((0 && "unable to mmap")) != (0)" (0x0, 0x0) FAIL github.com/ethereum/go-ethereum/swarm/network/stream 155.165s * swarm/network: run TestRetrieval with fewer nodes with -race Otherwise we get a failure due to extensive memory usage, as the CGO runtime cannot allocate more bytes ("ThreadSanitizer failed to allocate"). * swarm/network: skip flaky TestGetSubscriptionsRPC on Travis w/ -race Test fails a lot with something like: streamer_test.go:1332: Real subscriptions and expected amount don't match; real: 0, expected: 20 * swarm/storage: skip TestDB_SubscribePull* tests on Travis w/ -race Travis just hangs... ok github.com/ethereum/go-ethereum/swarm/storage/feed/lookup 1.307s keepalive keepalive keepalive or panics after a while. Without these tests the race detector job is now stable. Let's invetigate these tests in a separate issue: https://github.com/ethersphere/go-ethereum/issues/1245
511 lines
14 KiB
Go
511 lines
14 KiB
Go
// Copyright 2019 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"
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/swarm/storage"
|
|
"github.com/ethereum/go-ethereum/swarm/testutil"
|
|
)
|
|
|
|
// TestDB_SubscribePull uploads some chunks before and after
|
|
// pull syncing subscription is created and validates if
|
|
// all addresses are received in the right order
|
|
// for expected proximity order bins.
|
|
func TestDB_SubscribePull(t *testing.T) {
|
|
|
|
if testutil.RaceEnabled && os.Getenv("TRAVIS") == "true" {
|
|
t.Skip("does not complete with -race on Travis")
|
|
// Note: related ticket TODO
|
|
}
|
|
|
|
db, cleanupFunc := newTestDB(t, nil)
|
|
defer cleanupFunc()
|
|
|
|
uploader := db.NewPutter(ModePutUpload)
|
|
|
|
addrs := make(map[uint8][]storage.Address)
|
|
var addrsMu sync.Mutex
|
|
var wantedChunksCount int
|
|
|
|
// prepopulate database with some chunks
|
|
// before the subscription
|
|
uploadRandomChunksBin(t, db, uploader, addrs, &addrsMu, &wantedChunksCount, 10)
|
|
|
|
// set a timeout on subscription
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
// collect all errors from validating addresses, even nil ones
|
|
// to validate the number of addresses received by the subscription
|
|
errChan := make(chan error)
|
|
|
|
for bin := uint8(0); bin <= uint8(storage.MaxPO); bin++ {
|
|
ch, stop := db.SubscribePull(ctx, bin, nil, nil)
|
|
defer stop()
|
|
|
|
// receive and validate addresses from the subscription
|
|
go readPullSubscriptionBin(ctx, bin, ch, addrs, &addrsMu, errChan)
|
|
}
|
|
|
|
// upload some chunks just after subscribe
|
|
uploadRandomChunksBin(t, db, uploader, addrs, &addrsMu, &wantedChunksCount, 5)
|
|
|
|
time.Sleep(200 * time.Millisecond)
|
|
|
|
// upload some chunks after some short time
|
|
// to ensure that subscription will include them
|
|
// in a dynamic environment
|
|
uploadRandomChunksBin(t, db, uploader, addrs, &addrsMu, &wantedChunksCount, 3)
|
|
|
|
checkErrChan(ctx, t, errChan, wantedChunksCount)
|
|
}
|
|
|
|
// TestDB_SubscribePull_multiple uploads chunks before and after
|
|
// multiple pull syncing subscriptions are created and
|
|
// validates if all addresses are received in the right order
|
|
// for expected proximity order bins.
|
|
func TestDB_SubscribePull_multiple(t *testing.T) {
|
|
|
|
if testutil.RaceEnabled && os.Getenv("TRAVIS") == "true" {
|
|
t.Skip("does not complete with -race on Travis")
|
|
// Note: related ticket TODO
|
|
}
|
|
|
|
db, cleanupFunc := newTestDB(t, nil)
|
|
defer cleanupFunc()
|
|
|
|
uploader := db.NewPutter(ModePutUpload)
|
|
|
|
addrs := make(map[uint8][]storage.Address)
|
|
var addrsMu sync.Mutex
|
|
var wantedChunksCount int
|
|
|
|
// prepopulate database with some chunks
|
|
// before the subscription
|
|
uploadRandomChunksBin(t, db, uploader, addrs, &addrsMu, &wantedChunksCount, 10)
|
|
|
|
// set a timeout on subscription
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
// collect all errors from validating addresses, even nil ones
|
|
// to validate the number of addresses received by the subscription
|
|
errChan := make(chan error)
|
|
|
|
subsCount := 10
|
|
|
|
// start a number of subscriptions
|
|
// that all of them will write every address error to errChan
|
|
for j := 0; j < subsCount; j++ {
|
|
for bin := uint8(0); bin <= uint8(storage.MaxPO); bin++ {
|
|
ch, stop := db.SubscribePull(ctx, bin, nil, nil)
|
|
defer stop()
|
|
|
|
// receive and validate addresses from the subscription
|
|
go readPullSubscriptionBin(ctx, bin, ch, addrs, &addrsMu, errChan)
|
|
}
|
|
}
|
|
|
|
// upload some chunks just after subscribe
|
|
uploadRandomChunksBin(t, db, uploader, addrs, &addrsMu, &wantedChunksCount, 5)
|
|
|
|
time.Sleep(200 * time.Millisecond)
|
|
|
|
// upload some chunks after some short time
|
|
// to ensure that subscription will include them
|
|
// in a dynamic environment
|
|
uploadRandomChunksBin(t, db, uploader, addrs, &addrsMu, &wantedChunksCount, 3)
|
|
|
|
checkErrChan(ctx, t, errChan, wantedChunksCount*subsCount)
|
|
}
|
|
|
|
// TestDB_SubscribePull_since uploads chunks before and after
|
|
// pull syncing subscriptions are created with a since argument
|
|
// and validates if all expected addresses are received in the
|
|
// right order for expected proximity order bins.
|
|
func TestDB_SubscribePull_since(t *testing.T) {
|
|
|
|
if testutil.RaceEnabled && os.Getenv("TRAVIS") == "true" {
|
|
t.Skip("does not complete with -race on Travis")
|
|
// Note: related ticket TODO
|
|
}
|
|
|
|
db, cleanupFunc := newTestDB(t, nil)
|
|
defer cleanupFunc()
|
|
|
|
uploader := db.NewPutter(ModePutUpload)
|
|
|
|
addrs := make(map[uint8][]storage.Address)
|
|
var addrsMu sync.Mutex
|
|
var wantedChunksCount int
|
|
|
|
lastTimestamp := time.Now().UTC().UnixNano()
|
|
var lastTimestampMu sync.RWMutex
|
|
defer setNow(func() (t int64) {
|
|
lastTimestampMu.Lock()
|
|
defer lastTimestampMu.Unlock()
|
|
lastTimestamp++
|
|
return lastTimestamp
|
|
})()
|
|
|
|
uploadRandomChunks := func(count int, wanted bool) (last map[uint8]ChunkDescriptor) {
|
|
last = make(map[uint8]ChunkDescriptor)
|
|
for i := 0; i < count; i++ {
|
|
chunk := generateRandomChunk()
|
|
|
|
err := uploader.Put(chunk)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
bin := db.po(chunk.Address())
|
|
|
|
addrsMu.Lock()
|
|
if _, ok := addrs[bin]; !ok {
|
|
addrs[bin] = make([]storage.Address, 0)
|
|
}
|
|
if wanted {
|
|
addrs[bin] = append(addrs[bin], chunk.Address())
|
|
wantedChunksCount++
|
|
}
|
|
addrsMu.Unlock()
|
|
|
|
lastTimestampMu.RLock()
|
|
storeTimestamp := lastTimestamp
|
|
lastTimestampMu.RUnlock()
|
|
|
|
last[bin] = ChunkDescriptor{
|
|
Address: chunk.Address(),
|
|
StoreTimestamp: storeTimestamp,
|
|
}
|
|
}
|
|
return last
|
|
}
|
|
|
|
// prepopulate database with some chunks
|
|
// before the subscription
|
|
last := uploadRandomChunks(30, false)
|
|
|
|
uploadRandomChunks(25, true)
|
|
|
|
// set a timeout on subscription
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
// collect all errors from validating addresses, even nil ones
|
|
// to validate the number of addresses received by the subscription
|
|
errChan := make(chan error)
|
|
|
|
for bin := uint8(0); bin <= uint8(storage.MaxPO); bin++ {
|
|
var since *ChunkDescriptor
|
|
if c, ok := last[bin]; ok {
|
|
since = &c
|
|
}
|
|
ch, stop := db.SubscribePull(ctx, bin, since, nil)
|
|
defer stop()
|
|
|
|
// receive and validate addresses from the subscription
|
|
go readPullSubscriptionBin(ctx, bin, ch, addrs, &addrsMu, errChan)
|
|
|
|
}
|
|
|
|
// upload some chunks just after subscribe
|
|
uploadRandomChunks(15, true)
|
|
|
|
checkErrChan(ctx, t, errChan, wantedChunksCount)
|
|
}
|
|
|
|
// TestDB_SubscribePull_until uploads chunks before and after
|
|
// pull syncing subscriptions are created with an until argument
|
|
// and validates if all expected addresses are received in the
|
|
// right order for expected proximity order bins.
|
|
func TestDB_SubscribePull_until(t *testing.T) {
|
|
|
|
if testutil.RaceEnabled && os.Getenv("TRAVIS") == "true" {
|
|
t.Skip("does not complete with -race on Travis")
|
|
// Note: related ticket TODO
|
|
}
|
|
|
|
db, cleanupFunc := newTestDB(t, nil)
|
|
defer cleanupFunc()
|
|
|
|
uploader := db.NewPutter(ModePutUpload)
|
|
|
|
addrs := make(map[uint8][]storage.Address)
|
|
var addrsMu sync.Mutex
|
|
var wantedChunksCount int
|
|
|
|
lastTimestamp := time.Now().UTC().UnixNano()
|
|
var lastTimestampMu sync.RWMutex
|
|
defer setNow(func() (t int64) {
|
|
lastTimestampMu.Lock()
|
|
defer lastTimestampMu.Unlock()
|
|
lastTimestamp++
|
|
return lastTimestamp
|
|
})()
|
|
|
|
uploadRandomChunks := func(count int, wanted bool) (last map[uint8]ChunkDescriptor) {
|
|
last = make(map[uint8]ChunkDescriptor)
|
|
for i := 0; i < count; i++ {
|
|
chunk := generateRandomChunk()
|
|
|
|
err := uploader.Put(chunk)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
bin := db.po(chunk.Address())
|
|
|
|
addrsMu.Lock()
|
|
if _, ok := addrs[bin]; !ok {
|
|
addrs[bin] = make([]storage.Address, 0)
|
|
}
|
|
if wanted {
|
|
addrs[bin] = append(addrs[bin], chunk.Address())
|
|
wantedChunksCount++
|
|
}
|
|
addrsMu.Unlock()
|
|
|
|
lastTimestampMu.RLock()
|
|
storeTimestamp := lastTimestamp
|
|
lastTimestampMu.RUnlock()
|
|
|
|
last[bin] = ChunkDescriptor{
|
|
Address: chunk.Address(),
|
|
StoreTimestamp: storeTimestamp,
|
|
}
|
|
}
|
|
return last
|
|
}
|
|
|
|
// prepopulate database with some chunks
|
|
// before the subscription
|
|
last := uploadRandomChunks(30, true)
|
|
|
|
uploadRandomChunks(25, false)
|
|
|
|
// set a timeout on subscription
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
// collect all errors from validating addresses, even nil ones
|
|
// to validate the number of addresses received by the subscription
|
|
errChan := make(chan error)
|
|
|
|
for bin := uint8(0); bin <= uint8(storage.MaxPO); bin++ {
|
|
until, ok := last[bin]
|
|
if !ok {
|
|
continue
|
|
}
|
|
ch, stop := db.SubscribePull(ctx, bin, nil, &until)
|
|
defer stop()
|
|
|
|
// receive and validate addresses from the subscription
|
|
go readPullSubscriptionBin(ctx, bin, ch, addrs, &addrsMu, errChan)
|
|
}
|
|
|
|
// upload some chunks just after subscribe
|
|
uploadRandomChunks(15, false)
|
|
|
|
checkErrChan(ctx, t, errChan, wantedChunksCount)
|
|
}
|
|
|
|
// TestDB_SubscribePull_sinceAndUntil uploads chunks before and
|
|
// after pull syncing subscriptions are created with since
|
|
// and until arguments, and validates if all expected addresses
|
|
// are received in the right order for expected proximity order bins.
|
|
func TestDB_SubscribePull_sinceAndUntil(t *testing.T) {
|
|
|
|
if testutil.RaceEnabled && os.Getenv("TRAVIS") == "true" {
|
|
t.Skip("does not complete with -race on Travis")
|
|
// Note: related ticket TODO
|
|
}
|
|
|
|
db, cleanupFunc := newTestDB(t, nil)
|
|
defer cleanupFunc()
|
|
|
|
uploader := db.NewPutter(ModePutUpload)
|
|
|
|
addrs := make(map[uint8][]storage.Address)
|
|
var addrsMu sync.Mutex
|
|
var wantedChunksCount int
|
|
|
|
lastTimestamp := time.Now().UTC().UnixNano()
|
|
var lastTimestampMu sync.RWMutex
|
|
defer setNow(func() (t int64) {
|
|
lastTimestampMu.Lock()
|
|
defer lastTimestampMu.Unlock()
|
|
lastTimestamp++
|
|
return lastTimestamp
|
|
})()
|
|
|
|
uploadRandomChunks := func(count int, wanted bool) (last map[uint8]ChunkDescriptor) {
|
|
last = make(map[uint8]ChunkDescriptor)
|
|
for i := 0; i < count; i++ {
|
|
chunk := generateRandomChunk()
|
|
|
|
err := uploader.Put(chunk)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
bin := db.po(chunk.Address())
|
|
|
|
addrsMu.Lock()
|
|
if _, ok := addrs[bin]; !ok {
|
|
addrs[bin] = make([]storage.Address, 0)
|
|
}
|
|
if wanted {
|
|
addrs[bin] = append(addrs[bin], chunk.Address())
|
|
wantedChunksCount++
|
|
}
|
|
addrsMu.Unlock()
|
|
|
|
lastTimestampMu.RLock()
|
|
storeTimestamp := lastTimestamp
|
|
lastTimestampMu.RUnlock()
|
|
|
|
last[bin] = ChunkDescriptor{
|
|
Address: chunk.Address(),
|
|
StoreTimestamp: storeTimestamp,
|
|
}
|
|
}
|
|
return last
|
|
}
|
|
|
|
// all chunks from upload1 are not expected
|
|
// as upload1 chunk is used as since for subscriptions
|
|
upload1 := uploadRandomChunks(100, false)
|
|
|
|
// all chunks from upload2 are expected
|
|
// as upload2 chunk is used as until for subscriptions
|
|
upload2 := uploadRandomChunks(100, true)
|
|
|
|
// upload some chunks before subscribe but after
|
|
// wanted chunks
|
|
uploadRandomChunks(8, false)
|
|
|
|
// set a timeout on subscription
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
// collect all errors from validating addresses, even nil ones
|
|
// to validate the number of addresses received by the subscription
|
|
errChan := make(chan error)
|
|
|
|
for bin := uint8(0); bin <= uint8(storage.MaxPO); bin++ {
|
|
var since *ChunkDescriptor
|
|
if c, ok := upload1[bin]; ok {
|
|
since = &c
|
|
}
|
|
until, ok := upload2[bin]
|
|
if !ok {
|
|
// no chunks un this bin uploaded in the upload2
|
|
// skip this bin from testing
|
|
continue
|
|
}
|
|
ch, stop := db.SubscribePull(ctx, bin, since, &until)
|
|
defer stop()
|
|
|
|
// receive and validate addresses from the subscription
|
|
go readPullSubscriptionBin(ctx, bin, ch, addrs, &addrsMu, errChan)
|
|
}
|
|
|
|
// upload some chunks just after subscribe
|
|
uploadRandomChunks(15, false)
|
|
|
|
checkErrChan(ctx, t, errChan, wantedChunksCount)
|
|
}
|
|
|
|
// uploadRandomChunksBin uploads random chunks to database and adds them to
|
|
// the map of addresses ber bin.
|
|
func uploadRandomChunksBin(t *testing.T, db *DB, uploader *Putter, addrs map[uint8][]storage.Address, addrsMu *sync.Mutex, wantedChunksCount *int, count int) {
|
|
for i := 0; i < count; i++ {
|
|
chunk := generateRandomChunk()
|
|
|
|
err := uploader.Put(chunk)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
addrsMu.Lock()
|
|
bin := db.po(chunk.Address())
|
|
if _, ok := addrs[bin]; !ok {
|
|
addrs[bin] = make([]storage.Address, 0)
|
|
}
|
|
addrs[bin] = append(addrs[bin], chunk.Address())
|
|
addrsMu.Unlock()
|
|
|
|
*wantedChunksCount++
|
|
}
|
|
}
|
|
|
|
// readPullSubscriptionBin is a helper function that reads all ChunkDescriptors from a channel and
|
|
// sends error to errChan, even if it is nil, to count the number of ChunkDescriptors
|
|
// returned by the channel.
|
|
func readPullSubscriptionBin(ctx context.Context, bin uint8, ch <-chan ChunkDescriptor, addrs map[uint8][]storage.Address, addrsMu *sync.Mutex, errChan chan error) {
|
|
var i int // address index
|
|
for {
|
|
select {
|
|
case got, ok := <-ch:
|
|
if !ok {
|
|
return
|
|
}
|
|
addrsMu.Lock()
|
|
if i+1 > len(addrs[bin]) {
|
|
errChan <- fmt.Errorf("got more chunk addresses %v, then expected %v, for bin %v", i+1, len(addrs[bin]), bin)
|
|
}
|
|
want := addrs[bin][i]
|
|
addrsMu.Unlock()
|
|
var err error
|
|
if !bytes.Equal(got.Address, want) {
|
|
err = fmt.Errorf("got chunk address %v in bin %v %s, want %s", i, bin, got.Address.Hex(), want)
|
|
}
|
|
i++
|
|
// send one and only one error per received address
|
|
errChan <- err
|
|
case <-ctx.Done():
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// checkErrChan expects the number of wantedChunksCount errors from errChan
|
|
// and calls t.Error for the ones that are not nil.
|
|
func checkErrChan(ctx context.Context, t *testing.T, errChan chan error, wantedChunksCount int) {
|
|
t.Helper()
|
|
|
|
for i := 0; i < wantedChunksCount; i++ {
|
|
select {
|
|
case err := <-errChan:
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
case <-ctx.Done():
|
|
t.Fatal(ctx.Err())
|
|
}
|
|
}
|
|
}
|