-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
integration test for the dual dht #7151
Changes from all commits
635a5c7
02cf54d
94de605
b61d963
5079cfa
971cbf7
e5a4187
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,277 @@ | ||
package integrationtest | ||
|
||
import ( | ||
"context" | ||
"encoding/binary" | ||
"fmt" | ||
"math" | ||
"math/rand" | ||
"net" | ||
"testing" | ||
"time" | ||
|
||
"github.com/ipfs/go-cid" | ||
"github.com/ipfs/go-ipfs/core" | ||
mock "github.com/ipfs/go-ipfs/core/mock" | ||
libp2p2 "github.com/ipfs/go-ipfs/core/node/libp2p" | ||
|
||
corenet "github.com/libp2p/go-libp2p-core/network" | ||
"github.com/libp2p/go-libp2p-core/peerstore" | ||
testutil "github.com/libp2p/go-libp2p-testing/net" | ||
mocknet "github.com/libp2p/go-libp2p/p2p/net/mock" | ||
|
||
ma "github.com/multiformats/go-multiaddr" | ||
) | ||
|
||
func TestDHTConnectivityFast(t *testing.T) { | ||
conf := testutil.LatencyConfig{ | ||
NetworkLatency: 0, | ||
RoutingLatency: 0, | ||
BlockstoreLatency: 0, | ||
} | ||
if err := RunDHTConnectivity(conf, 5); err != nil { | ||
t.Fatal(err) | ||
} | ||
} | ||
|
||
func TestDHTConnectivitySlowNetwork(t *testing.T) { | ||
SkipUnlessEpic(t) | ||
conf := testutil.LatencyConfig{NetworkLatency: 400 * time.Millisecond} | ||
if err := RunDHTConnectivity(conf, 5); err != nil { | ||
t.Fatal(err) | ||
} | ||
} | ||
|
||
func TestDHTConnectivitySlowRouting(t *testing.T) { | ||
SkipUnlessEpic(t) | ||
conf := testutil.LatencyConfig{RoutingLatency: 400 * time.Millisecond} | ||
if err := RunDHTConnectivity(conf, 5); err != nil { | ||
t.Fatal(err) | ||
} | ||
} | ||
|
||
var wanPrefix = net.ParseIP("100::") | ||
var lanPrefix = net.ParseIP("fe80::") | ||
|
||
func makeAddr(n uint32, wan bool) ma.Multiaddr { | ||
var ip net.IP | ||
if wan { | ||
ip = append(net.IP{}, wanPrefix...) | ||
} else { | ||
ip = append(net.IP{}, lanPrefix...) | ||
} | ||
|
||
binary.LittleEndian.PutUint32(ip[12:], n) | ||
addr, _ := ma.NewMultiaddr(fmt.Sprintf("/ip6/%s/tcp/4242", ip)) | ||
return addr | ||
} | ||
|
||
func RunDHTConnectivity(conf testutil.LatencyConfig, numPeers int) error { | ||
ctx, cancel := context.WithCancel(context.Background()) | ||
defer cancel() | ||
|
||
// create network | ||
mn := mocknet.New(ctx) | ||
mn.SetLinkDefaults(mocknet.LinkOptions{ | ||
Latency: conf.NetworkLatency, | ||
Bandwidth: math.MaxInt32, | ||
}) | ||
|
||
testPeer, err := core.NewNode(ctx, &core.BuildCfg{ | ||
Online: true, | ||
Host: mock.MockHostOption(mn), | ||
}) | ||
if err != nil { | ||
return err | ||
} | ||
defer testPeer.Close() | ||
|
||
wanPeers := []*core.IpfsNode{} | ||
lanPeers := []*core.IpfsNode{} | ||
|
||
connectionContext, connCtxCancel := context.WithTimeout(ctx, 15*time.Second) | ||
defer connCtxCancel() | ||
for i := 0; i < numPeers; i++ { | ||
wanPeer, err := core.NewNode(ctx, &core.BuildCfg{ | ||
Online: true, | ||
Routing: libp2p2.DHTServerOption, | ||
Host: mock.MockHostOption(mn), | ||
}) | ||
if err != nil { | ||
return err | ||
} | ||
defer wanPeer.Close() | ||
wanAddr := makeAddr(uint32(i), true) | ||
wanPeer.Peerstore.AddAddr(wanPeer.Identity, wanAddr, peerstore.PermanentAddrTTL) | ||
for _, p := range wanPeers { | ||
_, _ = mn.LinkPeers(p.Identity, wanPeer.Identity) | ||
_ = wanPeer.PeerHost.Connect(connectionContext, p.Peerstore.PeerInfo(p.Identity)) | ||
} | ||
wanPeers = append(wanPeers, wanPeer) | ||
|
||
lanPeer, err := core.NewNode(ctx, &core.BuildCfg{ | ||
Online: true, | ||
Host: mock.MockHostOption(mn), | ||
}) | ||
if err != nil { | ||
return err | ||
} | ||
defer lanPeer.Close() | ||
lanAddr := makeAddr(uint32(i), false) | ||
lanPeer.Peerstore.AddAddr(lanPeer.Identity, lanAddr, peerstore.PermanentAddrTTL) | ||
for _, p := range lanPeers { | ||
_, _ = mn.LinkPeers(p.Identity, lanPeer.Identity) | ||
_ = lanPeer.PeerHost.Connect(connectionContext, p.Peerstore.PeerInfo(p.Identity)) | ||
} | ||
lanPeers = append(lanPeers, lanPeer) | ||
} | ||
connCtxCancel() | ||
|
||
// Add interfaces / addresses to test peer. | ||
wanAddr := makeAddr(0, true) | ||
testPeer.Peerstore.AddAddr(testPeer.Identity, wanAddr, peerstore.PermanentAddrTTL) | ||
lanAddr := makeAddr(0, false) | ||
testPeer.Peerstore.AddAddr(testPeer.Identity, lanAddr, peerstore.PermanentAddrTTL) | ||
|
||
// The test peer is connected to one lan peer. | ||
for _, p := range lanPeers { | ||
if _, err := mn.LinkPeers(testPeer.Identity, p.Identity); err != nil { | ||
return err | ||
} | ||
} | ||
err = testPeer.PeerHost.Connect(ctx, lanPeers[0].Peerstore.PeerInfo(lanPeers[0].Identity)) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
startupCtx, startupCancel := context.WithTimeout(ctx, time.Second*60) | ||
StartupWait: | ||
for { | ||
select { | ||
case err := <-testPeer.DHT.LAN.RefreshRoutingTable(): | ||
if err != nil { | ||
fmt.Printf("Error refreshing routing table: %v\n", err) | ||
} | ||
if testPeer.DHT.LAN.RoutingTable() == nil || | ||
testPeer.DHT.LAN.RoutingTable().Size() == 0 || | ||
err != nil { | ||
time.Sleep(100 * time.Millisecond) | ||
continue | ||
} | ||
break StartupWait | ||
case <-startupCtx.Done(): | ||
startupCancel() | ||
return fmt.Errorf("expected faster dht bootstrap") | ||
} | ||
} | ||
startupCancel() | ||
|
||
// choose a lan peer and validate lan DHT is functioning. | ||
i := rand.Intn(len(lanPeers)) | ||
if testPeer.PeerHost.Network().Connectedness(lanPeers[i].Identity) == corenet.Connected { | ||
i = (i + 1) % len(lanPeers) | ||
if testPeer.PeerHost.Network().Connectedness(lanPeers[i].Identity) == corenet.Connected { | ||
_ = testPeer.PeerHost.Network().ClosePeer(lanPeers[i].Identity) | ||
testPeer.PeerHost.Peerstore().ClearAddrs(lanPeers[i].Identity) | ||
} | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Now that we're trying to find a record, not a peer, this shouldn't be necessary. |
||
// That peer will provide a new CID, and we'll validate the test node can find it. | ||
provideCid := cid.NewCidV1(cid.Raw, []byte("Lan Provide Record")) | ||
provideCtx, cancel := context.WithTimeout(ctx, time.Second) | ||
defer cancel() | ||
if err := lanPeers[i].DHT.Provide(provideCtx, provideCid, true); err != nil { | ||
return err | ||
} | ||
provChan := testPeer.DHT.FindProvidersAsync(provideCtx, provideCid, 0) | ||
prov, ok := <-provChan | ||
if !ok || prov.ID == "" { | ||
return fmt.Errorf("Expected provider. stream closed early") | ||
} | ||
if prov.ID != lanPeers[i].Identity { | ||
return fmt.Errorf("Unexpected lan peer provided record") | ||
} | ||
|
||
// Now, connect with a wan peer. | ||
for _, p := range wanPeers { | ||
if _, err := mn.LinkPeers(testPeer.Identity, p.Identity); err != nil { | ||
return err | ||
} | ||
} | ||
|
||
err = testPeer.PeerHost.Connect(ctx, wanPeers[0].Peerstore.PeerInfo(wanPeers[0].Identity)) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
startupCtx, startupCancel = context.WithTimeout(ctx, time.Second*60) | ||
WanStartupWait: | ||
for { | ||
select { | ||
case err := <-testPeer.DHT.WAN.RefreshRoutingTable(): | ||
//if err != nil { | ||
// fmt.Printf("Error refreshing routing table: %v\n", err) | ||
//} | ||
if testPeer.DHT.WAN.RoutingTable() == nil || | ||
testPeer.DHT.WAN.RoutingTable().Size() == 0 || | ||
err != nil { | ||
time.Sleep(100 * time.Millisecond) | ||
continue | ||
} | ||
break WanStartupWait | ||
case <-startupCtx.Done(): | ||
startupCancel() | ||
return fmt.Errorf("expected faster wan dht bootstrap") | ||
} | ||
} | ||
startupCancel() | ||
|
||
// choose a wan peer and validate wan DHT is functioning. | ||
i = rand.Intn(len(wanPeers)) | ||
if testPeer.PeerHost.Network().Connectedness(wanPeers[i].Identity) == corenet.Connected { | ||
i = (i + 1) % len(wanPeers) | ||
if testPeer.PeerHost.Network().Connectedness(wanPeers[i].Identity) == corenet.Connected { | ||
_ = testPeer.PeerHost.Network().ClosePeer(wanPeers[i].Identity) | ||
testPeer.PeerHost.Peerstore().ClearAddrs(wanPeers[i].Identity) | ||
} | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto. Now that we're calling FindProviders instead of FendPeer, disconnecting doesn't buy us anything. |
||
|
||
// That peer will provide a new CID, and we'll validate the test node can find it. | ||
wanCid := cid.NewCidV1(cid.Raw, []byte("Wan Provide Record")) | ||
wanProvideCtx, cancel := context.WithTimeout(ctx, time.Second) | ||
defer cancel() | ||
if err := wanPeers[i].DHT.Provide(wanProvideCtx, wanCid, true); err != nil { | ||
return err | ||
} | ||
provChan = testPeer.DHT.FindProvidersAsync(wanProvideCtx, wanCid, 0) | ||
prov, ok = <-provChan | ||
if !ok || prov.ID == "" { | ||
return fmt.Errorf("Expected one provider, closed early") | ||
} | ||
if prov.ID != wanPeers[i].Identity { | ||
return fmt.Errorf("Unexpected lan peer provided record") | ||
} | ||
|
||
// Finally, re-share the lan provided cid from a wan peer and expect a merged result. | ||
i = rand.Intn(len(wanPeers)) | ||
if testPeer.PeerHost.Network().Connectedness(wanPeers[i].Identity) == corenet.Connected { | ||
_ = testPeer.PeerHost.Network().ClosePeer(wanPeers[i].Identity) | ||
testPeer.PeerHost.Peerstore().ClearAddrs(wanPeers[i].Identity) | ||
} | ||
|
||
provideCtx, cancel = context.WithTimeout(ctx, time.Second) | ||
defer cancel() | ||
if err := wanPeers[i].DHT.Provide(provideCtx, provideCid, true); err != nil { | ||
return err | ||
} | ||
provChan = testPeer.DHT.FindProvidersAsync(provideCtx, provideCid, 0) | ||
prov, ok = <-provChan | ||
if !ok { | ||
return fmt.Errorf("Expected two providers, got 0") | ||
} | ||
prov, ok = <-provChan | ||
if !ok { | ||
return fmt.Errorf("Expected two providers, got 1") | ||
} | ||
|
||
return nil | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should start the test peer as a client. Otherwise, the test record could get put on the test peer.