2020-10-07 17:25:08 +00:00
|
|
|
package cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
"testing"
|
|
|
|
|
2021-02-23 00:14:50 +00:00
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
2020-10-07 17:25:08 +00:00
|
|
|
"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'},
|
2021-02-23 00:14:50 +00:00
|
|
|
ProposerIndices: []types.ValidatorIndex{1, 2, 3, 4, 5},
|
2020-10-07 17:25:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
2020-12-15 00:09:30 +00:00
|
|
|
has, err := cache.HasProposerIndices(bRoot)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, false, has)
|
2020-10-07 17:25:08 +00:00
|
|
|
require.NoError(t, cache.AddProposerIndices(&ProposerIndices{
|
|
|
|
ProposerIndices: indices,
|
|
|
|
BlockRoot: bRoot,
|
|
|
|
}))
|
|
|
|
|
|
|
|
received, err := cache.ProposerIndices(bRoot)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.DeepEqual(t, received, indices)
|
2020-12-15 00:09:30 +00:00
|
|
|
has, err = cache.HasProposerIndices(bRoot)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, true, has)
|
2020-10-07 17:25:08 +00:00
|
|
|
|
2021-02-23 00:14:50 +00:00
|
|
|
item := &ProposerIndices{BlockRoot: [32]byte{'B'}, ProposerIndices: []types.ValidatorIndex{1, 2, 3, 4, 5, 6}}
|
2020-10-07 17:25:08 +00:00
|
|
|
require.NoError(t, cache.AddProposerIndices(item))
|
|
|
|
|
|
|
|
received, err = cache.ProposerIndices(item.BlockRoot)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.DeepEqual(t, item.ProposerIndices, received)
|
2020-12-15 00:09:30 +00:00
|
|
|
has, err = cache.HasProposerIndices(bRoot)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, true, has)
|
|
|
|
|
2020-10-07 17:25:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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)))
|
|
|
|
}
|