-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
swarm: fix DialPeer behaviour for transient connections
This fixes a bug where the first call to `swarm.DialPeer` succeeds and returns a transient connection with no error while the second call to DialPeer returns `(nil, network.ErrTransientConn)`. For dialing, we now only rely on network.WithForceDirectDial to force a direct connection. For new stream, we open a stream on a transient connection only if network.WithUseTransient is used.
- Loading branch information
Showing
4 changed files
with
96 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package swarm_test | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/libp2p/go-libp2p" | ||
"github.com/libp2p/go-libp2p/core/network" | ||
"github.com/libp2p/go-libp2p/core/peer" | ||
"github.com/libp2p/go-libp2p/core/peerstore" | ||
"github.com/libp2p/go-libp2p/p2p/protocol/circuitv2/client" | ||
"github.com/libp2p/go-libp2p/p2p/protocol/circuitv2/relay" | ||
ma "github.com/multiformats/go-multiaddr" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestDialPeerTransientConnection(t *testing.T) { | ||
h1, err := libp2p.New( | ||
libp2p.NoListenAddrs, | ||
libp2p.EnableRelay(), | ||
) | ||
require.NoError(t, err) | ||
|
||
h2, err := libp2p.New( | ||
libp2p.NoListenAddrs, | ||
libp2p.EnableRelay(), | ||
) | ||
require.NoError(t, err) | ||
|
||
relay1, err := libp2p.New() | ||
require.NoError(t, err) | ||
|
||
_, err = relay.New(relay1) | ||
require.NoError(t, err) | ||
|
||
relay1info := peer.AddrInfo{ | ||
ID: relay1.ID(), | ||
Addrs: relay1.Addrs(), | ||
} | ||
err = h1.Connect(context.Background(), relay1info) | ||
require.NoError(t, err) | ||
|
||
err = h2.Connect(context.Background(), relay1info) | ||
require.NoError(t, err) | ||
|
||
h2.SetStreamHandler("/testprotocol", func(s network.Stream) { | ||
fmt.Println("testprotocol") | ||
|
||
// End the example | ||
s.Close() | ||
}) | ||
|
||
_, err = client.Reserve(context.Background(), h2, relay1info) | ||
require.NoError(t, err) | ||
|
||
relayaddr := ma.StringCast("/p2p/" + relay1info.ID.String() + "/p2p-circuit/p2p/" + h2.ID().String()) | ||
|
||
h1.Peerstore().AddAddr(h2.ID(), relayaddr, peerstore.TempAddrTTL) | ||
|
||
// swarm.DialPeer should connect over transient connections | ||
conn1, err := h1.Network().DialPeer(context.Background(), h2.ID()) | ||
require.NoError(t, err) | ||
require.NotNil(t, conn1) | ||
|
||
conn2, err := h1.Network().DialPeer(context.Background(), h2.ID()) | ||
require.NoError(t, err) | ||
require.NotNil(t, conn2) | ||
|
||
require.Equal(t, conn1, conn2) | ||
|
||
// swarm.DialPeer should fail if forceDirect is used | ||
ctx := network.WithForceDirectDial(context.Background(), "test") | ||
conn, err := h1.Network().DialPeer(ctx, h2.ID()) | ||
require.Error(t, err) | ||
require.Nil(t, conn) | ||
} |