mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
package blossomsub
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
// See https://source.quilibrium.com/quilibrium/monorepo/go-libp2p-blossomsub/issues/426
|
|
func TestPubSubRemovesBlacklistedPeer(t *testing.T) {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
hosts := getNetHosts(t, ctx, 2)
|
|
|
|
bl := NewMapBlacklist()
|
|
|
|
psubs0 := getPubsub(ctx, hosts[0])
|
|
psubs1 := getPubsub(ctx, hosts[1], WithBlacklist(bl))
|
|
connect(t, hosts[0], hosts[1])
|
|
|
|
// Bad peer is blacklisted after it has connected.
|
|
// Calling p.BlacklistPeer directly does the right thing but we should also clean
|
|
// up the peer if it has been added the the blacklist by another means.
|
|
bl.Add(hosts[0].ID())
|
|
|
|
_, err := psubs0.Subscribe([]byte{0x7e, 0x57})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
sub1, err := psubs1.Subscribe([]byte{0x7e, 0x57})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
time.Sleep(time.Millisecond * 100)
|
|
|
|
psubs0.Publish([]byte{0x7e, 0x57}, []byte("message"))
|
|
|
|
wctx, cancel2 := context.WithTimeout(ctx, 1*time.Second)
|
|
defer cancel2()
|
|
|
|
_, _ = sub1.Next(wctx)
|
|
|
|
// Explicitly cancel context so PubSub cleans up peer channels.
|
|
// Issue 426 reports a panic due to a peer channel being closed twice.
|
|
cancel()
|
|
time.Sleep(time.Millisecond * 100)
|
|
}
|