mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
5aac06f04e
* begin move * use same import path * imports * regen protos * regen * no rename * generate ssz * gaz * fmt * edit build file * imports * modify * remove generated files * remove protos * edit imports in prysm * beacon chain all builds * edit script * add generated pbs * add replace rules * license for ethereumapis protos * change visibility * fmt * update build files to gaz ignore * use proper form * edit imports * wrap block * revert scripts * revert go mod
67 lines
2.1 KiB
Go
67 lines
2.1 KiB
Go
package sync
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
lru "github.com/hashicorp/golang-lru"
|
|
"github.com/prysmaticlabs/go-bitfield"
|
|
mock "github.com/prysmaticlabs/prysm/beacon-chain/blockchain/testing"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/operations/attestations"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestBeaconAggregateProofSubscriber_CanSaveAggregatedAttestation(t *testing.T) {
|
|
c, err := lru.New(10)
|
|
require.NoError(t, err)
|
|
r := &Service{
|
|
cfg: &Config{
|
|
AttPool: attestations.NewPool(),
|
|
AttestationNotifier: (&mock.ChainService{}).OperationNotifier(),
|
|
},
|
|
seenAttestationCache: c,
|
|
}
|
|
|
|
a := ðpb.SignedAggregateAttestationAndProof{
|
|
Message: ðpb.AggregateAttestationAndProof{
|
|
Aggregate: testutil.HydrateAttestation(ðpb.Attestation{
|
|
AggregationBits: bitfield.Bitlist{0x07},
|
|
}),
|
|
AggregatorIndex: 100,
|
|
},
|
|
Signature: make([]byte, 96),
|
|
}
|
|
require.NoError(t, r.beaconAggregateProofSubscriber(context.Background(), a))
|
|
assert.DeepSSZEqual(t, []*ethpb.Attestation{a.Message.Aggregate}, r.cfg.AttPool.AggregatedAttestations(), "Did not save aggregated attestation")
|
|
}
|
|
|
|
func TestBeaconAggregateProofSubscriber_CanSaveUnaggregatedAttestation(t *testing.T) {
|
|
c, err := lru.New(10)
|
|
require.NoError(t, err)
|
|
r := &Service{
|
|
cfg: &Config{
|
|
AttPool: attestations.NewPool(),
|
|
AttestationNotifier: (&mock.ChainService{}).OperationNotifier(),
|
|
},
|
|
seenAttestationCache: c,
|
|
}
|
|
|
|
a := ðpb.SignedAggregateAttestationAndProof{
|
|
Message: ðpb.AggregateAttestationAndProof{
|
|
Aggregate: testutil.HydrateAttestation(ðpb.Attestation{
|
|
AggregationBits: bitfield.Bitlist{0x03},
|
|
Signature: make([]byte, 96),
|
|
}),
|
|
AggregatorIndex: 100,
|
|
},
|
|
}
|
|
require.NoError(t, r.beaconAggregateProofSubscriber(context.Background(), a))
|
|
|
|
atts, err := r.cfg.AttPool.UnaggregatedAttestations()
|
|
require.NoError(t, err)
|
|
assert.DeepEqual(t, []*ethpb.Attestation{a.Message.Aggregate}, atts, "Did not save unaggregated attestation")
|
|
}
|