aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/network/stream/syncer_test.go
blob: a3d53e64883fbd6117aa4c194dab6b4afa6e7304 (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
// 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"
    "fmt"
    "io"
    "io/ioutil"
    "math"
    "sync"
    "testing"
    "time"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/p2p/discover"
    "github.com/ethereum/go-ethereum/p2p/simulations"
    "github.com/ethereum/go-ethereum/rpc"
    "github.com/ethereum/go-ethereum/swarm/log"
    "github.com/ethereum/go-ethereum/swarm/network"
    streamTesting "github.com/ethereum/go-ethereum/swarm/network/stream/testing"
    "github.com/ethereum/go-ethereum/swarm/storage"
)

const dataChunkCount = 200

func TestSyncerSimulation(t *testing.T) {
    testSyncBetweenNodes(t, 2, 1, dataChunkCount, true, 1)
    testSyncBetweenNodes(t, 4, 1, dataChunkCount, true, 1)
    testSyncBetweenNodes(t, 8, 1, dataChunkCount, true, 1)
    testSyncBetweenNodes(t, 16, 1, dataChunkCount, true, 1)
}

func createMockStore(id discover.NodeID, addr *network.BzzAddr) (storage.ChunkStore, error) {
    var err error
    address := common.BytesToAddress(id.Bytes())
    mockStore := globalStore.NewNodeStore(address)
    params := storage.NewDefaultLocalStoreParams()
    datadirs[id], err = ioutil.TempDir("", "localMockStore-"+id.TerminalString())
    if err != nil {
        return nil, err
    }
    params.Init(datadirs[id])
    params.BaseKey = addr.Over()
    lstore, err := storage.NewLocalStore(params, mockStore)
    return lstore, nil
}

