congestion: migrate the pacer tests away from Ginkgo (#4929)

This commit is contained in:
Marten Seemann 2025-01-26 09:14:03 +01:00 committed by GitHub
parent ac25c646ad
commit c63c4e6990
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,151 +2,116 @@ package congestion
import ( import (
"math/rand" "math/rand"
"testing"
"time" "time"
"github.com/quic-go/quic-go/internal/protocol" "github.com/stretchr/testify/require"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
) )
var _ = Describe("Pacer", func() { func TestPacerPacing(t *testing.T) {
var p *pacer bandwidth := 50 * initialMaxDatagramSize // 50 full-size packets per second
p := newPacer(func() Bandwidth { return Bandwidth(bandwidth) * BytesPerSecond * 4 / 5 })
now := time.Now()
require.Zero(t, p.TimeUntilSend())
budget := p.Budget(now)
require.Equal(t, maxBurstSizePackets*initialMaxDatagramSize, budget)
const packetsPerSecond = 50 // consume the initial budget by sending packets
var bandwidth uint64 // in bytes/s
BeforeEach(func() {
bandwidth = uint64(packetsPerSecond * initialMaxDatagramSize) // 50 full-size packets per second
// The pacer will multiply the bandwidth with 1.25 to achieve a slightly higher pacing speed.
// For the tests, cancel out this factor, so we can do the math using the exact bandwidth.
p = newPacer(func() Bandwidth { return Bandwidth(bandwidth) * BytesPerSecond * 4 / 5 })
})
It("allows a burst at the beginning", func() {
t := time.Now()
Expect(p.TimeUntilSend()).To(BeZero())
Expect(p.Budget(t)).To(BeEquivalentTo(maxBurstSizePackets * initialMaxDatagramSize))
})
It("allows a big burst for high pacing rates", func() {
t := time.Now()
bandwidth = uint64(10000 * packetsPerSecond * initialMaxDatagramSize)
Expect(p.TimeUntilSend()).To(BeZero())
Expect(p.Budget(t)).To(BeNumerically(">", maxBurstSizePackets*initialMaxDatagramSize))
})
It("reduces the budget when sending packets", func() {
t := time.Now()
budget := p.Budget(t)
for budget > 0 { for budget > 0 {
Expect(p.TimeUntilSend()).To(BeZero()) require.Zero(t, p.TimeUntilSend())
Expect(p.Budget(t)).To(Equal(budget)) require.Equal(t, budget, p.Budget(now))
p.SentPacket(t, initialMaxDatagramSize) p.SentPacket(now, initialMaxDatagramSize)
budget -= initialMaxDatagramSize budget -= initialMaxDatagramSize
} }
Expect(p.Budget(t)).To(BeZero())
Expect(p.TimeUntilSend()).ToNot(BeZero())
})
sendBurst := func(t time.Time) { // now packets are being paced
for p.Budget(t) > 0 { for i := 0; i < 5; i++ {
p.SentPacket(t, initialMaxDatagramSize) require.Zero(t, p.Budget(now))
} nextPacket := p.TimeUntilSend()
require.NotZero(t, nextPacket)
require.Equal(t, time.Second/50, nextPacket.Sub(now))
now = nextPacket
p.SentPacket(now, initialMaxDatagramSize)
} }
It("paces packets after a burst", func() { nextPacket := p.TimeUntilSend()
t := time.Now() require.Equal(t, time.Second/50, nextPacket.Sub(now))
sendBurst(t) // send this packet a bit later, simulating timer delay
// send 100 exactly paced packets p.SentPacket(nextPacket.Add(time.Millisecond), initialMaxDatagramSize)
for i := 0; i < 100; i++ { // the next packet should be paced again, without a delay
t2 := p.TimeUntilSend() require.Equal(t, time.Second/50, p.TimeUntilSend().Sub(nextPacket))
Expect(t2.Sub(t)).To(BeNumerically("~", time.Second/packetsPerSecond, time.Nanosecond))
Expect(p.Budget(t2)).To(BeEquivalentTo(initialMaxDatagramSize)) // now send a half-size packet
p.SentPacket(t2, initialMaxDatagramSize) now = p.TimeUntilSend()
t = t2 p.SentPacket(now, initialMaxDatagramSize/2)
require.Equal(t, initialMaxDatagramSize/2, p.Budget(now))
require.Equal(t, time.Second/100, p.TimeUntilSend().Sub(now))
p.SentPacket(p.TimeUntilSend(), initialMaxDatagramSize/2)
now = p.TimeUntilSend()
// budget accumulates if no packets are sent for a while
// we should have accumulated budget to send a burst now
require.Equal(t, 5*initialMaxDatagramSize, p.Budget(now.Add(4*time.Second/50)))
// but the budget is capped at the max burst size
require.Equal(t, maxBurstSizePackets*initialMaxDatagramSize, p.Budget(now.Add(time.Hour)))
p.SentPacket(now, initialMaxDatagramSize)
require.Zero(t, p.Budget(now))
// reduce the bandwidth
bandwidth = 10 * initialMaxDatagramSize // 10 full-size packets per second
require.Equal(t, time.Second/10, p.TimeUntilSend().Sub(now))
} }
})
It("accounts for non-full-size packets", func() { func TestPacerUpdatePacketSize(t *testing.T) {
t := time.Now() const bandwidth = 50 * initialMaxDatagramSize // 50 full-size packets per second
sendBurst(t) p := newPacer(func() Bandwidth { return Bandwidth(bandwidth) * BytesPerSecond * 4 / 5 })
t2 := p.TimeUntilSend()
Expect(t2.Sub(t)).To(BeNumerically("~", time.Second/packetsPerSecond, time.Nanosecond))
// send a half-full packet
Expect(p.Budget(t2)).To(BeEquivalentTo(initialMaxDatagramSize))
size := initialMaxDatagramSize / 2
p.SentPacket(t2, size)
Expect(p.Budget(t2)).To(Equal(initialMaxDatagramSize - size))
Expect(p.TimeUntilSend()).To(BeTemporally("~", t2.Add(time.Second/packetsPerSecond/2), time.Nanosecond))
})
It("accumulates budget, if no packets are sent", func() { // consume the initial budget by sending packets
t := time.Now() now := time.Now()
sendBurst(t) for p.Budget(now) > 0 {
t2 := p.TimeUntilSend() p.SentPacket(now, initialMaxDatagramSize)
Expect(t2).To(BeTemporally(">", t))
// wait for 5 times the duration
Expect(p.Budget(t.Add(5 * t2.Sub(t)))).To(BeEquivalentTo(5 * initialMaxDatagramSize))
})
It("accumulates budget, if no packets are sent, for larger packet sizes", func() {
t := time.Now()
sendBurst(t)
const packetSize = initialMaxDatagramSize + 200
p.SetMaxDatagramSize(packetSize)
t2 := p.TimeUntilSend()
Expect(t2).To(BeTemporally(">", t))
// wait for 5 times the duration
Expect(p.Budget(t.Add(5 * t2.Sub(t)))).To(BeEquivalentTo(5 * packetSize))
})
It("has enough budget for at least one packet when the timer expires", func() {
t := time.Now()
sendBurst(t)
for bw := uint64(100); bw < uint64(5*initialMaxDatagramSize); bw++ {
bandwidth = bw // reduce the bandwidth to 5 packet per second
t2 := p.TimeUntilSend()
Expect(t2).To(BeTemporally(">", t))
Expect(p.Budget(t2)).To(BeNumerically(">=", initialMaxDatagramSize))
} }
})
It("never allows bursts larger than the maximum burst size", func() { require.Equal(t, time.Second/50, p.TimeUntilSend().Sub(now))
t := time.Now() // Double the packet size. We now need to wait twice as long to send the next packet.
sendBurst(t) const newDatagramSize = 2 * initialMaxDatagramSize
Expect(p.Budget(t.Add(time.Hour))).To(BeEquivalentTo(maxBurstSizePackets * initialMaxDatagramSize)) p.SetMaxDatagramSize(newDatagramSize)
}) require.Equal(t, 2*time.Second/50, p.TimeUntilSend().Sub(now))
It("never allows bursts larger than the maximum burst size, for larger packets", func() { // check that the maximum burst size is updated
t := time.Now() require.Equal(t, maxBurstSizePackets*newDatagramSize, p.Budget(now.Add(time.Hour)))
const packetSize = initialMaxDatagramSize + 200 }
p.SetMaxDatagramSize(packetSize)
sendBurst(t)
Expect(p.Budget(t.Add(time.Hour))).To(BeEquivalentTo(maxBurstSizePackets * packetSize))
})
It("changes the bandwidth", func() { func TestPacerFastPacing(t *testing.T) {
t := time.Now() const bandwidth = 10000 * initialMaxDatagramSize // 10,000 full-size packets per second
sendBurst(t) p := newPacer(func() Bandwidth { return Bandwidth(bandwidth) * BytesPerSecond * 4 / 5 })
bandwidth = uint64(5 * initialMaxDatagramSize) // reduce the bandwidth to 5 packet per second
Expect(p.TimeUntilSend()).To(Equal(t.Add(time.Second / 5)))
})
It("doesn't pace faster than the minimum pacing duration", func() { // consume the initial budget by sending packets
t := time.Now() now := time.Now()
sendBurst(t) for p.Budget(now) > 0 {
bandwidth = uint64(1e6 * initialMaxDatagramSize) p.SentPacket(now, initialMaxDatagramSize)
Expect(p.TimeUntilSend()).To(Equal(t.Add(protocol.MinPacingDelay))) }
Expect(p.Budget(t.Add(protocol.MinPacingDelay))).To(Equal(protocol.ByteCount(protocol.MinPacingDelay) * initialMaxDatagramSize * 1e6 / 1e9))
})
It("protects against overflows", func() { // If we were pacing by packet, we'd expect the next packet to send in 1/10ms.
p = newPacer(func() Bandwidth { return infBandwidth }) // However, we don't want to arm the pacing timer for less than 1ms,
t := time.Now() // so we wait for 1ms, and then send 10 packets in a burst.
p.SentPacket(t, initialMaxDatagramSize) require.Equal(t, time.Millisecond, p.TimeUntilSend().Sub(now))
require.Equal(t, 10*initialMaxDatagramSize, p.Budget(now.Add(time.Millisecond)))
now = now.Add(time.Millisecond)
for i := 0; i < 10; i++ {
require.NotZero(t, p.Budget(now))
p.SentPacket(now, initialMaxDatagramSize)
}
require.Zero(t, p.Budget(now))
require.Equal(t, time.Millisecond, p.TimeUntilSend().Sub(now))
}
func TestPacerNoOverflows(t *testing.T) {
p := newPacer(func() Bandwidth { return infBandwidth })
now := time.Now()
p.SentPacket(now, initialMaxDatagramSize)
for i := 0; i < 1e5; i++ { for i := 0; i < 1e5; i++ {
Expect(p.Budget(t.Add(time.Duration(rand.Int63())))).To(BeNumerically(">=", 0)) require.NotZero(t, p.Budget(now.Add(time.Duration(rand.Int63()))))
}
} }
})
})