mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
b55ddb5a34
* Use go:build lines and remove obsolete +build lines * Run gazelle * Update crypto/bls/blst/stub.go * Update crypto/bls/blst/stub.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: Nishant Das <nishdas93@gmail.com>
78 lines
2.1 KiB
Go
78 lines
2.1 KiB
Go
//go:build !fuzz
|
|
|
|
package cache
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"math"
|
|
"testing"
|
|
|
|
state "github.com/prysmaticlabs/prysm/beacon-chain/state/v1"
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
types "github.com/prysmaticlabs/prysm/consensus-types/primitives"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
)
|
|
|
|
func TestBalanceCache_AddGetBalance(t *testing.T) {
|
|
blockRoots := make([][]byte, params.BeaconConfig().SlotsPerHistoricalRoot)
|
|
for i := 0; i < len(blockRoots); i++ {
|
|
b := make([]byte, 8)
|
|
binary.LittleEndian.PutUint64(b, uint64(i))
|
|
blockRoots[i] = b
|
|
}
|
|
raw := ðpb.BeaconState{
|
|
BlockRoots: blockRoots,
|
|
}
|
|
st, err := state.InitializeFromProto(raw)
|
|
require.NoError(t, err)
|
|
|
|
cache := NewEffectiveBalanceCache()
|
|
_, err = cache.Get(st)
|
|
require.ErrorContains(t, ErrNotFound.Error(), err)
|
|
|
|
b := uint64(100)
|
|
require.NoError(t, cache.AddTotalEffectiveBalance(st, b))
|
|
cachedB, err := cache.Get(st)
|
|
require.NoError(t, err)
|
|
require.Equal(t, b, cachedB)
|
|
|
|
require.NoError(t, st.SetSlot(1000))
|
|
_, err = cache.Get(st)
|
|
require.ErrorContains(t, ErrNotFound.Error(), err)
|
|
|
|
b = uint64(200)
|
|
require.NoError(t, cache.AddTotalEffectiveBalance(st, b))
|
|
cachedB, err = cache.Get(st)
|
|
require.NoError(t, err)
|
|
require.Equal(t, b, cachedB)
|
|
|
|
require.NoError(t, st.SetSlot(1000+params.BeaconConfig().SlotsPerHistoricalRoot))
|
|
_, err = cache.Get(st)
|
|
require.ErrorContains(t, ErrNotFound.Error(), err)
|
|
|
|
b = uint64(300)
|
|
require.NoError(t, cache.AddTotalEffectiveBalance(st, b))
|
|
cachedB, err = cache.Get(st)
|
|
require.NoError(t, err)
|
|
require.Equal(t, b, cachedB)
|
|
}
|
|
|
|
func TestBalanceCache_BalanceKey(t *testing.T) {
|
|
blockRoots := make([][]byte, params.BeaconConfig().SlotsPerHistoricalRoot)
|
|
for i := 0; i < len(blockRoots); i++ {
|
|
b := make([]byte, 8)
|
|
binary.LittleEndian.PutUint64(b, uint64(i))
|
|
blockRoots[i] = b
|
|
}
|
|
raw := ðpb.BeaconState{
|
|
BlockRoots: blockRoots,
|
|
}
|
|
st, err := state.InitializeFromProto(raw)
|
|
require.NoError(t, err)
|
|
require.NoError(t, st.SetSlot(types.Slot(math.MaxUint64)))
|
|
|
|
_, err = balanceCacheKey(st)
|
|
require.NoError(t, err)
|
|
}
|