Skip to content

Commit 9d4cfee

Browse files
committed
resolve test failures from nil routing
License: MIT Signed-off-by: vyzo <vyzo@hackzen.org>
1 parent 180be9b commit 9d4cfee

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

core/core.go

+15-2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ import (
5656
libp2p "gx/ipfs/QmVvV8JQmmqPCwXAaesWJPheUiEFQJ9HWRhWhuFuxVQxpR/go-libp2p"
5757
discovery "gx/ipfs/QmVvV8JQmmqPCwXAaesWJPheUiEFQJ9HWRhWhuFuxVQxpR/go-libp2p/p2p/discovery"
5858
p2pbhost "gx/ipfs/QmVvV8JQmmqPCwXAaesWJPheUiEFQJ9HWRhWhuFuxVQxpR/go-libp2p/p2p/host/basic"
59+
rhost "gx/ipfs/QmVvV8JQmmqPCwXAaesWJPheUiEFQJ9HWRhWhuFuxVQxpR/go-libp2p/p2p/host/routed"
5960
identify "gx/ipfs/QmVvV8JQmmqPCwXAaesWJPheUiEFQJ9HWRhWhuFuxVQxpR/go-libp2p/p2p/protocol/identify"
6061
quic "gx/ipfs/QmWY1pHdRP1rA2ifUuCu1ZwFJ8ZzpSEcgXsu9haH21AYKd/go-libp2p-quic-transport"
6162
circuit "gx/ipfs/QmWxCQ66YzAb24Py5D3qeDJcVTF4aW9AeAmppQ7FhQZxgZ/go-libp2p-circuit"
@@ -275,7 +276,7 @@ func (n *IpfsNode) startOnlineServices(ctx context.Context, routingOption Routin
275276

276277
n.PeerHost = peerhost
277278

278-
if err := n.startOnlineServicesWithHost(ctx, peerhost, pubsub, ipnsps); err != nil {
279+
if err := n.startOnlineServicesWithHost(ctx, peerhost, routingOption, pubsub, ipnsps); err != nil {
279280
return err
280281
}
281282

@@ -469,7 +470,7 @@ func (n *IpfsNode) HandlePeerFound(p pstore.PeerInfo) {
469470

470471
// startOnlineServicesWithHost is the set of services which need to be
471472
// initialized with the host and _before_ we start listening.
472-
func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost.Host, enablePubsub bool, enableIpnsps bool) error {
473+
func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost.Host, routingOption RoutingOption, enablePubsub bool, enableIpnsps bool) error {
473474
if enablePubsub || enableIpnsps {
474475
cfg, err := n.Repo.Config()
475476
if err != nil {
@@ -506,6 +507,18 @@ func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost
506507
n.PubSub = service
507508
}
508509

510+
// sadly, this code is necessary just for tests:
511+
// it is necessary for mock network constructions that ignore the libp2p options
512+
// that actually construct the routing!
513+
if n.Routing == nil {
514+
r, err := routingOption(ctx, host, n.Repo.Datastore(), n.RecordValidator)
515+
if err != nil {
516+
return err
517+
}
518+
n.Routing = r
519+
n.PeerHost = rhost.Wrap(host, n.Routing)
520+
}
521+
509522
// TODO: I'm not a fan of type assertions like this but the
510523
// `RoutingOption` system doesn't currently provide access to the
511524
// IpfsNode.

0 commit comments

Comments
 (0)