2018-06-20 14:06:27 +02:00
|
|
|
// 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 (
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
"bytes"
|
2018-06-20 14:06:27 +02:00
|
|
|
"context"
|
2019-01-09 07:05:55 +01:00
|
|
|
"errors"
|
2018-06-20 14:06:27 +02:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2019-02-13 13:03:23 +01:00
|
|
|
"os"
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
"strings"
|
2018-06-20 14:06:27 +02:00
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2018-07-30 15:55:25 -05:00
|
|
|
"github.com/ethereum/go-ethereum/node"
|
all: new p2p node representation (#17643)
Package p2p/enode provides a generalized representation of p2p nodes
which can contain arbitrary information in key/value pairs. It is also
the new home for the node database. The "v4" identity scheme is also
moved here from p2p/enr to remove the dependency on Ethereum crypto from
that package.
Record signature handling is changed significantly. The identity scheme
registry is removed and acceptable schemes must be passed to any method
that needs identity. This means records must now be validated explicitly
after decoding.
The enode API is designed to make signature handling easy and safe: most
APIs around the codebase work with enode.Node, which is a wrapper around
a valid record. Going from enr.Record to enode.Node requires a valid
signature.
* p2p/discover: port to p2p/enode
This ports the discovery code to the new node representation in
p2p/enode. The wire protocol is unchanged, this can be considered a
refactoring change. The Kademlia table can now deal with nodes using an
arbitrary identity scheme. This requires a few incompatible API changes:
- Table.Lookup is not available anymore. It used to take a public key
as argument because v4 protocol requires one. Its replacement is
LookupRandom.
- Table.Resolve takes *enode.Node instead of NodeID. This is also for
v4 protocol compatibility because nodes cannot be looked up by ID
alone.
- Types Node and NodeID are gone. Further commits in the series will be
fixes all over the the codebase to deal with those removals.
* p2p: port to p2p/enode and discovery changes
This adapts package p2p to the changes in p2p/discover. All uses of
discover.Node and discover.NodeID are replaced by their equivalents from
p2p/enode.
New API is added to retrieve the enode.Node instance of a peer. The
behavior of Server.Self with discovery disabled is improved. It now
tries much harder to report a working IP address, falling back to
127.0.0.1 if no suitable address can be determined through other means.
These changes were needed for tests of other packages later in the
series.
* p2p/simulations, p2p/testing: port to p2p/enode
No surprises here, mostly replacements of discover.Node, discover.NodeID
with their new equivalents. The 'interesting' API changes are:
- testing.ProtocolSession tracks complete nodes, not just their IDs.
- adapters.NodeConfig has a new method to create a complete node.
These changes were needed to make swarm tests work.
Note that the NodeID change makes the code incompatible with old
simulation snapshots.
* whisper/whisperv5, whisper/whisperv6: port to p2p/enode
This port was easy because whisper uses []byte for node IDs and
URL strings in the API.
* eth: port to p2p/enode
Again, easy to port because eth uses strings for node IDs and doesn't
care about node information in any way.
* les: port to p2p/enode
Apart from replacing discover.NodeID with enode.ID, most changes are in
the server pool code. It now deals with complete nodes instead
of (Pubkey, IP, Port) triples. The database format is unchanged for now,
but we should probably change it to use the node database later.
* node: port to p2p/enode
This change simply replaces discover.Node and discover.NodeID with their
new equivalents.
* swarm/network: port to p2p/enode
Swarm has its own node address representation, BzzAddr, containing both
an overlay address (the hash of a secp256k1 public key) and an underlay
address (enode:// URL).
There are no changes to the BzzAddr format in this commit, but certain
operations such as creating a BzzAddr from a node ID are now impossible
because node IDs aren't public keys anymore.
Most swarm-related changes in the series remove uses of
NewAddrFromNodeID, replacing it with NewAddr which takes a complete node
as argument. ToOverlayAddr is removed because we can just use the node
ID directly.
2018-09-25 00:59:00 +02:00
|
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
2018-07-30 15:55:25 -05:00
|
|
|
"github.com/ethereum/go-ethereum/p2p/simulations/adapters"
|
2019-06-03 12:28:18 +02:00
|
|
|
"github.com/ethersphere/swarm/chunk"
|
|
|
|
"github.com/ethersphere/swarm/log"
|
|
|
|
"github.com/ethersphere/swarm/network"
|
|
|
|
"github.com/ethersphere/swarm/network/simulation"
|
|
|
|
"github.com/ethersphere/swarm/state"
|
|
|
|
"github.com/ethersphere/swarm/storage"
|
|
|
|
"github.com/ethersphere/swarm/testutil"
|
2018-06-20 14:06:27 +02:00
|
|
|
)
|
|
|
|
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
const dataChunkCount = 1000
|
|
|
|
|
|
|
|
// TestTwoNodesFullSync connects two nodes, uploads content to one node and expects the
|
|
|
|
// uploader node's chunks to be synced to the second node. This is expected behaviour since although
|
|
|
|
// both nodes might share address bits, due to kademlia depth=0 when under ProxBinSize - this will
|
|
|
|
// eventually create subscriptions on all bins between the two nodes, causing a full sync between them
|
|
|
|
// The test checks that:
|
|
|
|
// 1. All subscriptions are created
|
|
|
|
// 2. All chunks are transferred from one node to another (asserted by summing and comparing bin indexes on both nodes)
|
|
|
|
func TestTwoNodesFullSync(t *testing.T) { //
|
|
|
|
var (
|
|
|
|
chunkCount = 1000 //~4mb
|
|
|
|
syncTime = 5 * time.Second
|
|
|
|
)
|
2018-07-30 15:55:25 -05:00
|
|
|
sim := simulation.New(map[string]simulation.ServiceFunc{
|
|
|
|
"streamer": func(ctx *adapters.ServiceContext, bucket *sync.Map) (s node.Service, cleanup func(), err error) {
|
2019-02-01 09:58:46 +01:00
|
|
|
addr := network.NewAddr(ctx.Config.Node())
|
2018-07-30 15:55:25 -05:00
|
|
|
|
2019-02-01 09:58:46 +01:00
|
|
|
netStore, delivery, clean, err := newNetStoreAndDeliveryWithBzzAddr(ctx, bucket, addr)
|
2018-09-13 11:42:19 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2018-07-30 15:55:25 -05:00
|
|
|
|
2019-02-13 13:03:23 +01:00
|
|
|
var dir string
|
|
|
|
var store *state.DBStore
|
2019-02-20 22:57:42 +01:00
|
|
|
if testutil.RaceEnabled {
|
2019-02-13 13:03:23 +01:00
|
|
|
// Use on-disk DBStore to reduce memory consumption in race tests.
|
|
|
|
dir, err = ioutil.TempDir("", "swarm-stream-")
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
store, err = state.NewDBStore(dir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
store = state.NewInmemoryStore()
|
|
|
|
}
|
|
|
|
|
|
|
|
r := NewRegistry(addr.ID(), delivery, netStore, store, &RegistryOptions{
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
Syncing: SyncingAutoSubscribe,
|
|
|
|
SyncUpdateDelay: 500 * time.Millisecond, //this is needed to trigger the update subscriptions loop
|
|
|
|
SkipCheck: true,
|
2018-11-15 17:41:19 -05:00
|
|
|
}, nil)
|
2018-07-30 15:55:25 -05:00
|
|
|
|
2019-02-01 09:58:46 +01:00
|
|
|
cleanup = func() {
|
|
|
|
r.Close()
|
|
|
|
clean()
|
2019-02-13 13:03:23 +01:00
|
|
|
if dir != "" {
|
|
|
|
os.RemoveAll(dir)
|
|
|
|
}
|
2019-02-01 09:58:46 +01:00
|
|
|
}
|
2018-07-30 15:55:25 -05:00
|
|
|
|
|
|
|
return r, cleanup, nil
|
|
|
|
},
|
|
|
|
})
|
|
|
|
defer sim.Close()
|
2018-06-20 14:06:27 +02:00
|
|
|
|
|
|
|
// 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()
|
|
|
|
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
_, err := sim.AddNodesAndConnectChain(2)
|
2018-06-20 14:06:27 +02:00
|
|
|
if err != nil {
|
2018-07-30 15:55:25 -05:00
|
|
|
t.Fatal(err)
|
2018-06-20 14:06:27 +02:00
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
|
2019-01-09 07:05:55 +01:00
|
|
|
result := sim.Run(ctx, func(ctx context.Context, sim *simulation.Simulation) (err error) {
|
2018-07-30 15:55:25 -05:00
|
|
|
nodeIDs := sim.UpNodeIDs()
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
if len(nodeIDs) != 2 {
|
|
|
|
return errors.New("not enough nodes up")
|
|
|
|
}
|
2018-06-20 14:06:27 +02:00
|
|
|
|
all: new p2p node representation (#17643)
Package p2p/enode provides a generalized representation of p2p nodes
which can contain arbitrary information in key/value pairs. It is also
the new home for the node database. The "v4" identity scheme is also
moved here from p2p/enr to remove the dependency on Ethereum crypto from
that package.
Record signature handling is changed significantly. The identity scheme
registry is removed and acceptable schemes must be passed to any method
that needs identity. This means records must now be validated explicitly
after decoding.
The enode API is designed to make signature handling easy and safe: most
APIs around the codebase work with enode.Node, which is a wrapper around
a valid record. Going from enr.Record to enode.Node requires a valid
signature.
* p2p/discover: port to p2p/enode
This ports the discovery code to the new node representation in
p2p/enode. The wire protocol is unchanged, this can be considered a
refactoring change. The Kademlia table can now deal with nodes using an
arbitrary identity scheme. This requires a few incompatible API changes:
- Table.Lookup is not available anymore. It used to take a public key
as argument because v4 protocol requires one. Its replacement is
LookupRandom.
- Table.Resolve takes *enode.Node instead of NodeID. This is also for
v4 protocol compatibility because nodes cannot be looked up by ID
alone.
- Types Node and NodeID are gone. Further commits in the series will be
fixes all over the the codebase to deal with those removals.
* p2p: port to p2p/enode and discovery changes
This adapts package p2p to the changes in p2p/discover. All uses of
discover.Node and discover.NodeID are replaced by their equivalents from
p2p/enode.
New API is added to retrieve the enode.Node instance of a peer. The
behavior of Server.Self with discovery disabled is improved. It now
tries much harder to report a working IP address, falling back to
127.0.0.1 if no suitable address can be determined through other means.
These changes were needed for tests of other packages later in the
series.
* p2p/simulations, p2p/testing: port to p2p/enode
No surprises here, mostly replacements of discover.Node, discover.NodeID
with their new equivalents. The 'interesting' API changes are:
- testing.ProtocolSession tracks complete nodes, not just their IDs.
- adapters.NodeConfig has a new method to create a complete node.
These changes were needed to make swarm tests work.
Note that the NodeID change makes the code incompatible with old
simulation snapshots.
* whisper/whisperv5, whisper/whisperv6: port to p2p/enode
This port was easy because whisper uses []byte for node IDs and
URL strings in the API.
* eth: port to p2p/enode
Again, easy to port because eth uses strings for node IDs and doesn't
care about node information in any way.
* les: port to p2p/enode
Apart from replacing discover.NodeID with enode.ID, most changes are in
the server pool code. It now deals with complete nodes instead
of (Pubkey, IP, Port) triples. The database format is unchanged for now,
but we should probably change it to use the node database later.
* node: port to p2p/enode
This change simply replaces discover.Node and discover.NodeID with their
new equivalents.
* swarm/network: port to p2p/enode
Swarm has its own node address representation, BzzAddr, containing both
an overlay address (the hash of a secp256k1 public key) and an underlay
address (enode:// URL).
There are no changes to the BzzAddr format in this commit, but certain
operations such as creating a BzzAddr from a node ID are now impossible
because node IDs aren't public keys anymore.
Most swarm-related changes in the series remove uses of
NewAddrFromNodeID, replacing it with NewAddr which takes a complete node
as argument. ToOverlayAddr is removed because we can just use the node
ID directly.
2018-09-25 00:59:00 +02:00
|
|
|
nodeIndex := make(map[enode.ID]int)
|
2018-07-30 15:55:25 -05:00
|
|
|
for i, id := range nodeIDs {
|
|
|
|
nodeIndex[id] = i
|
2018-06-20 14:06:27 +02:00
|
|
|
}
|
|
|
|
|
2019-02-13 13:03:23 +01:00
|
|
|
disconnected := watchDisconnections(ctx, sim)
|
2019-01-09 07:05:55 +01:00
|
|
|
defer func() {
|
2019-02-13 13:03:23 +01:00
|
|
|
if err != nil && disconnected.bool() {
|
|
|
|
err = errors.New("disconnect events received")
|
2018-07-30 15:55:25 -05:00
|
|
|
}
|
|
|
|
}()
|
2018-06-20 14:06:27 +02:00
|
|
|
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
item, ok := sim.NodeItem(nodeIDs[0], bucketKeyFileStore)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("No filestore")
|
|
|
|
}
|
|
|
|
fileStore := item.(*storage.FileStore)
|
|
|
|
size := chunkCount * chunkSize
|
|
|
|
|
|
|
|
_, wait1, err := fileStore.Store(ctx, testutil.RandomReader(0, size), int64(size), false)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("fileStore.Store: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, wait2, err := fileStore.Store(ctx, testutil.RandomReader(10, size), int64(size), false)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("fileStore.Store: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
wait1(ctx)
|
|
|
|
wait2(ctx)
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
|
|
|
|
//explicitly check that all subscriptions are there on all bins
|
|
|
|
for idx, id := range nodeIDs {
|
|
|
|
node := sim.Net.GetNode(id)
|
|
|
|
client, err := node.Client()
|
2018-06-20 14:06:27 +02:00
|
|
|
if err != nil {
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
return fmt.Errorf("create node %d rpc client fail: %v", idx, err)
|
2018-06-20 14:06:27 +02:00
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
|
|
|
|
//ask it for subscriptions
|
|
|
|
pstreams := make(map[string][]string)
|
|
|
|
err = client.Call(&pstreams, "stream_getPeerServerSubscriptions")
|
2018-07-30 15:55:25 -05:00
|
|
|
if err != nil {
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
return fmt.Errorf("client call stream_getPeerSubscriptions: %v", err)
|
2018-06-20 14:06:27 +02:00
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
for _, streams := range pstreams {
|
|
|
|
b := make([]bool, 17)
|
|
|
|
for _, sub := range streams {
|
|
|
|
subPO, err := ParseSyncBinKey(strings.Split(sub, "|")[1])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
b[int(subPO)] = true
|
2018-07-30 15:55:25 -05:00
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
for bin, v := range b {
|
|
|
|
if !v {
|
|
|
|
return fmt.Errorf("did not find any subscriptions for node %d on bin %d", idx, bin)
|
|
|
|
}
|
2018-06-20 14:06:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
log.Debug("subscriptions on all bins exist between the two nodes, proceeding to check bin indexes")
|
|
|
|
log.Debug("uploader node", "enode", nodeIDs[0])
|
|
|
|
item, ok = sim.NodeItem(nodeIDs[0], bucketKeyStore)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("No DB")
|
|
|
|
}
|
|
|
|
store := item.(chunk.Store)
|
|
|
|
uploaderNodeBinIDs := make([]uint64, 17)
|
|
|
|
|
|
|
|
log.Debug("checking pull subscription bin ids")
|
|
|
|
for po := 0; po <= 16; po++ {
|
|
|
|
until, err := store.LastPullSubscriptionBinID(uint8(po))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
uploaderNodeBinIDs[po] = until
|
|
|
|
}
|
|
|
|
// wait for syncing
|
|
|
|
time.Sleep(syncTime)
|
|
|
|
|
|
|
|
// check that the sum of bin indexes is equal
|
|
|
|
for idx := range nodeIDs {
|
|
|
|
if nodeIDs[idx] == nodeIDs[0] {
|
|
|
|
continue
|
2018-07-30 15:55:25 -05:00
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
|
|
|
|
log.Debug("compare to", "enode", nodeIDs[idx])
|
|
|
|
item, ok = sim.NodeItem(nodeIDs[idx], bucketKeyStore)
|
2018-07-30 15:55:25 -05:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("No DB")
|
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
db := item.(chunk.Store)
|
|
|
|
|
|
|
|
uploaderSum, otherNodeSum := 0, 0
|
|
|
|
for po, uploaderUntil := range uploaderNodeBinIDs {
|
|
|
|
shouldUntil, err := db.LastPullSubscriptionBinID(uint8(po))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
otherNodeSum += int(shouldUntil)
|
|
|
|
uploaderSum += int(uploaderUntil)
|
|
|
|
}
|
|
|
|
if uploaderSum != otherNodeSum {
|
|
|
|
t.Fatalf("bin indice sum mismatch. got %d want %d", otherNodeSum, uploaderSum)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Fatal(result.Error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestStarNetworkSync tests that syncing works on a more elaborate network topology
|
|
|
|
// the test creates a network of 10 nodes and connects them in a star topology, this causes
|
|
|
|
// the pivot node to have neighbourhood depth > 0, which in turn means that each individual node
|
|
|
|
// will only get SOME of the chunks that exist on the uploader node (the pivot node).
|
|
|
|
// The test checks that EVERY chunk that exists on the pivot node:
|
|
|
|
// a. exists on the most proximate node
|
|
|
|
// b. exists on the nodes subscribed on the corresponding chunk PO
|
|
|
|
// c. does not exist on the peers that do not have that PO subscription
|
|
|
|
func TestStarNetworkSync(t *testing.T) {
|
|
|
|
if testutil.RaceEnabled {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var (
|
|
|
|
chunkCount = 500
|
|
|
|
nodeCount = 6
|
|
|
|
simTimeout = 60 * time.Second
|
|
|
|
syncTime = 30 * time.Second
|
|
|
|
filesize = chunkCount * chunkSize
|
|
|
|
)
|
|
|
|
sim := simulation.New(map[string]simulation.ServiceFunc{
|
|
|
|
"streamer": func(ctx *adapters.ServiceContext, bucket *sync.Map) (s node.Service, cleanup func(), err error) {
|
|
|
|
addr := network.NewAddr(ctx.Config.Node())
|
|
|
|
|
|
|
|
netStore, delivery, clean, err := newNetStoreAndDeliveryWithBzzAddr(ctx, bucket, addr)
|
2019-04-10 16:50:58 +02:00
|
|
|
if err != nil {
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
return nil, nil, err
|
2019-04-10 16:50:58 +02:00
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
|
|
|
|
var dir string
|
|
|
|
var store *state.DBStore
|
|
|
|
if testutil.RaceEnabled {
|
|
|
|
// Use on-disk DBStore to reduce memory consumption in race tests.
|
|
|
|
dir, err = ioutil.TempDir("", "swarm-stream-")
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
store, err = state.NewDBStore(dir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
store = state.NewInmemoryStore()
|
|
|
|
}
|
|
|
|
|
|
|
|
r := NewRegistry(addr.ID(), delivery, netStore, store, &RegistryOptions{
|
|
|
|
Syncing: SyncingAutoSubscribe,
|
|
|
|
SyncUpdateDelay: 200 * time.Millisecond,
|
|
|
|
SkipCheck: true,
|
|
|
|
}, nil)
|
|
|
|
|
|
|
|
cleanup = func() {
|
|
|
|
r.Close()
|
|
|
|
clean()
|
|
|
|
if dir != "" {
|
|
|
|
os.RemoveAll(dir)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, cleanup, nil
|
|
|
|
},
|
|
|
|
})
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
// create context for simulation run
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), simTimeout)
|
|
|
|
// defer cancel should come before defer simulation teardown
|
|
|
|
defer cancel()
|
|
|
|
_, err := sim.AddNodesAndConnectStar(nodeCount)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
result := sim.Run(ctx, func(ctx context.Context, sim *simulation.Simulation) (err error) {
|
|
|
|
nodeIDs := sim.UpNodeIDs()
|
|
|
|
|
|
|
|
nodeIndex := make(map[enode.ID]int)
|
|
|
|
for i, id := range nodeIDs {
|
|
|
|
nodeIndex[id] = i
|
|
|
|
}
|
|
|
|
disconnected := watchDisconnections(ctx, sim)
|
|
|
|
defer func() {
|
|
|
|
if err != nil && disconnected.bool() {
|
|
|
|
err = errors.New("disconnect events received")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
seed := int(time.Now().Unix())
|
|
|
|
randomBytes := testutil.RandomBytes(seed, filesize)
|
|
|
|
|
|
|
|
chunkAddrs, err := getAllRefs(randomBytes[:])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
chunksProx := make([]chunkProxData, 0)
|
|
|
|
for _, chunkAddr := range chunkAddrs {
|
|
|
|
chunkInfo := chunkProxData{
|
|
|
|
addr: chunkAddr,
|
|
|
|
uploaderNodePO: chunk.Proximity(nodeIDs[0].Bytes(), chunkAddr),
|
|
|
|
nodeProximities: make(map[enode.ID]int),
|
|
|
|
}
|
|
|
|
closestNodePO := 0
|
|
|
|
for nodeAddr := range nodeIndex {
|
|
|
|
po := chunk.Proximity(nodeAddr.Bytes(), chunkAddr)
|
|
|
|
|
|
|
|
chunkInfo.nodeProximities[nodeAddr] = po
|
|
|
|
if po > closestNodePO {
|
|
|
|
chunkInfo.closestNodePO = po
|
|
|
|
chunkInfo.closestNode = nodeAddr
|
2019-04-10 16:50:58 +02:00
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
log.Trace("processed chunk", "uploaderPO", chunkInfo.uploaderNodePO, "ci", chunkInfo.closestNode, "cpo", chunkInfo.closestNodePO, "cadrr", chunkInfo.addr)
|
2019-04-10 16:50:58 +02:00
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
chunksProx = append(chunksProx, chunkInfo)
|
2018-06-20 14:06:27 +02:00
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
|
|
|
|
// get the pivot node and pump some data
|
|
|
|
item, ok := sim.NodeItem(nodeIDs[0], bucketKeyFileStore)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("No filestore")
|
|
|
|
}
|
|
|
|
fileStore := item.(*storage.FileStore)
|
|
|
|
reader := bytes.NewReader(randomBytes[:])
|
|
|
|
_, wait1, err := fileStore.Store(ctx, reader, int64(len(randomBytes)), false)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("fileStore.Store: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
wait1(ctx)
|
|
|
|
|
|
|
|
// check that chunks with a marked proximate host are where they should be
|
|
|
|
count := 0
|
|
|
|
|
|
|
|
// wait to sync
|
|
|
|
time.Sleep(syncTime)
|
|
|
|
|
|
|
|
log.Info("checking if chunks are on prox hosts")
|
|
|
|
for _, c := range chunksProx {
|
|
|
|
// if the most proximate host is set - check that the chunk is there
|
|
|
|
if c.closestNodePO > 0 {
|
|
|
|
count++
|
|
|
|
log.Trace("found chunk with proximate host set, trying to find in localstore", "po", c.closestNodePO, "closestNode", c.closestNode)
|
|
|
|
item, ok = sim.NodeItem(c.closestNode, bucketKeyStore)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("No DB")
|
|
|
|
}
|
|
|
|
store := item.(chunk.Store)
|
|
|
|
|
|
|
|
_, err := store.Get(context.TODO(), chunk.ModeGetRequest, c.addr)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Debug("done checking stores", "checked chunks", count, "total chunks", len(chunksProx))
|
|
|
|
if count != len(chunksProx) {
|
|
|
|
return fmt.Errorf("checked chunks dont match numer of chunks. got %d want %d", count, len(chunksProx))
|
|
|
|
}
|
|
|
|
|
|
|
|
// check that chunks from each po are _not_ on nodes that don't have subscriptions for these POs
|
|
|
|
node := sim.Net.GetNode(nodeIDs[0])
|
|
|
|
client, err := node.Client()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("create node 1 rpc client fail: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
//ask it for subscriptions
|
|
|
|
pstreams := make(map[string][]string)
|
|
|
|
err = client.Call(&pstreams, "stream_getPeerServerSubscriptions")
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("client call stream_getPeerSubscriptions: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
//create a map of no-subs for a node
|
|
|
|
noSubMap := make(map[enode.ID]map[int]bool)
|
|
|
|
|
|
|
|
for subscribedNode, streams := range pstreams {
|
|
|
|
id := enode.HexID(subscribedNode)
|
|
|
|
b := make([]bool, 17)
|
|
|
|
for _, sub := range streams {
|
|
|
|
subPO, err := ParseSyncBinKey(strings.Split(sub, "|")[1])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
b[int(subPO)] = true
|
|
|
|
}
|
|
|
|
noMapMap := make(map[int]bool)
|
|
|
|
for i, v := range b {
|
|
|
|
if !v {
|
|
|
|
noMapMap[i] = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
noSubMap[id] = noMapMap
|
|
|
|
}
|
|
|
|
|
|
|
|
// iterate over noSubMap, for each node check if it has any of the chunks it shouldn't have
|
|
|
|
for nodeId, nodeNoSubs := range noSubMap {
|
|
|
|
for _, c := range chunksProx {
|
|
|
|
// if the chunk PO is equal to the sub that the node shouldnt have - check if the node has the chunk!
|
|
|
|
if _, ok := nodeNoSubs[c.uploaderNodePO]; ok {
|
|
|
|
count++
|
|
|
|
item, ok = sim.NodeItem(nodeId, bucketKeyStore)
|
2018-07-30 15:55:25 -05:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("No DB")
|
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
store := item.(chunk.Store)
|
|
|
|
|
|
|
|
_, err := store.Get(context.TODO(), chunk.ModeGetRequest, c.addr)
|
2018-09-13 11:42:19 +02:00
|
|
|
if err == nil {
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
return fmt.Errorf("got a chunk where it shouldn't be! addr %s, nodeId %s", c.addr, nodeId)
|
2018-07-30 15:55:25 -05:00
|
|
|
}
|
2018-06-20 14:06:27 +02:00
|
|
|
}
|
|
|
|
}
|
2018-07-30 15:55:25 -05:00
|
|
|
}
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
return nil
|
2018-07-30 15:55:25 -05:00
|
|
|
})
|
2018-06-20 14:06:27 +02:00
|
|
|
|
|
|
|
if result.Error != nil {
|
2018-07-30 15:55:25 -05:00
|
|
|
t.Fatal(result.Error)
|
2018-06-20 14:06:27 +02:00
|
|
|
}
|
|
|
|
}
|
2018-11-26 13:34:40 -05:00
|
|
|
|
swarm/network/stream: add syncing test (#1399)
* swarm/network/stream: remove old syncing test and replace it with two more granular tests, with the first one testing a full sync between two nodes (makes sure that when all subscriptions are established on all bins - all content is replicated from one node to the other), and a second test that adds a bigger amount of nodes to a star network topology, effectively making the pivot node have a depth > 0 to sync just certain content to the connected nodes (due to a star topology this test (always 1 hop) does not check that, for example, specific content is routed across multiple nodes, but assumes content should be only on the most proximate node)
* api, cmd/swarm-smoke, fuse, network, storage: fix data dir leak when using ephemeral filestore, pull test params to be easily adjustable
2019-06-10 10:52:19 +02:00
|
|
|
type chunkProxData struct {
|
|
|
|
addr chunk.Address
|
|
|
|
uploaderNodePO int
|
|
|
|
nodeProximities map[enode.ID]int
|
|
|
|
closestNode enode.ID
|
|
|
|
closestNodePO int
|
|
|
|
}
|
|
|
|
|
2018-11-26 13:34:40 -05:00
|
|
|
//TestSameVersionID just checks that if the version is not changed,
|
|
|
|
//then streamer peers see each other
|
|
|
|
func TestSameVersionID(t *testing.T) {
|
|
|
|
//test version ID
|
|
|
|
v := uint(1)
|
|
|
|
sim := simulation.New(map[string]simulation.ServiceFunc{
|
|
|
|
"streamer": func(ctx *adapters.ServiceContext, bucket *sync.Map) (s node.Service, cleanup func(), err error) {
|
2019-02-01 09:58:46 +01:00
|
|
|
addr, netStore, delivery, clean, err := newNetStoreAndDelivery(ctx, bucket)
|
2018-11-26 13:34:40 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
r := NewRegistry(addr.ID(), delivery, netStore, state.NewInmemoryStore(), &RegistryOptions{
|
2019-04-11 10:26:52 +02:00
|
|
|
Syncing: SyncingAutoSubscribe,
|
2018-11-26 13:34:40 -05:00
|
|
|
}, nil)
|
2019-02-01 09:58:46 +01:00
|
|
|
bucket.Store(bucketKeyRegistry, r)
|
|
|
|
|
2018-11-26 13:34:40 -05:00
|
|
|
//assign to each node the same version ID
|
|
|
|
r.spec.Version = v
|
|
|
|
|
2019-02-01 09:58:46 +01:00
|
|
|
cleanup = func() {
|
|
|
|
r.Close()
|
|
|
|
clean()
|
|
|
|
}
|
2018-11-26 13:34:40 -05:00
|
|
|
|
|
|
|
return r, cleanup, nil
|
|
|
|
},
|
|
|
|
})
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
//connect just two nodes
|
|
|
|
log.Info("Adding nodes to simulation")
|
|
|
|
_, err := sim.AddNodesAndConnectChain(2)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Info("Starting simulation")
|
|
|
|
ctx := context.Background()
|
|
|
|
//make sure they have time to connect
|
|
|
|
time.Sleep(200 * time.Millisecond)
|
|
|
|
result := sim.Run(ctx, func(ctx context.Context, sim *simulation.Simulation) error {
|
|
|
|
//get the pivot node's filestore
|
|
|
|
nodes := sim.UpNodeIDs()
|
|
|
|
|
|
|
|
item, ok := sim.NodeItem(nodes[0], bucketKeyRegistry)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("No filestore")
|
|
|
|
}
|
|
|
|
registry := item.(*Registry)
|
|
|
|
|
|
|
|
//the peers should connect, thus getting the peer should not return nil
|
|
|
|
if registry.getPeer(nodes[1]) == nil {
|
2019-02-13 13:03:23 +01:00
|
|
|
return errors.New("Expected the peer to not be nil, but it is")
|
2018-11-26 13:34:40 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Fatal(result.Error)
|
|
|
|
}
|
|
|
|
log.Info("Simulation ended")
|
|
|
|
}
|
|
|
|
|
|
|
|
//TestDifferentVersionID proves that if the streamer protocol version doesn't match,
|
|
|
|
//then the peers are not connected at streamer level
|
|
|
|
func TestDifferentVersionID(t *testing.T) {
|
|
|
|
//create a variable to hold the version ID
|
|
|
|
v := uint(0)
|
|
|
|
sim := simulation.New(map[string]simulation.ServiceFunc{
|
|
|
|
"streamer": func(ctx *adapters.ServiceContext, bucket *sync.Map) (s node.Service, cleanup func(), err error) {
|
2019-02-01 09:58:46 +01:00
|
|
|
addr, netStore, delivery, clean, err := newNetStoreAndDelivery(ctx, bucket)
|
2018-11-26 13:34:40 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
r := NewRegistry(addr.ID(), delivery, netStore, state.NewInmemoryStore(), &RegistryOptions{
|
2019-04-11 10:26:52 +02:00
|
|
|
Syncing: SyncingAutoSubscribe,
|
2018-11-26 13:34:40 -05:00
|
|
|
}, nil)
|
2019-02-01 09:58:46 +01:00
|
|
|
bucket.Store(bucketKeyRegistry, r)
|
2018-11-26 13:34:40 -05:00
|
|
|
|
|
|
|
//increase the version ID for each node
|
|
|
|
v++
|
|
|
|
r.spec.Version = v
|
|
|
|
|
2019-02-01 09:58:46 +01:00
|
|
|
cleanup = func() {
|
|
|
|
r.Close()
|
|
|
|
clean()
|
|
|
|
}
|
2018-11-26 13:34:40 -05:00
|
|
|
|
|
|
|
return r, cleanup, nil
|
|
|
|
},
|
|
|
|
})
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
//connect the nodes
|
|
|
|
log.Info("Adding nodes to simulation")
|
|
|
|
_, err := sim.AddNodesAndConnectChain(2)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Info("Starting simulation")
|
|
|
|
ctx := context.Background()
|
|
|
|
//make sure they have time to connect
|
|
|
|
time.Sleep(200 * time.Millisecond)
|
|
|
|
result := sim.Run(ctx, func(ctx context.Context, sim *simulation.Simulation) error {
|
|
|
|
//get the pivot node's filestore
|
|
|
|
nodes := sim.UpNodeIDs()
|
|
|
|
|
|
|
|
item, ok := sim.NodeItem(nodes[0], bucketKeyRegistry)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("No filestore")
|
|
|
|
}
|
|
|
|
registry := item.(*Registry)
|
|
|
|
|
|
|
|
//getting the other peer should fail due to the different version numbers
|
|
|
|
if registry.getPeer(nodes[1]) != nil {
|
2019-02-13 13:03:23 +01:00
|
|
|
return errors.New("Expected the peer to be nil, but it is not")
|
2018-11-26 13:34:40 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if result.Error != nil {
|
|
|
|
t.Fatal(result.Error)
|
|
|
|
}
|
|
|
|
log.Info("Simulation ended")
|
|
|
|
}
|