mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
6c4bf22723
* Update aggregated methods * Update aggregated methods * Use improved HasAttestation to check caches * Add back some validations * There's no need to save unaggregated att * Fixed all the tests * remove TODO for now * Raul feedback Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
97 lines
2.8 KiB
Go
97 lines
2.8 KiB
Go
package kv
|
|
|
|
import (
|
|
"math"
|
|
"reflect"
|
|
"sort"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/go-bitfield"
|
|
"github.com/prysmaticlabs/go-ssz"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
)
|
|
|
|
func TestKV_BlockAttestation_CanSaveRetrieve(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
|
|
att1 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 1}, AggregationBits: bitfield.Bitlist{0b1101}}
|
|
att2 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 2}, AggregationBits: bitfield.Bitlist{0b1101}}
|
|
att3 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 3}, AggregationBits: bitfield.Bitlist{0b1101}}
|
|
atts := []*ethpb.Attestation{att1, att2, att3}
|
|
|
|
for _, att := range atts {
|
|
if err := cache.SaveBlockAttestation(att); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
returned := cache.BlockAttestations()
|
|
|
|
sort.Slice(returned, func(i, j int) bool {
|
|
return returned[i].Data.Slot < returned[j].Data.Slot
|
|
})
|
|
|
|
if !reflect.DeepEqual(atts, returned) {
|
|
t.Error("Did not receive correct aggregated atts")
|
|
}
|
|
}
|
|
|
|
func TestKV_BlockAttestation_CanDelete(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
|
|
att1 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 1}, AggregationBits: bitfield.Bitlist{0b1101}}
|
|
att2 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 2}, AggregationBits: bitfield.Bitlist{0b1101}}
|
|
att3 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 3}, AggregationBits: bitfield.Bitlist{0b1101}}
|
|
atts := []*ethpb.Attestation{att1, att2, att3}
|
|
|
|
for _, att := range atts {
|
|
if err := cache.SaveBlockAttestation(att); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
if err := cache.DeleteBlockAttestation(att1); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := cache.DeleteBlockAttestation(att3); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
returned := cache.BlockAttestations()
|
|
wanted := []*ethpb.Attestation{att2}
|
|
|
|
if !reflect.DeepEqual(wanted, returned) {
|
|
t.Error("Did not receive correct aggregated atts")
|
|
}
|
|
}
|
|
|
|
func TestKV_BlockAttestation_CheckExpTime(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
|
|
att := ðpb.Attestation{AggregationBits: bitfield.Bitlist{0b111}}
|
|
r, _ := ssz.HashTreeRoot(att.Data)
|
|
|
|
if err := cache.SaveBlockAttestation(att); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
item, exp, exists := cache.blockAtt.GetWithExpiration(string(r[:]))
|
|
if !exists {
|
|
t.Error("Saved att does not exist")
|
|
}
|
|
|
|
receivedAtt := item.([]*ethpb.Attestation)[0]
|
|
if !proto.Equal(att, receivedAtt) {
|
|
t.Error("Did not receive correct aggregated att")
|
|
}
|
|
|
|
wanted := float64(params.BeaconConfig().SlotsPerEpoch * params.BeaconConfig().SecondsPerSlot)
|
|
if math.RoundToEven(exp.Sub(time.Now()).Seconds()) != wanted {
|
|
t.Errorf("Did not receive correct exp time. Wanted: %f, got: %f", wanted,
|
|
math.RoundToEven(exp.Sub(time.Now()).Seconds()))
|
|
}
|
|
}
|