mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
* Ran gopls modernize to fix everything go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./... * Override rules_go provided dependency for golang.org/x/tools to v0.38.0. To update this, checked out rules_go, then ran `bazel run //go/tools/releaser -- upgrade-dep -mirror=false org_golang_x_tools` and copied the patches. * Fix buildtag violations and ignore buildtag violations in external * Introduce modernize analyzer package. * Add modernize "any" analyzer. * Fix violations of any analyzer * Add modernize "appendclipped" analyzer. * Fix violations of appendclipped * Add modernize "bloop" analyzer. * Add modernize "fmtappendf" analyzer. * Add modernize "forvar" analyzer. * Add modernize "mapsloop" analyzer. * Add modernize "minmax" analyzer. * Fix violations of minmax analyzer * Add modernize "omitzero" analyzer. * Add modernize "rangeint" analyzer. * Fix violations of rangeint. * Add modernize "reflecttypefor" analyzer. * Fix violations of reflecttypefor analyzer. * Add modernize "slicescontains" analyzer. * Add modernize "slicessort" analyzer. * Add modernize "slicesdelete" analyzer. This is disabled by default for now. See https://go.dev/issue/73686. * Add modernize "stringscutprefix" analyzer. * Add modernize "stringsbuilder" analyzer. * Fix violations of stringsbuilder analyzer. * Add modernize "stringsseq" analyzer. * Add modernize "testingcontext" analyzer. * Add modernize "waitgroup" analyzer. * Changelog fragment * gofmt * gazelle * Add modernize "newexpr" analyzer. * Disable newexpr until go1.26 * Add more details in WORKSPACE on how to update the override * @nalepae feedback on min() * gofmt * Fix violations of forvar
116 lines
2.2 KiB
Go
116 lines
2.2 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package nonblocking
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestLRU_Concurrency(t *testing.T) {
|
|
onEvicted := func(_ int, _ int) {}
|
|
size := 20
|
|
cache, err := NewLRU(size, onEvicted)
|
|
if err != nil {
|
|
t.Fatalf("err: %v", err)
|
|
}
|
|
ctx, cancel := context.WithTimeout(t.Context(), time.Second*2)
|
|
defer cancel()
|
|
for i := range 100 {
|
|
go func(j int) {
|
|
for {
|
|
if ctx.Err() != nil {
|
|
return
|
|
}
|
|
cache.Add(j, j)
|
|
cache.Get(j)
|
|
time.Sleep(time.Millisecond * 50)
|
|
}
|
|
}(i)
|
|
}
|
|
<-ctx.Done()
|
|
}
|
|
|
|
func TestLRU_Eviction(t *testing.T) {
|
|
evictCounter := 0
|
|
onEvicted := func(_ int, _ int) {
|
|
evictCounter++
|
|
}
|
|
size := 20
|
|
cache, err := NewLRU(size, onEvicted)
|
|
if err != nil {
|
|
t.Fatalf("err: %v", err)
|
|
}
|
|
for i := range 20 {
|
|
cache.Add(i, i)
|
|
cache.Get(i)
|
|
}
|
|
cache.Add(20, 20)
|
|
if evictCounter != 1 {
|
|
t.Fatalf("should have evicted 1 element: %d", evictCounter)
|
|
}
|
|
}
|
|
|
|
// Test that Add returns true/false if an eviction occurred
|
|
func TestLRU_Add(t *testing.T) {
|
|
evictCounter := 0
|
|
onEvicted := func(_ int, _ int) {
|
|
evictCounter++
|
|
}
|
|
l, err := NewLRU(1, onEvicted)
|
|
if err != nil {
|
|
t.Fatalf("err: %v", err)
|
|
}
|
|
|
|
if l.Add(1, 1) == true || evictCounter != 0 {
|
|
t.Errorf("should not have an eviction")
|
|
}
|
|
if l.Add(2, 2) == false || evictCounter != 1 {
|
|
t.Errorf("should have an eviction")
|
|
}
|
|
}
|
|
|
|
// Test that Resize can upsize and downsize
|
|
func TestLRU_Resize(t *testing.T) {
|
|
onEvictCounter := 0
|
|
onEvicted := func(k int, v int) {
|
|
onEvictCounter++
|
|
}
|
|
l, err := NewLRU(2, onEvicted)
|
|
if err != nil {
|
|
t.Fatalf("err: %v", err)
|
|
}
|
|
|
|
// Downsize
|
|
l.Add(1, 1)
|
|
l.Add(2, 2)
|
|
evicted := l.Resize(1)
|
|
if evicted != 1 {
|
|
t.Errorf("1 element should have been evicted: %v", evicted)
|
|
}
|
|
if onEvictCounter != 1 {
|
|
t.Errorf("onEvicted should have been called 1 time: %v", onEvictCounter)
|
|
}
|
|
|
|
l.Add(3, 3)
|
|
if _, ok := l.Get(1); ok {
|
|
t.Errorf("Element 1 should have been evicted")
|
|
}
|
|
|
|
// Upsize
|
|
evicted = l.Resize(2)
|
|
if evicted != 0 {
|
|
t.Errorf("0 elements should have been evicted: %v", evicted)
|
|
}
|
|
|
|
l.Add(4, 4)
|
|
if _, ok := l.Get(3); !ok {
|
|
t.Errorf("Cache should have contained 2 elements")
|
|
}
|
|
if _, ok := l.Get(4); !ok {
|
|
t.Errorf("Cache should have contained 2 elements")
|
|
}
|
|
}
|