mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
153 lines
4.8 KiB
Go
153 lines
4.8 KiB
Go
//go:build !fuzz
|
|
|
|
package cache
|
|
|
|
import (
|
|
"context"
|
|
"math"
|
|
"sort"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/config/params"
|
|
"github.com/prysmaticlabs/prysm/v5/consensus-types/primitives"
|
|
"github.com/prysmaticlabs/prysm/v5/encoding/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
)
|
|
|
|
func TestCommitteeKeyFn_OK(t *testing.T) {
|
|
item := &Committees{
|
|
CommitteeCount: 1,
|
|
Seed: [32]byte{'A'},
|
|
ShuffledIndices: []primitives.ValidatorIndex{1, 2, 3, 4, 5},
|
|
}
|
|
|
|
k, err := committeeKeyFn(item)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, key(item.Seed), k)
|
|
}
|
|
|
|
func TestCommitteeKeyFn_InvalidObj(t *testing.T) {
|
|
_, err := committeeKeyFn("bad")
|
|
assert.Equal(t, ErrNotCommittee, err)
|
|
}
|
|
|
|
func TestCommitteeCache_CommitteesByEpoch(t *testing.T) {
|
|
cache := NewCommitteesCache()
|
|
|
|
item := &Committees{
|
|
ShuffledIndices: []primitives.ValidatorIndex{1, 2, 3, 4, 5, 6},
|
|
Seed: [32]byte{'A'},
|
|
CommitteeCount: 3,
|
|
}
|
|
|
|
slot := params.BeaconConfig().SlotsPerEpoch
|
|
committeeIndex := primitives.CommitteeIndex(1)
|
|
indices, err := cache.Committee(context.Background(), slot, item.Seed, committeeIndex)
|
|
require.NoError(t, err)
|
|
if indices != nil {
|
|
t.Error("Expected committee not to exist in empty cache")
|
|
}
|
|
require.NoError(t, cache.AddCommitteeShuffledList(context.Background(), item))
|
|
|
|
wantedIndex := primitives.CommitteeIndex(0)
|
|
indices, err = cache.Committee(context.Background(), slot, item.Seed, wantedIndex)
|
|
require.NoError(t, err)
|
|
|
|
start, end := startEndIndices(item, uint64(wantedIndex))
|
|
assert.DeepEqual(t, item.ShuffledIndices[start:end], indices)
|
|
}
|
|
|
|
func TestCommitteeCache_ActiveIndices(t *testing.T) {
|
|
cache := NewCommitteesCache()
|
|
|
|
item := &Committees{Seed: [32]byte{'A'}, SortedIndices: []primitives.ValidatorIndex{1, 2, 3, 4, 5, 6}}
|
|
indices, err := cache.ActiveIndices(context.Background(), item.Seed)
|
|
require.NoError(t, err)
|
|
if indices != nil {
|
|
t.Error("Expected committee not to exist in empty cache")
|
|
}
|
|
|
|
require.NoError(t, cache.AddCommitteeShuffledList(context.Background(), item))
|
|
|
|
indices, err = cache.ActiveIndices(context.Background(), item.Seed)
|
|
require.NoError(t, err)
|
|
assert.DeepEqual(t, item.SortedIndices, indices)
|
|
}
|
|
|
|
func TestCommitteeCache_ActiveCount(t *testing.T) {
|
|
cache := NewCommitteesCache()
|
|
|
|
item := &Committees{Seed: [32]byte{'A'}, SortedIndices: []primitives.ValidatorIndex{1, 2, 3, 4, 5, 6}}
|
|
count, err := cache.ActiveIndicesCount(context.Background(), item.Seed)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, 0, count, "Expected active count not to exist in empty cache")
|
|
|
|
require.NoError(t, cache.AddCommitteeShuffledList(context.Background(), item))
|
|
|
|
count, err = cache.ActiveIndicesCount(context.Background(), item.Seed)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, len(item.SortedIndices), count)
|
|
}
|
|
|
|
func TestCommitteeCache_CanRotate(t *testing.T) {
|
|
cache := NewCommitteesCache()
|
|
|
|
// Should rotate out all the epochs except 190 through 199.
|
|
start := 100
|
|
end := 200
|
|
for i := start; i < end; i++ {
|
|
s := []byte(strconv.Itoa(i))
|
|
item := &Committees{Seed: bytesutil.ToBytes32(s)}
|
|
require.NoError(t, cache.AddCommitteeShuffledList(context.Background(), item))
|
|
}
|
|
|
|
k := cache.CommitteeCache.Keys()
|
|
assert.Equal(t, maxCommitteesCacheSize, len(k))
|
|
|
|
sort.Slice(k, func(i, j int) bool {
|
|
return k[i].(string) < k[j].(string)
|
|
})
|
|
wanted := end - maxCommitteesCacheSize
|
|
s := bytesutil.ToBytes32([]byte(strconv.Itoa(wanted)))
|
|
assert.Equal(t, key(s), k[0], "incorrect key received for slot 190")
|
|
|
|
s = bytesutil.ToBytes32([]byte(strconv.Itoa(199)))
|
|
assert.Equal(t, key(s), k[len(k)-1], "incorrect key received for slot 199")
|
|
}
|
|
|
|
func TestCommitteeCacheOutOfRange(t *testing.T) {
|
|
cache := NewCommitteesCache()
|
|
seed := bytesutil.ToBytes32([]byte("foo"))
|
|
comms := &Committees{
|
|
CommitteeCount: 1,
|
|
Seed: seed,
|
|
ShuffledIndices: []primitives.ValidatorIndex{0},
|
|
SortedIndices: []primitives.ValidatorIndex{},
|
|
}
|
|
key, err := committeeKeyFn(comms)
|
|
assert.NoError(t, err)
|
|
_ = cache.CommitteeCache.Add(key, comms)
|
|
|
|
_, err = cache.Committee(context.Background(), 0, seed, math.MaxUint64) // Overflow!
|
|
require.NotNil(t, err, "Did not fail as expected")
|
|
}
|
|
|
|
func TestCommitteeCache_DoesNothingWhenCancelledContext(t *testing.T) {
|
|
cache := NewCommitteesCache()
|
|
|
|
item := &Committees{Seed: [32]byte{'A'}, SortedIndices: []primitives.ValidatorIndex{1, 2, 3, 4, 5, 6}}
|
|
count, err := cache.ActiveIndicesCount(context.Background(), item.Seed)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, 0, count, "Expected active count not to exist in empty cache")
|
|
|
|
cancelled, cancel := context.WithCancel(context.Background())
|
|
cancel()
|
|
require.ErrorIs(t, cache.AddCommitteeShuffledList(cancelled, item), context.Canceled)
|
|
|
|
count, err = cache.ActiveIndicesCount(context.Background(), item.Seed)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, 0, count)
|
|
}
|