Files
wireguard-go/ratelimiter/ratelimiter_test.go
T

120 lines
2.5 KiB
Go
Raw Normal View History

2019-01-02 01:55:51 +01:00
/* SPDX-License-Identifier: MIT
2018-05-03 15:04:00 +02:00
*
2022-09-20 17:21:32 +02:00
* Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved.
2018-05-03 15:04:00 +02:00
*/
2018-02-12 22:29:11 +01:00
package ratelimiter
2017-07-11 18:48:29 +02:00
import (
2022-03-16 16:09:48 -07:00
"net/netip"
2017-07-11 18:48:29 +02:00
"testing"
"time"
)
type result struct {
2017-07-11 18:48:29 +02:00
allowed bool
text string
wait time.Duration
}
func TestRatelimiter(t *testing.T) {
var rate Ratelimiter
var expectedResults []result
2017-07-11 18:48:29 +02:00
nano := func(nano int64) time.Duration {
2017-07-11 18:48:29 +02:00
return time.Nanosecond * time.Duration(nano)
}
add := func(res result) {
2017-07-11 18:48:29 +02:00
expectedResults = append(
expectedResults,
res,
)
}
for i := 0; i < packetsBurstable; i++ {
add(result{
2017-07-11 18:48:29 +02:00
allowed: true,
text: "initial burst",
2017-07-11 18:48:29 +02:00
})
}
add(result{
2017-07-11 18:48:29 +02:00
allowed: false,
text: "after burst",
})
add(result{
2017-07-11 18:48:29 +02:00
allowed: true,
wait: nano(time.Second.Nanoseconds() / packetsPerSecond),
2017-07-11 18:48:29 +02:00
text: "filling tokens for single packet",
})
add(result{
2017-07-11 18:48:29 +02:00
allowed: false,
text: "not having refilled enough",
})
add(result{
2017-07-11 18:48:29 +02:00
allowed: true,
wait: 2 * (nano(time.Second.Nanoseconds() / packetsPerSecond)),
2017-07-11 18:48:29 +02:00
text: "filling tokens for two packet burst",
})
add(result{
2017-07-11 18:48:29 +02:00
allowed: true,
text: "second packet in 2 packet burst",
})
add(result{
2017-07-11 18:48:29 +02:00
allowed: false,
text: "packet following 2 packet burst",
})
2021-11-05 01:52:54 +01:00
ips := []netip.Addr{
netip.MustParseAddr("127.0.0.1"),
netip.MustParseAddr("192.168.1.1"),
netip.MustParseAddr("172.167.2.3"),
netip.MustParseAddr("97.231.252.215"),
netip.MustParseAddr("248.97.91.167"),
netip.MustParseAddr("188.208.233.47"),
netip.MustParseAddr("104.2.183.179"),
netip.MustParseAddr("72.129.46.120"),
netip.MustParseAddr("2001:0db8:0a0b:12f0:0000:0000:0000:0001"),
netip.MustParseAddr("f5c2:818f:c052:655a:9860:b136:6894:25f0"),
netip.MustParseAddr("b2d7:15ab:48a7:b07c:a541:f144:a9fe:54fc"),
netip.MustParseAddr("a47b:786e:1671:a22b:d6f9:4ab0:abc7:c918"),
netip.MustParseAddr("ea1e:d155:7f7a:98fb:2bf5:9483:80f6:5445"),
netip.MustParseAddr("3f0e:54a2:f5b4:cd19:a21d:58e1:3746:84c4"),
2017-07-11 18:48:29 +02:00
}
now := time.Now()
rate.timeNow = func() time.Time {
return now
}
defer func() {
// Lock to avoid data race with cleanup goroutine from Init.
rate.mu.Lock()
defer rate.mu.Unlock()
rate.timeNow = time.Now
}()
timeSleep := func(d time.Duration) {
now = now.Add(d + 1)
rate.cleanup()
}
rate.Init()
defer rate.Close()
2017-07-11 18:48:29 +02:00
for i, res := range expectedResults {
timeSleep(res.wait)
2017-07-11 18:48:29 +02:00
for _, ip := range ips {
allowed := rate.Allow(ip)
2017-07-11 18:48:29 +02:00
if allowed != res.allowed {
t.Fatalf("%d: %s: rate.Allow(%q)=%v, want %v", i, res.text, ip, allowed, res.allowed)
2017-07-11 18:48:29 +02:00
}
}
}
}