2020-03-26 18:31:20 +00:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
2020-03-28 18:32:11 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
2020-03-26 18:31:20 +00:00
|
|
|
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},
|
|
|
|
},
|
2020-03-28 18:32:11 +00:00
|
|
|
Signature: bytesutil.PadTo([]byte{1, 2}, 96),
|
2020-03-26 18:31:20 +00:00
|
|
|
}
|
|
|
|
incomingAtt := ðpb.IndexedAttestation{
|
|
|
|
AttestingIndices: []uint64{3},
|
|
|
|
Data: ðpb.AttestationData{
|
|
|
|
Source: ðpb.Checkpoint{Epoch: 2},
|
|
|
|
Target: ðpb.Checkpoint{Epoch: 4},
|
|
|
|
},
|
2020-03-28 18:32:11 +00:00
|
|
|
Signature: bytesutil.PadTo([]byte{1, 2}, 96),
|
2020-03-26 18:31:20 +00:00
|
|
|
}
|
|
|
|
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))
|
|
|
|
}
|
|
|
|
}
|