func testSyncBetweenNodes(t *testing.T, nodes, conns, chunkCount int, skipCheck bool, po uint8) {
    defer setDefaultSkipCheck(defaultSkipCheck)
    defaultSkipCheck = skipCheck
    //data directories for each node and store
    datadirs = make(map[discover.NodeID]string)
    if *useMockStore {
        createStoreFunc = createMockStore
        createGlobalStore()
    } else {
        createStoreFunc = createTestLocalStorageFromSim
    }
    defer datadirsCleanup()

    registries = make(map[discover.NodeID]*TestRegistry)
    toAddr = func(id discover.NodeID) *network.BzzAddr {
        addr := network.NewAddrFromNodeID(id)
        //hack to put addresses in same space
        addr.OAddr[0] = byte(0)
        return addr
    }
    conf := &streamTesting.RunConfig{
        Adapter:         *adapter,
        NodeCount:       nodes,
        ConnLevel:       conns,
        ToAddr:          toAddr,
        Services:        services,
        EnableMsgEvents: false,
    }
    // HACK: these are global variables in the test so that they are available for
    // the service constructor function
    // TODO: will this work with exec/docker adapter?
    // localstore of nodes made available for action and check calls
    stores = make(map[discover.NodeID]storage.ChunkStore)
    deliveries = make(map[discover.NodeID]*Delivery)
    // create context for simulation run
    timeout := 30 * time.Second
    ctx, cancel := context.WithTimeout(context.Background(), timeout)
    // defer cancel should come before defer simulation teardown
    defer cancel()

    // create simulation network with the config
    sim, teardown, err := streamTesting.NewSimulation(conf)
    var rpcSubscriptionsWg sync.WaitGroup
    defer func() {
        rpcSubscriptionsWg.Wait()
        teardown()
    }()
    if err != nil {
        t.Fatal(err.Error())
    }

    nodeIndex := make(map[discover.NodeID]int)
    for i, id := range sim.IDs {
        nodeIndex[id] = i
        if !*useMockStore {
            stores[id] = sim.Stores[i]
            sim.Stores[i] = stores[id]
        }
    }
    // peerCount function gives the number of peer connections for a nodeID
    // this is needed for the service run function to wait until
    // each protocol  instance runs and the streamer peers are available
    peerCount = func(id discover.NodeID) int {
        if sim.IDs[0] == id || sim.IDs[nodes-1] == id {
            return 1
        }
        return 2
    }
    waitPeerErrC = make(chan error)

    // create DBAPI-s for all nodes
    dbs := make([]*storage.DBAPI, nodes)
    for i := 0; i < nodes; i++ {
        dbs[i] = storage.NewDBAPI(sim.Stores[i].(*storage.LocalStore))
    }

    // collect hashes in po 1 bin for each node
    hashes := make([][]storage.Address, nodes)
    totalHashes := 0
    hashCounts := make([]int, nodes)
    for i := nodes - 1; i >= 0; i-- {
        if i < nodes-1 {
            hashCounts[i] = hashCounts[i+1]
        }
        dbs[i].Iterator(0, math.MaxUint64, po, func(addr storage.Address, index uint64) bool {
            hashes[i] = append(hashes[i], addr)
            totalHashes++
            hashCounts[i]++
            return true
        })
    }

    // errc is error channel for simulation
    errc := make(chan error, 1)
    quitC := make(chan struct{})
    defer close(quitC)

    // action is subscribe
    action := func(ctx context.Context) error {
        // need to wait till an aynchronous process registers the peers in streamer.peers
        // that is used by Subscribe
        // the global peerCount function tells how many connections each node has
        // TODO: this is to be reimplemented with peerEvent watcher without global var
        i := 0
        for err := range waitPeerErrC {
            if err != nil {
                return fmt.Errorf("error waiting for peers: %s", err)
            }
            i++
            if i == nodes {
                break
            }
        }
        // each node Subscribes to each other's swarmChunkServerStreamName
        for j := 0; j < nodes-1; j++ {
            id := sim.IDs[j]
            sim.Stores[j] = stores[id]
            err := sim.CallClient(id, func(client *rpc.Client) error {
                // report disconnect events to the error channel cos peers should not disconnect
                doneC, err := streamTesting.WatchDisconnections(id, client, errc, quitC)
                if err != nil {
                    return err
                }
                rpcSubscriptionsWg.Add(1)
                go func() {
                    <-doneC
                    rpcSubscriptionsWg.Done()
                }()
                ctx, cancel := context.WithTimeout(ctx, 1*time.Second)
                defer cancel()
                // start syncing, i.e., subscribe to upstream peers po 1 bin
                sid := sim.IDs[j+1]
                return client.CallContext(ctx, nil, "stream_subscribeStream", sid, NewStream("SYNC", FormatSyncBinKey(1), false), NewRange(0, 0), Top)
            })
            if err != nil {
                return err
            }
        }
        // here we distribute chunks of a random file into stores 1...nodes
        rrFileStore := storage.NewFileStore(newRoundRobinStore(sim.Stores[1:]...), storage.NewFileStoreParams())
        size := chunkCount * chunkSize
        _, wait, err := rrFileStore.Store(ctx, io.LimitReader(crand.Reader, int64(size)), int64(size), false)
        if err != nil {
            t.Fatal(err.Error())
        }
        // need to wait cos we then immediately collect the relevant bin content
        wait(ctx)
        if err != nil {
            t.Fatal(err.Error())
        }

        return nil
    }

    // this makes sure check is not called before the previous call finishes
    check := func(ctx context.Context, id discover.NodeID) (bool, error) {
        select {
        case err := <-errc:
            return false, err
        case <-ctx.Done():
            return false, ctx.Err()
        default:
        }

        i := nodeIndex[id]
        var total, found int

        for j := i; j < nodes; j++ {
            total += len(hashes[j])
            for _, key := range hashes[j] {
                chunk, err := dbs[i].Get(ctx, key)
                if err == storage.ErrFetching {
                    <-chunk.ReqC
                } else if err != nil {
                    continue
                }
                // needed for leveldb not to be closed?
                // chunk.WaitToStore()
                found++
            }
        }
        log.Debug("sync check", "node", id, "index", i, "bin", po, "found", found, "total", total)
        return total == found, nil
    }

    conf.Step = &simulations.Step{
        Action:  action,
        Trigger: streamTesting.Trigger(500*time.Millisecond, quitC, sim.IDs[0:nodes-1]...),
        Expect: &simulations.Expectation{
            Nodes: sim.IDs[0:1],
            Check: check,
        },
    }
    startedAt := time.Now()
    result, err := sim.Run(ctx, conf)
    finishedAt := time.Now()
    if err != nil {
        t.Fatalf("Setting up simulation failed: %v", err)
    }
    if result.Error != nil {
        t.Fatalf("Simulation failed: %s", result.Error)
    }
    streamTesting.CheckResult(t, result, startedAt, finishedAt)
}