aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/network/stream/common_test.go
blob: 491dc9fd58551b99757d61b7e880d0497c0dee9a (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
// 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 stream

import (
    "context"
    crand "crypto/rand"
    "errors"
    "flag"
    "fmt"
    "io"
    "io/ioutil"
    "math/rand"
    "os"
    "strings"
    "sync/atomic"
    "testing"
    "time"

    "github.com/ethereum/go-ethereum/log"
    "github.com/ethereum/go-ethereum/p2p/discover"
    p2ptest "github.com/ethereum/go-ethereum/p2p/testing"
    "github.com/ethereum/go-ethereum/swarm/network"
    "github.com/ethereum/go-ethereum/swarm/network/simulation"
    "github.com/ethereum/go-ethereum/swarm/pot"
    "github.com/ethereum/go-ethereum/swarm/state"
    "github.com/ethereum/go-ethereum/swarm/storage"
    mockdb "github.com/ethereum/go-ethereum/swarm/storage/mock/db"
    colorable "github.com/mattn/go-colorable"
)

var (
    loglevel     = flag.Int("loglevel", 2, "verbosity of logs")
    nodes        = flag.Int("nodes", 0, "number of nodes")
    chunks       = flag.Int("chunks", 0, "number of chunks")
    useMockStore = flag.Bool("mockstore", false, "disabled mock store (default: enabled)")
    longrunning  = flag.Bool("longrunning", false, "do run long-running tests")

    bucketKeyDB        = simulation.BucketKey("db")
    bucketKeyStore     = simulation.BucketKey("store")
    bucketKeyFileStore = simulation.BucketKey("filestore")
    bucketKeyNetStore  = simulation.BucketKey("netstore")
    bucketKeyDelivery  = simulation.BucketKey("delivery")
    bucketKeyRegistry  = simulation.BucketKey("registry")

    chunkSize = 4096
    pof       = pot.DefaultPof(256)
)

func init() {
    flag.Parse()
    rand.Seed(time.Now().UnixNano())

    log.PrintOrigins(true)
    log.Root().SetHandler(log.LvlFilterHandler(log.Lvl(*loglevel), log.StreamHandler(colorable.NewColorableStderr(), log.TerminalFormat(true))))
}

func createGlobalStore() (string, *mockdb.GlobalStore, error) {
    var globalStore *mockdb.GlobalStore
    globalStoreDir, err := ioutil.TempDir("", "global.store")
    if err != nil {
        log.Error("Error initiating global store temp directory!", "err", err)
        return "", nil, err
    }
    globalStore, err = mockdb.NewGlobalStore(globalStoreDir)
    if err != nil {
        log.Error("Error initiating global store!", "err", err)
        return "", nil, err
    }
    return globalStoreDir, globalStore, nil
}

func newStreamerTester(t *testing.T) (*p2ptest.ProtocolTester, *Registry, *storage.LocalStore, func(), error) {
    // setup
    addr := network.RandomAddr() // tested peers peer address
    to := network.NewKademlia(addr.OAddr, network.NewKadParams())

    // temp datadir
    datadir, err := ioutil.TempDir("", "streamer")
    if err != nil {
        return nil, nil, nil, func() {}, err
    }
    removeDataDir := func() {
        os.RemoveAll(datadir)
    }

    params := storage.NewDefaultLocalStoreParams()
    params.Init(datadir)
    params.BaseKey = addr.Over()

    localStore, err := storage.NewTestLocalStoreForAddr(params)
    if err != nil {
        return nil, nil, nil, removeDataDir, err
    }

    db := storage.NewDBAPI(localStore)
    delivery := NewDelivery(to, db)
    streamer := NewRegistry(addr, delivery, db, state.NewInmemoryStore(), nil)
    teardown := func() {
        streamer.Close()
        removeDataDir()
    }
    protocolTester := p2ptest.NewProtocolTester(t, network.NewNodeIDFromAddr(addr), 1, streamer.runProtocol)

    err = waitForPeers(streamer, 1*time.Second, 1)
    if err != nil {
        return nil, nil, nil, nil, errors.New("timeout: peer is not created")
    }

    return protocolTester, streamer, localStore, teardown, nil
}

func waitForPeers(streamer *Registry, timeout time.Duration, expectedPeers int) error {
    ticker := time.NewTicker(10 * time.Millisecond)
    timeoutTimer := time.NewTimer(timeout)
    for {
        select {
        case <-ticker.C:
            if streamer.peersCount() >= expectedPeers {
                return nil
            }
        case <-timeoutTimer.C:
            return errors.New("timeout")
        }
    }
}

type roundRobinStore struct {
    index  uint32
    stores []storage.ChunkStore
}

func newRoundRobinStore(stores ...storage.ChunkStore) *roundRobinStore {
    return &roundRobinStore{
        stores: stores,
    }
}

func (rrs *roundRobinStore) Get(ctx context.Context, addr storage.Address) (*storage.Chunk, error) {
    return nil, errors.New("get not well defined on round robin store")
}

func (rrs *roundRobinStore) Put(ctx context.Context, chunk *storage.Chunk) {
    i := atomic.AddUint32(&rrs.index, 1)
    idx := int(i) % len(rrs.stores)
    rrs.stores[idx].Put(ctx, chunk)
}

func (rrs *roundRobinStore) Close() {
    for _, store := range rrs.stores {
        store.Close()
    }
}

func readAll(fileStore *storage.FileStore, hash []byte) (int64, error) {
    r, _ := fileStore.Retrieve(context.TODO(), hash)
    buf := make([]byte, 1024)
    var n int
    var total int64
    var err error
    for (total == 0 || n > 0) && err == nil {
        n, err = r.ReadAt(buf, total)
        total += int64(n)
    }
    if err != nil && err != io.EOF {
        return total, err
    }
    return total, nil
}

func uploadFilesToNodes(sim *simulation.Simulation) ([]storage.Address, []string, error) {
    nodes := sim.UpNodeIDs()
    nodeCnt := len(nodes)
    log.Debug(fmt.Sprintf("Uploading %d files to nodes", nodeCnt))
    //array holding generated files
    rfiles := make([]string, nodeCnt)
    //array holding the root hashes of the files
    rootAddrs := make([]storage.Address, nodeCnt)

    var err error
    //for every node, generate a file and upload
    for i, id := range nodes {
        item, ok := sim.NodeItem(id, bucketKeyFileStore)
        if !ok {
            return nil, nil, fmt.Errorf("Error accessing localstore")
        }
        fileStore := item.(*storage.FileStore)
        //generate a file
        rfiles[i], err = generateRandomFile()
        if err != nil {
            return nil, nil, err
        }
        //store it (upload it) on the FileStore
        ctx := context.TODO()
        rk, wait, err := fileStore.Store(ctx, strings.NewReader(rfiles[i]), int64(len(rfiles[i])), false)
        log.Debug("Uploaded random string file to node")
        if err != nil {
            return nil, nil, err
        }
        err = wait(ctx)
        if err != nil {
            return nil, nil, err
        }
        rootAddrs[i] = rk
    }
    return rootAddrs, rfiles, nil
}

//generate a random file (string)
func generateRandomFile() (string, error) {
    //generate a random file size between minFileSize and maxFileSize
    fileSize := rand.Intn(maxFileSize-minFileSize) + minFileSize
    log.Debug(fmt.Sprintf("Generated file with filesize %d kB", fileSize))
    b := make([]byte, fileSize*1024)
    _, err := crand.Read(b)
    if err != nil {
        log.Error("Error generating random file.", "err", err)
        return "", err
    }
    return string(b), nil
}

//create a local store for the given node
func createTestLocalStorageForID(id discover.NodeID, addr *network.BzzAddr) (storage.ChunkStore, string, error) {
    var datadir string
    var err error
    datadir, err = ioutil.TempDir("", fmt.Sprintf("syncer-test-%s", id.TerminalString()))
    if err != nil {
        return nil, "", err
    }
    var store storage.ChunkStore
    params := storage.NewDefaultLocalStoreParams()
    params.ChunkDbPath = datadir
    params.BaseKey = addr.Over()
    store, err = storage.NewTestLocalStoreForAddr(params)
    if err != nil {
        os.RemoveAll(datadir)
        return nil, "", err
    }
    return store, datadir, nil
}