mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
255 lines
9.4 KiB
Go
255 lines
9.4 KiB
Go
package kv
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"sort"
|
|
"testing"
|
|
|
|
c "github.com/patrickmn/go-cache"
|
|
fssz "github.com/prysmaticlabs/fastssz"
|
|
"github.com/prysmaticlabs/go-bitfield"
|
|
fieldparams "github.com/prysmaticlabs/prysm/v5/config/fieldparams"
|
|
ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/util"
|
|
)
|
|
|
|
func TestKV_Unaggregated_SaveUnaggregatedAttestation(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
att *ethpb.Attestation
|
|
count int
|
|
wantErrString string
|
|
}{
|
|
{
|
|
name: "nil attestation",
|
|
att: nil,
|
|
},
|
|
{
|
|
name: "already aggregated",
|
|
att: ðpb.Attestation{AggregationBits: bitfield.Bitlist{0b10101}, Data: ðpb.AttestationData{Slot: 2}},
|
|
wantErrString: "attestation is aggregated",
|
|
},
|
|
{
|
|
name: "invalid hash",
|
|
att: ðpb.Attestation{
|
|
Data: ðpb.AttestationData{
|
|
BeaconBlockRoot: []byte{0b0},
|
|
},
|
|
},
|
|
wantErrString: fssz.ErrBytesLength.Error(),
|
|
},
|
|
{
|
|
name: "normal save",
|
|
att: util.HydrateAttestation(ðpb.Attestation{AggregationBits: bitfield.Bitlist{0b0001}}),
|
|
count: 1,
|
|
},
|
|
{
|
|
name: "already seen",
|
|
att: util.HydrateAttestation(ðpb.Attestation{
|
|
Data: ðpb.AttestationData{
|
|
Slot: 100,
|
|
},
|
|
AggregationBits: bitfield.Bitlist{0b10000001},
|
|
}),
|
|
count: 0,
|
|
},
|
|
}
|
|
r, err := hashFn(util.HydrateAttestationData(ðpb.AttestationData{Slot: 100}))
|
|
require.NoError(t, err)
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
cache.seenAtt.Set(string(r[:]), []bitfield.Bitlist{{0xff}}, c.DefaultExpiration)
|
|
assert.Equal(t, 0, len(cache.unAggregatedAtt), "Invalid start pool, atts: %d", len(cache.unAggregatedAtt))
|
|
|
|
if tt.att != nil && tt.att.Signature == nil {
|
|
tt.att.Signature = make([]byte, fieldparams.BLSSignatureLength)
|
|
}
|
|
|
|
err := cache.SaveUnaggregatedAttestation(tt.att)
|
|
if tt.wantErrString != "" {
|
|
assert.ErrorContains(t, tt.wantErrString, err)
|
|
} else {
|
|
assert.NoError(t, err)
|
|
}
|
|
assert.Equal(t, tt.count, len(cache.unAggregatedAtt), "Wrong attestation count")
|
|
assert.Equal(t, tt.count, cache.UnaggregatedAttestationCount(), "Wrong attestation count")
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestKV_Unaggregated_SaveUnaggregatedAttestations(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
atts []*ethpb.Attestation
|
|
count int
|
|
wantErrString string
|
|
}{
|
|
{
|
|
name: "unaggregated only",
|
|
atts: []*ethpb.Attestation{
|
|
util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 1}}),
|
|
util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 2}}),
|
|
util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 3}}),
|
|
},
|
|
count: 3,
|
|
},
|
|
{
|
|
name: "has aggregated",
|
|
atts: []*ethpb.Attestation{
|
|
util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 1}}),
|
|
{AggregationBits: bitfield.Bitlist{0b1111}, Data: ðpb.AttestationData{Slot: 2}},
|
|
util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 3}}),
|
|
},
|
|
wantErrString: "attestation is aggregated",
|
|
count: 1,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
assert.Equal(t, 0, len(cache.unAggregatedAtt), "Invalid start pool, atts: %d", len(cache.unAggregatedAtt))
|
|
|
|
err := cache.SaveUnaggregatedAttestations(tt.atts)
|
|
if tt.wantErrString != "" {
|
|
assert.ErrorContains(t, tt.wantErrString, err)
|
|
} else {
|
|
assert.NoError(t, err)
|
|
}
|
|
assert.Equal(t, tt.count, len(cache.unAggregatedAtt), "Wrong attestation count")
|
|
assert.Equal(t, tt.count, cache.UnaggregatedAttestationCount(), "Wrong attestation count")
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestKV_Unaggregated_DeleteUnaggregatedAttestation(t *testing.T) {
|
|
t.Run("nil attestation", func(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
assert.NoError(t, cache.DeleteUnaggregatedAttestation(nil))
|
|
})
|
|
|
|
t.Run("aggregated attestation", func(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
att := ðpb.Attestation{AggregationBits: bitfield.Bitlist{0b1111}, Data: ðpb.AttestationData{Slot: 2}}
|
|
err := cache.DeleteUnaggregatedAttestation(att)
|
|
assert.ErrorContains(t, "attestation is aggregated", err)
|
|
})
|
|
|
|
t.Run("successful deletion", func(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
att1 := util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 1}, AggregationBits: bitfield.Bitlist{0b101}})
|
|
att2 := util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 2}, AggregationBits: bitfield.Bitlist{0b110}})
|
|
att3 := util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 3}, AggregationBits: bitfield.Bitlist{0b110}})
|
|
atts := []*ethpb.Attestation{att1, att2, att3}
|
|
require.NoError(t, cache.SaveUnaggregatedAttestations(atts))
|
|
for _, att := range atts {
|
|
assert.NoError(t, cache.DeleteUnaggregatedAttestation(att))
|
|
}
|
|
returned, err := cache.UnaggregatedAttestations()
|
|
require.NoError(t, err)
|
|
assert.DeepEqual(t, []*ethpb.Attestation{}, returned)
|
|
})
|
|
}
|
|
|
|
func TestKV_Unaggregated_DeleteSeenUnaggregatedAttestations(t *testing.T) {
|
|
d := util.HydrateAttestationData(ðpb.AttestationData{})
|
|
|
|
t.Run("no attestations", func(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
count, err := cache.DeleteSeenUnaggregatedAttestations()
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, 0, count)
|
|
})
|
|
|
|
t.Run("none seen", func(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
atts := []*ethpb.Attestation{
|
|
util.HydrateAttestation(ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b1001}}),
|
|
util.HydrateAttestation(ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b1010}}),
|
|
util.HydrateAttestation(ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b1100}}),
|
|
}
|
|
require.NoError(t, cache.SaveUnaggregatedAttestations(atts))
|
|
assert.Equal(t, 3, cache.UnaggregatedAttestationCount())
|
|
|
|
// As none of attestations have been marked seen, nothing should be deleted.
|
|
count, err := cache.DeleteSeenUnaggregatedAttestations()
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, 0, count)
|
|
assert.Equal(t, 3, cache.UnaggregatedAttestationCount())
|
|
})
|
|
|
|
t.Run("some seen", func(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
atts := []*ethpb.Attestation{
|
|
util.HydrateAttestation(ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b1001}}),
|
|
util.HydrateAttestation(ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b1010}}),
|
|
util.HydrateAttestation(ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b1100}}),
|
|
}
|
|
require.NoError(t, cache.SaveUnaggregatedAttestations(atts))
|
|
assert.Equal(t, 3, cache.UnaggregatedAttestationCount())
|
|
|
|
require.NoError(t, cache.insertSeenBit(atts[1]))
|
|
|
|
// Only seen attestations must be deleted.
|
|
count, err := cache.DeleteSeenUnaggregatedAttestations()
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, 1, count)
|
|
assert.Equal(t, 2, cache.UnaggregatedAttestationCount())
|
|
returned, err := cache.UnaggregatedAttestations()
|
|
sort.Slice(returned, func(i, j int) bool {
|
|
return bytes.Compare(returned[i].AggregationBits, returned[j].AggregationBits) < 0
|
|
})
|
|
require.NoError(t, err)
|
|
assert.DeepEqual(t, []*ethpb.Attestation{atts[0], atts[2]}, returned)
|
|
})
|
|
|
|
t.Run("all seen", func(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
atts := []*ethpb.Attestation{
|
|
util.HydrateAttestation(ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b1001}}),
|
|
util.HydrateAttestation(ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b1010}}),
|
|
util.HydrateAttestation(ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b1100}}),
|
|
}
|
|
require.NoError(t, cache.SaveUnaggregatedAttestations(atts))
|
|
assert.Equal(t, 3, cache.UnaggregatedAttestationCount())
|
|
|
|
require.NoError(t, cache.insertSeenBit(atts[0]))
|
|
require.NoError(t, cache.insertSeenBit(atts[1]))
|
|
require.NoError(t, cache.insertSeenBit(atts[2]))
|
|
|
|
// All attestations have been processed -- all should be removed.
|
|
count, err := cache.DeleteSeenUnaggregatedAttestations()
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, 3, count)
|
|
assert.Equal(t, 0, cache.UnaggregatedAttestationCount())
|
|
returned, err := cache.UnaggregatedAttestations()
|
|
require.NoError(t, err)
|
|
assert.DeepEqual(t, []*ethpb.Attestation{}, returned)
|
|
})
|
|
}
|
|
|
|
func TestKV_Unaggregated_UnaggregatedAttestationsBySlotIndex(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
|
|
att1 := util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 1, CommitteeIndex: 1}, AggregationBits: bitfield.Bitlist{0b101}})
|
|
att2 := util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 1, CommitteeIndex: 2}, AggregationBits: bitfield.Bitlist{0b110}})
|
|
att3 := util.HydrateAttestation(ðpb.Attestation{Data: ðpb.AttestationData{Slot: 2, CommitteeIndex: 1}, AggregationBits: bitfield.Bitlist{0b110}})
|
|
atts := []*ethpb.Attestation{att1, att2, att3}
|
|
|
|
for _, att := range atts {
|
|
require.NoError(t, cache.SaveUnaggregatedAttestation(att))
|
|
}
|
|
ctx := context.Background()
|
|
returned := cache.UnaggregatedAttestationsBySlotIndex(ctx, 1, 1)
|
|
assert.DeepEqual(t, []*ethpb.Attestation{att1}, returned)
|
|
returned = cache.UnaggregatedAttestationsBySlotIndex(ctx, 1, 2)
|
|
assert.DeepEqual(t, []*ethpb.Attestation{att2}, returned)
|
|
returned = cache.UnaggregatedAttestationsBySlotIndex(ctx, 2, 1)
|
|
assert.DeepEqual(t, []*ethpb.Attestation{att3}, returned)
|
|
}
|