]> Sergey Matveev's repositories - btrtrc.git/blobdiff - testing.go
Get go-libutp fix for go1.21
[btrtrc.git] / testing.go
index 6a9d892d4dbeaad495c9ac08a8b2d535a028f4eb..6fb5411267e8c486d454ba384d823f59e9ccc6bd 100644 (file)
@@ -3,6 +3,10 @@ package torrent
 import (
        "testing"
        "time"
+
+       "github.com/anacrolix/log"
+
+       pp "github.com/anacrolix/torrent/peer_protocol"
 )
 
 func TestingConfig(t testing.TB) *ClientConfig {
@@ -15,6 +19,11 @@ func TestingConfig(t testing.TB) *ClientConfig {
        cfg.DisableAcceptRateLimiting = true
        cfg.ListenPort = 0
        cfg.KeepAliveTimeout = time.Millisecond
+       cfg.MinPeerExtensions.SetBit(pp.ExtensionBitFast, true)
+       cfg.Logger = log.Default.WithContextText(t.Name())
+       // 2 would suffice for the greeting test, but 5 is needed for a few other tests. This should be
+       // something slightly higher than the usual chunk size, so it gets tickled in some tests.
+       cfg.MaxAllocPeerRequestDataPerConn = 5
        //cfg.Debug = true
        //cfg.Logger = cfg.Logger.WithText(func(m log.Msg) string {
        //      t := m.Text()