mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-16 06:58:20 +00:00
b7175b3482
* Revert "Revert "Update fastssz" (#7100)"
This reverts commit b954db9704
.
* Preston's patch
* Merge branch 'master' of github.com:prysmaticlabs/prysm into revert-7100-revert-6760-update-fssz
* Update fssz, add regression test case
* more HTR with fssz
* fix some tests
* only one test left
* Make it so that HTR will work
* gofmt, imports
* gofmt, imports
* fix
* Merge branch 'master' of github.com:prysmaticlabs/prysm into revert-7100-revert-6760-update-fssz
* fix
* Merge branch 'master' into revert-7100-revert-6760-update-fssz
* Merge refs/heads/master into revert-7100-revert-6760-update-fssz
* gaz
* Merge branch 'revert-7100-revert-6760-update-fssz' of github.com:prysmaticlabs/prysm into revert-7100-revert-6760-update-fssz
* Merge refs/heads/master into revert-7100-revert-6760-update-fssz
* fix test
* Merge branch 'revert-7100-revert-6760-update-fssz' of github.com:prysmaticlabs/prysm into revert-7100-revert-6760-update-fssz
* Merge refs/heads/master into revert-7100-revert-6760-update-fssz
182 lines
8.4 KiB
Go
182 lines
8.4 KiB
Go
package kv
|
|
|
|
import (
|
|
"testing"
|
|
|
|
fssz "github.com/ferranbt/fastssz"
|
|
c "github.com/patrickmn/go-cache"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/go-bitfield"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
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, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}},
|
|
wantErrString: "attestation is aggregated",
|
|
},
|
|
{
|
|
name: "invalid hash",
|
|
att: ðpb.Attestation{
|
|
Data: ðpb.AttestationData{
|
|
BeaconBlockRoot: []byte{0b0},
|
|
},
|
|
},
|
|
wantErrString: fssz.ErrBytesLength.Error(),
|
|
},
|
|
{
|
|
name: "normal save",
|
|
att: ðpb.Attestation{AggregationBits: bitfield.Bitlist{0b0001}, Data: ðpb.AttestationData{BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}},
|
|
count: 1,
|
|
},
|
|
{
|
|
name: "already seen",
|
|
att: ðpb.Attestation{
|
|
Data: ðpb.AttestationData{
|
|
Slot: 100,
|
|
BeaconBlockRoot: make([]byte, 32),
|
|
Target: ðpb.Checkpoint{Root: make([]byte, 32)},
|
|
Source: ðpb.Checkpoint{Root: make([]byte, 32)},
|
|
},
|
|
AggregationBits: bitfield.Bitlist{0b10000001},
|
|
Signature: make([]byte, 96),
|
|
},
|
|
count: 0,
|
|
},
|
|
}
|
|
r, err := hashFn(ðpb.AttestationData{
|
|
Slot: 100,
|
|
Source: ðpb.Checkpoint{Root: make([]byte, 32)},
|
|
Target: ðpb.Checkpoint{Root: make([]byte, 32)},
|
|
BeaconBlockRoot: make([]byte, 32),
|
|
})
|
|
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, 96)
|
|
}
|
|
|
|
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{
|
|
{Data: ðpb.AttestationData{Slot: 1, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, Signature: make([]byte, 96)},
|
|
{Data: ðpb.AttestationData{Slot: 2, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, Signature: make([]byte, 96)},
|
|
{Data: ðpb.AttestationData{Slot: 3, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, Signature: make([]byte, 96)},
|
|
},
|
|
count: 3,
|
|
},
|
|
{
|
|
name: "has aggregated",
|
|
atts: []*ethpb.Attestation{
|
|
{Data: ðpb.AttestationData{Slot: 1, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, Signature: make([]byte, 96)},
|
|
{AggregationBits: bitfield.Bitlist{0b1111}, Data: ðpb.AttestationData{Slot: 2, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, Signature: make([]byte, 96)},
|
|
{Data: ðpb.AttestationData{Slot: 3, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, Signature: make([]byte, 96)},
|
|
},
|
|
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, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, Signature: make([]byte, 96)}
|
|
err := cache.DeleteUnaggregatedAttestation(att)
|
|
assert.ErrorContains(t, "attestation is aggregated", err)
|
|
})
|
|
|
|
t.Run("successful deletion", func(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
att1 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 1, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, AggregationBits: bitfield.Bitlist{0b101}, Signature: make([]byte, 96)}
|
|
att2 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 2, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, AggregationBits: bitfield.Bitlist{0b110}, Signature: make([]byte, 96)}
|
|
att3 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 3, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, AggregationBits: bitfield.Bitlist{0b110}, Signature: make([]byte, 96)}
|
|
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_UnaggregatedAttestationsBySlotIndex(t *testing.T) {
|
|
cache := NewAttCaches()
|
|
|
|
att1 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 1, CommitteeIndex: 1, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, AggregationBits: bitfield.Bitlist{0b101}, Signature: make([]byte, 96)}
|
|
att2 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 1, CommitteeIndex: 2, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, AggregationBits: bitfield.Bitlist{0b110}, Signature: make([]byte, 96)}
|
|
att3 := ðpb.Attestation{Data: ðpb.AttestationData{Slot: 2, CommitteeIndex: 1, BeaconBlockRoot: make([]byte, 32), Target: ðpb.Checkpoint{Root: make([]byte, 32)}, Source: ðpb.Checkpoint{Root: make([]byte, 32)}}, AggregationBits: bitfield.Bitlist{0b110}, Signature: make([]byte, 96)}
|
|
atts := []*ethpb.Attestation{att1, att2, att3}
|
|
|
|
for _, att := range atts {
|
|
require.NoError(t, cache.SaveUnaggregatedAttestation(att))
|
|
}
|
|
|
|
returned := cache.UnaggregatedAttestationsBySlotIndex(1, 1)
|
|
assert.DeepEqual(t, []*ethpb.Attestation{att1}, returned)
|
|
returned = cache.UnaggregatedAttestationsBySlotIndex(1, 2)
|
|
assert.DeepEqual(t, []*ethpb.Attestation{att2}, returned)
|
|
returned = cache.UnaggregatedAttestationsBySlotIndex(2, 1)
|
|
assert.DeepEqual(t, []*ethpb.Attestation{att3}, returned)
|
|
}
|