mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
3edfa8cb88
* Use ValidtorIndex across Prysm. Build ok * First take at fixing tests * Clean up e2e, fuzz... etc * Fix new lines * Update beacon-chain/cache/proposer_indices_test.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update beacon-chain/core/helpers/rewards_penalties.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update beacon-chain/core/helpers/shuffle.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/graffiti/parse_graffiti_test.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Raul's feedback * Fix downcast int -> uint64 * Victor's feedback Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
75 lines
2.1 KiB
Go
75 lines
2.1 KiB
Go
package cache
|
|
|
|
import (
|
|
"strconv"
|
|
"testing"
|
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestProposerKeyFn_OK(t *testing.T) {
|
|
item := &ProposerIndices{
|
|
BlockRoot: [32]byte{'A'},
|
|
ProposerIndices: []types.ValidatorIndex{1, 2, 3, 4, 5},
|
|
}
|
|
|
|
k, err := proposerIndicesKeyFn(item)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, key(item.BlockRoot), k)
|
|
}
|
|
|
|
func TestProposerKeyFn_InvalidObj(t *testing.T) {
|
|
_, err := proposerIndicesKeyFn("bad")
|
|
assert.Equal(t, ErrNotProposerIndices, err)
|
|
}
|
|
|
|
func TestProposerCache_AddProposerIndicesList(t *testing.T) {
|
|
cache := NewProposerIndicesCache()
|
|
bRoot := [32]byte{'A'}
|
|
indices, err := cache.ProposerIndices(bRoot)
|
|
require.NoError(t, err)
|
|
if indices != nil {
|
|
t.Error("Expected committee count not to exist in empty cache")
|
|
}
|
|
has, err := cache.HasProposerIndices(bRoot)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, false, has)
|
|
require.NoError(t, cache.AddProposerIndices(&ProposerIndices{
|
|
ProposerIndices: indices,
|
|
BlockRoot: bRoot,
|
|
}))
|
|
|
|
received, err := cache.ProposerIndices(bRoot)
|
|
require.NoError(t, err)
|
|
assert.DeepEqual(t, received, indices)
|
|
has, err = cache.HasProposerIndices(bRoot)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, true, has)
|
|
|
|
item := &ProposerIndices{BlockRoot: [32]byte{'B'}, ProposerIndices: []types.ValidatorIndex{1, 2, 3, 4, 5, 6}}
|
|
require.NoError(t, cache.AddProposerIndices(item))
|
|
|
|
received, err = cache.ProposerIndices(item.BlockRoot)
|
|
require.NoError(t, err)
|
|
assert.DeepEqual(t, item.ProposerIndices, received)
|
|
has, err = cache.HasProposerIndices(bRoot)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, true, has)
|
|
|
|
}
|
|
|
|
func TestProposerCache_CanRotate(t *testing.T) {
|
|
cache := NewProposerIndicesCache()
|
|
for i := 0; i < int(maxProposerIndicesCacheSize)+1; i++ {
|
|
s := []byte(strconv.Itoa(i))
|
|
item := &ProposerIndices{BlockRoot: bytesutil.ToBytes32(s)}
|
|
require.NoError(t, cache.AddProposerIndices(item))
|
|
}
|
|
|
|
k := cache.ProposerIndicesCache.ListKeys()
|
|
assert.Equal(t, maxProposerIndicesCacheSize, uint64(len(k)))
|
|
}
|