mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-29 06:37:17 +00:00
cc5fc0af1a
* Add double vote detection to spanner * Add documentation * Update slasher/detection/attestations/spanner.go * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into slasher-spanner-double * Merge branch 'slasher-spanner-double' of https://github.com/0xKiwi/Prysm into slasher-spanner-double * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into slasher-spanner-double * Gazelle * Add double vote detection func * Implement double voting detection * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into slasher-implement-double * Merge branch 'master' into slasher-implement-double * Merge branch 'slasher-implement-double' of https://github.com/0xKiwi/Prysm into slasher-implement-double * Fix typo * Remove filter, replace with slot + committee index * Change bloom filter to 2 sig bytes * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into slasher-change-filter * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into slasher-implement-double * Merge branch 'slasher-change-filter' of https://github.com/0xKiwi/Prysm into slasher-implement-double * Change detection to use prefix * Fix runtime * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into slasher-implement-double * Fix bug and comments * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into slasher-implement-double * Fix flaky test * Merge branch 'master' into slasher-implement-double * Improve logs * Merge branch 'slasher-implement-double' of https://github.com/0xKiwi/Prysm into slasher-implement-double * Add ok check * Fix test * Merge branch 'master' into slasher-implement-double
224 lines
6.3 KiB
Go
224 lines
6.3 KiB
Go
package detection
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
testDB "github.com/prysmaticlabs/prysm/slasher/db/testing"
|
|
"github.com/prysmaticlabs/prysm/slasher/detection/attestations"
|
|
)
|
|
|
|
func TestDetect_detectAttesterSlashings_Surround(t *testing.T) {
|
|
type testStruct struct {
|
|
name string
|
|
savedAtt *ethpb.IndexedAttestation
|
|
incomingAtt *ethpb.IndexedAttestation
|
|
slashingsFound int
|
|
}
|
|
tests := []testStruct{
|
|
{
|
|
name: "surrounding vote detected should report a slashing",
|
|
savedAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{3},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 9},
|
|
Target: ðpb.Checkpoint{Epoch: 13},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
incomingAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{1, 3, 7},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 7},
|
|
Target: ðpb.Checkpoint{Epoch: 14},
|
|
},
|
|
},
|
|
slashingsFound: 1,
|
|
},
|
|
{
|
|
name: "surrounded vote detected should report a slashing",
|
|
savedAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0, 2, 4, 8},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 6},
|
|
Target: ðpb.Checkpoint{Epoch: 10},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
incomingAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0, 4},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 7},
|
|
Target: ðpb.Checkpoint{Epoch: 9},
|
|
},
|
|
},
|
|
slashingsFound: 1,
|
|
},
|
|
{
|
|
name: "no slashable detected should not report a slashing",
|
|
savedAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 1},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
incomingAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
},
|
|
slashingsFound: 0,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
db := testDB.SetupSlasherDB(t, false)
|
|
ctx := context.Background()
|
|
ds := Service{
|
|
ctx: ctx,
|
|
slasherDB: db,
|
|
minMaxSpanDetector: &attestations.MockSpanDetector{},
|
|
}
|
|
if err := db.SaveIndexedAttestation(ctx, tt.savedAtt); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
slashings, err := ds.detectAttesterSlashings(ctx, tt.incomingAtt)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(slashings) != tt.slashingsFound {
|
|
t.Fatalf("Unexpected amount of slashings found, received %d, expected %d", len(slashings), tt.slashingsFound)
|
|
}
|
|
|
|
for _, ss := range slashings {
|
|
slashingAtt1 := ss.Attestation_1
|
|
slashingAtt2 := ss.Attestation_2
|
|
if !isSurrounding(slashingAtt1, slashingAtt2) {
|
|
t.Fatalf(
|
|
"Expected slashing to be valid, received atts %d->%d and %d->%d",
|
|
slashingAtt2.Data.Source.Epoch,
|
|
slashingAtt2.Data.Target.Epoch,
|
|
slashingAtt1.Data.Source.Epoch,
|
|
slashingAtt1.Data.Target.Epoch,
|
|
)
|
|
}
|
|
}
|
|
testDB.TeardownSlasherDB(t, db)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDetect_detectAttesterSlashings_Double(t *testing.T) {
|
|
type testStruct struct {
|
|
name string
|
|
savedAtt *ethpb.IndexedAttestation
|
|
incomingAtt *ethpb.IndexedAttestation
|
|
slashingsFound int
|
|
}
|
|
tests := []testStruct{
|
|
{
|
|
name: "different source, same target, should report a slashing",
|
|
savedAtt: ð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{1, 3, 7},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 2},
|
|
Target: ðpb.Checkpoint{Epoch: 4},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
slashingsFound: 1,
|
|
},
|
|
{
|
|
name: "same source and target, different block root, should report a slashing ",
|
|
savedAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0, 2, 4, 8},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 2},
|
|
Target: ðpb.Checkpoint{Epoch: 4},
|
|
BeaconBlockRoot: []byte("good block root"),
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
incomingAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0, 4},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 2},
|
|
Target: ðpb.Checkpoint{Epoch: 4},
|
|
BeaconBlockRoot: []byte("bad block root"),
|
|
},
|
|
},
|
|
slashingsFound: 1,
|
|
},
|
|
{
|
|
name: "same attestation should not report double",
|
|
savedAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
BeaconBlockRoot: []byte("good block root"),
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
incomingAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
BeaconBlockRoot: []byte("good block root"),
|
|
},
|
|
},
|
|
slashingsFound: 0,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
db := testDB.SetupSlasherDB(t, false)
|
|
ctx := context.Background()
|
|
ds := Service{
|
|
ctx: ctx,
|
|
slasherDB: db,
|
|
minMaxSpanDetector: &attestations.MockSpanDetector{},
|
|
}
|
|
if err := db.SaveIndexedAttestation(ctx, tt.savedAtt); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
slashings, err := ds.detectAttesterSlashings(ctx, tt.incomingAtt)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(slashings) != tt.slashingsFound {
|
|
t.Fatalf("Unexpected amount of slashings found, received %d, expected %d", len(slashings), tt.slashingsFound)
|
|
}
|
|
|
|
for _, ss := range slashings {
|
|
slashingAtt1 := ss.Attestation_1
|
|
slashingAtt2 := ss.Attestation_2
|
|
if !isDoubleVote(slashingAtt1, slashingAtt2) {
|
|
t.Fatalf(
|
|
"Expected slashing to be valid, received atts with target epoch %d and %d but not valid",
|
|
slashingAtt2.Data.Target.Epoch,
|
|
slashingAtt1.Data.Target.Epoch,
|
|
)
|
|
}
|
|
}
|
|
testDB.TeardownSlasherDB(t, db)
|
|
})
|
|
}
|
|
}
|