mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-04 08:55:25 +02:00
discovery: fix mocked peer in unit tests
The mocked peer used here blocks on `sendToPeer`, which is not the behavior of the `SendMessageLazy` of `lnpeer.Peer`. To reflect the reality, we now make sure the `sendToPeer` is non-blocking in the tests.
This commit is contained in:
@@ -28,7 +28,7 @@ func randPeer(t *testing.T, quit chan struct{}) *mockPeer {
|
||||
func peerWithPubkey(pk *btcec.PublicKey, quit chan struct{}) *mockPeer {
|
||||
return &mockPeer{
|
||||
pk: pk,
|
||||
sentMsgs: make(chan lnwire.Message),
|
||||
sentMsgs: make(chan lnwire.Message, 1),
|
||||
quit: quit,
|
||||
}
|
||||
}
|
||||
@@ -483,7 +483,9 @@ func TestSyncManagerWaitUntilInitialHistoricalSync(t *testing.T) {
|
||||
// transition it to chansSynced to ensure the remaining syncers
|
||||
// aren't started as active.
|
||||
if i == 0 {
|
||||
assertSyncerStatus(t, s, syncingChans, PassiveSync)
|
||||
assertSyncerStatus(
|
||||
t, s, waitingQueryRangeReply, PassiveSync,
|
||||
)
|
||||
continue
|
||||
}
|
||||
|
||||
|
@@ -495,6 +495,8 @@ func (g *GossipSyncer) handleSyncingChans() {
|
||||
g.Lock()
|
||||
defer g.Unlock()
|
||||
|
||||
// Send the msg to the remote peer, which is non-blocking as
|
||||
// `sendToPeer` only queues the msg in Brontide.
|
||||
err = g.cfg.sendToPeer(queryRangeMsg)
|
||||
if err != nil {
|
||||
log.Errorf("Unable to send chan range query: %v", err)
|
||||
|
Reference in New Issue
Block a user