mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
6bea17cb54
* Update libp2p to support go 1.19 * gaz * go mod tidy * Only update the minimum deps * go mod tidy * revert .bazelrc * Update go-libp2p to v0.22.0 and update import paths (#11440) * Fix import paths * Fix go-libp2p-peerstore import * Bazel updates * fix * revert some comments changes * revert some comment stuff * fix dependency issues * vendor problematic library * use your brain * remove * tests Co-authored-by: Marco Munizaga <marco@marcopolo.io> Co-authored-by: Nishant Das <nishdas93@gmail.com>
78 lines
1.6 KiB
Go
78 lines
1.6 KiB
Go
package testing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/libp2p/go-libp2p/core/connmgr"
|
|
"github.com/libp2p/go-libp2p/core/event"
|
|
"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/core/protocol"
|
|
ma "github.com/multiformats/go-multiaddr"
|
|
)
|
|
|
|
// MockHost is a fake implementation of libp2p2's Host interface.
|
|
type MockHost struct {
|
|
Addresses []ma.Multiaddr
|
|
}
|
|
|
|
// ID --
|
|
func (_ *MockHost) ID() peer.ID {
|
|
return ""
|
|
}
|
|
|
|
// Peerstore --
|
|
func (_ *MockHost) Peerstore() peerstore.Peerstore {
|
|
return nil
|
|
}
|
|
|
|
// Addrs --
|
|
func (m *MockHost) Addrs() []ma.Multiaddr {
|
|
return m.Addresses
|
|
}
|
|
|
|
// Network --
|
|
func (_ *MockHost) Network() network.Network {
|
|
return nil
|
|
}
|
|
|
|
// Mux --
|
|
func (_ *MockHost) Mux() protocol.Switch {
|
|
return nil
|
|
}
|
|
|
|
// Connect --
|
|
func (_ *MockHost) Connect(_ context.Context, _ peer.AddrInfo) error {
|
|
return nil
|
|
}
|
|
|
|
// SetStreamHandler --
|
|
func (_ *MockHost) SetStreamHandler(_ protocol.ID, _ network.StreamHandler) {}
|
|
|
|
// SetStreamHandlerMatch --
|
|
func (_ *MockHost) SetStreamHandlerMatch(protocol.ID, func(string) bool, network.StreamHandler) {}
|
|
|
|
// RemoveStreamHandler --
|
|
func (_ *MockHost) RemoveStreamHandler(_ protocol.ID) {}
|
|
|
|
// NewStream --
|
|
func (_ *MockHost) NewStream(_ context.Context, _ peer.ID, _ ...protocol.ID) (network.Stream, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
// Close --
|
|
func (_ *MockHost) Close() error {
|
|
return nil
|
|
}
|
|
|
|
// ConnManager --
|
|
func (_ *MockHost) ConnManager() connmgr.ConnManager {
|
|
return nil
|
|
}
|
|
|
|
// EventBus --
|
|
func (_ *MockHost) EventBus() event.Bus {
|
|
return nil
|
|
}
|