mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
661cbc45ae
* add changes * fix tests * change to minute * remove dep * remove * fix tests * add test for period * improve * linter * build files * ci * make it stricter * fix tests * fix * Update beacon-chain/sync/rate_limiter.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: terencechain <terence@prysmaticlabs.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
211 lines
4.5 KiB
Go
211 lines
4.5 KiB
Go
package leakybucket
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestNewCollector(t *testing.T) {
|
|
rate := 1.0
|
|
capacity := int64(2)
|
|
c := NewCollector(rate, capacity, time.Second, true)
|
|
|
|
if c.buckets == nil {
|
|
t.Fatal("Didn't initialize priority?!")
|
|
}
|
|
if c.heap == nil {
|
|
t.Fatal("Didn't initialize priority?!")
|
|
}
|
|
if c.rate != rate || c.Rate() != rate {
|
|
t.Fatal("Wrong rate?!")
|
|
}
|
|
if c.capacity != capacity || c.Capacity() != capacity {
|
|
t.Fatal("Wrong capacity?!")
|
|
}
|
|
|
|
c.Free()
|
|
}
|
|
|
|
func TestNewCollector_LargerPeriod(t *testing.T) {
|
|
testNow := now
|
|
now = time.Now
|
|
defer func() {
|
|
now = testNow
|
|
}()
|
|
rate := 10.0
|
|
capacity := int64(20)
|
|
c := NewCollector(rate, capacity, 5*time.Second, true)
|
|
|
|
c.Add("test", 10)
|
|
c.Add("test", 10)
|
|
|
|
if c.Remaining("test") != 0 {
|
|
t.Errorf("Excess capacity exists of: %d", c.Remaining("test"))
|
|
}
|
|
time.Sleep(1 * time.Second)
|
|
if c.Remaining("test") >= 20 {
|
|
t.Errorf("Excess capacity exists in: %d", c.Remaining("test"))
|
|
}
|
|
time.Sleep(4 * time.Second)
|
|
|
|
if c.Add("test", 10) != 10 {
|
|
t.Errorf("Internal counter not refreshed: %d", c.Count("test"))
|
|
}
|
|
c.Free()
|
|
}
|
|
|
|
var collectorSimple = testSet{
|
|
capacity: int64(5),
|
|
rate: 1.0,
|
|
set: []actionSet{
|
|
{},
|
|
{1, "add", 1},
|
|
{1, "time-set", time.Nanosecond},
|
|
{1, "till", time.Second - time.Nanosecond},
|
|
{1, "time-set", time.Second - time.Nanosecond},
|
|
{1, "till", time.Nanosecond},
|
|
{0, "time-set", time.Second},
|
|
{0, "till", time.Duration(0)},
|
|
{1, "add", 1},
|
|
{1, "time-add", time.Second / 2},
|
|
{1, "till", time.Second / 2},
|
|
{2, "add", 1},
|
|
{2, "time-add", time.Second/2 - time.Nanosecond},
|
|
{0, "time-add", time.Second * time.Duration(5)},
|
|
{1, "add", 1},
|
|
{2, "add", 1},
|
|
{3, "add", 1},
|
|
{4, "add", 1},
|
|
{5, "add", 1},
|
|
{5, "add", 1},
|
|
{5, "till", time.Second * 5},
|
|
},
|
|
}
|
|
|
|
var collectorVaried = testSet{
|
|
capacity: 1000,
|
|
rate: 60.0,
|
|
set: []actionSet{
|
|
{},
|
|
{100, "add", 100},
|
|
{100, "time-set", time.Nanosecond},
|
|
{1000, "add", 1000},
|
|
{1000, "add", 1},
|
|
{940, "time-set", time.Second},
|
|
},
|
|
}
|
|
|
|
func runKey(t *testing.T, c *Collector, key string, test *testSet) {
|
|
setElapsed(0)
|
|
capacity := c.Capacity()
|
|
|
|
for i, v := range test.set {
|
|
switch v.action {
|
|
case "add":
|
|
count := c.Count(key)
|
|
remaining := test.capacity - count
|
|
amount := int64(v.value.(int))
|
|
n := c.Add(key, amount)
|
|
if n < amount {
|
|
// The bucket should be full now.
|
|
if n < remaining {
|
|
t.Fatalf("Test %d: Bucket should have been filled by this Add()?!", i)
|
|
}
|
|
}
|
|
case "time-set":
|
|
setElapsed(v.value.(time.Duration))
|
|
case "time-add":
|
|
addToElapsed(v.value.(time.Duration))
|
|
case "till":
|
|
dt := c.TillEmpty(key)
|
|
if dt != v.value.(time.Duration) {
|
|
t.Fatalf("%s -> Test %d: Bad TillEmpty(). Expected %v, got %v", key, i, v.value, dt)
|
|
}
|
|
}
|
|
count := c.Count(key)
|
|
if count != v.count {
|
|
t.Fatalf("%s -> Test %d: Bad count. Expected %d, got %d", key, i, v.count, count)
|
|
}
|
|
if count > capacity {
|
|
t.Fatalf("%s -> Test %d: Went over capacity?!", key, i)
|
|
}
|
|
if c.Remaining(key) != test.capacity-v.count {
|
|
t.Fatalf("Test %d: Expected remaining value %d, got %d",
|
|
i, test.capacity-v.count, c.Remaining(key))
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCollector(t *testing.T) {
|
|
setElapsed(0)
|
|
|
|
tests := []testSet{
|
|
collectorSimple,
|
|
collectorSimple,
|
|
collectorVaried,
|
|
}
|
|
|
|
for i, test := range tests {
|
|
fmt.Println("Running testSet:", i)
|
|
|
|
key := "127.0.0.1"
|
|
|
|
c := NewCollector(test.rate, test.capacity, time.Second, false)
|
|
|
|
// Run and test Remove()
|
|
runKey(t, c, key, &test)
|
|
c.Remove(key)
|
|
if c.Count(key) > 0 {
|
|
t.Fatal("Key still has a count after removal?!")
|
|
}
|
|
|
|
// Run again and test Prune()
|
|
runKey(t, c, "127.0.0.1", &test)
|
|
c.Prune()
|
|
setElapsed(time.Hour)
|
|
c.Prune()
|
|
|
|
// Run again and test Reset().
|
|
runKey(t, c, "127.0.0.1", &test)
|
|
c.Reset()
|
|
if c.Count(key) != 0 {
|
|
t.Fatal("Key still has a count after removal?!")
|
|
}
|
|
if c.TillEmpty(key) != 0 {
|
|
t.Fatal("Key still has time till empty?!")
|
|
}
|
|
|
|
// Try to remove a non-exist bucket.
|
|
c.Remove("fake")
|
|
if c.Count("fake") != 0 {
|
|
t.Fatal("Key still has a count after removal?!")
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestPeriodicPrune(t *testing.T) {
|
|
setElapsed(0)
|
|
key := "localhost"
|
|
c := NewCollector(1e7, 8, time.Second, false)
|
|
c.PeriodicPrune()
|
|
n := c.Add(key, 100)
|
|
if n != 8 {
|
|
t.Fatal("Didn't fill bucket?!")
|
|
}
|
|
|
|
fmt.Printf("TillEmpty(): %v\n", c.TillEmpty(key))
|
|
|
|
// Wait for the periodic prune.
|
|
wait := time.Millisecond
|
|
time.Sleep(wait)
|
|
setElapsed(wait)
|
|
|
|
count := c.Count(key)
|
|
if count != 0 {
|
|
t.Fatalf("Key's bucket is not empty: %d?!", count)
|
|
}
|
|
|
|
c.Free()
|
|
}
|