mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
54 lines
1.6 KiB
Go
54 lines
1.6 KiB
Go
|
package rpc
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
||
|
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: []byte{1, 2},
|
||
|
}
|
||
|
incomingAtt := ðpb.IndexedAttestation{
|
||
|
AttestingIndices: []uint64{3},
|
||
|
Data: ðpb.AttestationData{
|
||
|
Source: ðpb.Checkpoint{Epoch: 2},
|
||
|
Target: ðpb.Checkpoint{Epoch: 4},
|
||
|
},
|
||
|
Signature: []byte{1, 2},
|
||
|
}
|
||
|
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))
|
||
|
}
|
||
|
}
|