mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
a24546152b
* Use fastssz when available * fix tests * fix most tests * Merge branch 'master' into faster-hash-proto * Merge refs/heads/master into faster-hash-proto * Merge refs/heads/master into faster-hash-proto * Merge refs/heads/master into faster-hash-proto * fix last test * Merge branch 'faster-hash-proto' of github.com:prysmaticlabs/prysm into faster-hash-proto-2 * lint * fix last test * fix again * Update beacon-chain/cache/checkpoint_state_test.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Merge refs/heads/master into faster-hash-proto
55 lines
1.7 KiB
Go
55 lines
1.7 KiB
Go
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
testDB "github.com/prysmaticlabs/prysm/slasher/db/testing"
|
|
"github.com/prysmaticlabs/prysm/slasher/detection"
|
|
)
|
|
|
|
func Test_DetectionFlow(t *testing.T) {
|
|
db := testDB.SetupSlasherDB(t, false)
|
|
defer testDB.TeardownSlasherDB(t, db)
|
|
|
|
savedAttestation := ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{3},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 3},
|
|
Target: ðpb.Checkpoint{Epoch: 4},
|
|
},
|
|
Signature: bytesutil.PadTo([]byte{1, 2}, 96),
|
|
}
|
|
incomingAtt := ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{3},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 2},
|
|
Target: ðpb.Checkpoint{Epoch: 4},
|
|
},
|
|
Signature: bytesutil.PadTo([]byte{1, 2}, 96),
|
|
}
|
|
cfg := &detection.Config{
|
|
SlasherDB: db,
|
|
}
|
|
ctx := context.Background()
|
|
ds := detection.NewDetectionService(ctx, cfg)
|
|
server := Server{ctx: ctx, detector: ds, slasherDB: db}
|
|
slashings, err := server.IsSlashableAttestation(ctx, savedAttestation)
|
|
if err != nil {
|
|
t.Fatalf("got error while trying to detect slashing: %v", err)
|
|
}
|
|
if len(slashings.AttesterSlashing) != 0 {
|
|
t.Fatalf("Found slashings while no slashing should have been found on first attestation: %v slashing found: %v", savedAttestation, slashings)
|
|
}
|
|
|
|
slashing, err := server.IsSlashableAttestation(ctx, incomingAtt)
|
|
if err != nil {
|
|
t.Fatalf("got error while trying to detect slashing: %v", err)
|
|
}
|
|
if len(slashing.AttesterSlashing) != 1 {
|
|
t.Fatalf("only one slashing should have been found. got: %v", len(slashing.AttesterSlashing))
|
|
}
|
|
}
|