2021-08-11 00:26:20 +00:00
|
|
|
package cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-01-06 17:33:08 +00:00
|
|
|
fieldparams "github.com/prysmaticlabs/prysm/config/fieldparams"
|
2021-09-21 19:59:25 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
2021-09-23 18:53:46 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
2021-08-11 00:26:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSyncSubnetIDsCache_Roundtrip(t *testing.T) {
|
|
|
|
c := newSyncSubnetIDs()
|
|
|
|
|
|
|
|
for i := 0; i < 20; i++ {
|
2022-01-06 17:33:08 +00:00
|
|
|
pubkey := [fieldparams.BLSPubkeyLength]byte{byte(i)}
|
2021-08-11 00:26:20 +00:00
|
|
|
c.AddSyncCommitteeSubnets(pubkey[:], 100, []uint64{uint64(i)}, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := uint64(0); i < 20; i++ {
|
2022-01-06 17:33:08 +00:00
|
|
|
pubkey := [fieldparams.BLSPubkeyLength]byte{byte(i)}
|
2021-08-11 00:26:20 +00:00
|
|
|
|
|
|
|
idxs, _, ok, _ := c.GetSyncCommitteeSubnets(pubkey[:], 100)
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("Couldn't find entry in cache for pubkey %#x", pubkey)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
require.Equal(t, i, idxs[0])
|
|
|
|
}
|
|
|
|
coms := c.GetAllSubnets(100)
|
|
|
|
assert.Equal(t, 20, len(coms))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSyncSubnetIDsCache_ValidateCurrentEpoch(t *testing.T) {
|
|
|
|
c := newSyncSubnetIDs()
|
|
|
|
|
|
|
|
for i := 0; i < 20; i++ {
|
2022-01-06 17:33:08 +00:00
|
|
|
pubkey := [fieldparams.BLSPubkeyLength]byte{byte(i)}
|
2021-08-11 00:26:20 +00:00
|
|
|
c.AddSyncCommitteeSubnets(pubkey[:], 100, []uint64{uint64(i)}, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
coms := c.GetAllSubnets(50)
|
|
|
|
assert.Equal(t, 0, len(coms))
|
|
|
|
|
|
|
|
for i := uint64(0); i < 20; i++ {
|
2022-01-06 17:33:08 +00:00
|
|
|
pubkey := [fieldparams.BLSPubkeyLength]byte{byte(i)}
|
2021-08-11 00:26:20 +00:00
|
|
|
|
|
|
|
_, jEpoch, ok, _ := c.GetSyncCommitteeSubnets(pubkey[:], 100)
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("Couldn't find entry in cache for pubkey %#x", pubkey)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
require.Equal(t, true, uint64(jEpoch) >= 100-params.BeaconConfig().SyncCommitteeSubnetCount)
|
|
|
|
}
|
|
|
|
|
|
|
|
coms = c.GetAllSubnets(99)
|
|
|
|
assert.Equal(t, 20, len(coms))
|
|
|
|
}
|