2020-02-07 02:32:51 +00:00
|
|
|
package slashings
|
|
|
|
|
|
|
|
import (
|
2020-03-12 01:16:55 +00:00
|
|
|
"context"
|
2020-02-07 02:32:51 +00:00
|
|
|
"reflect"
|
2020-02-14 04:20:45 +00:00
|
|
|
"strings"
|
2020-02-07 02:32:51 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
2020-03-12 01:16:55 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
2020-02-07 02:32:51 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
2020-03-12 01:16:55 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
2020-02-07 02:32:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func attesterSlashingForValIdx(valIdx ...uint64) *ethpb.AttesterSlashing {
|
|
|
|
return ðpb.AttesterSlashing{
|
|
|
|
Attestation_1: ðpb.IndexedAttestation{
|
|
|
|
AttestingIndices: valIdx,
|
|
|
|
},
|
|
|
|
Attestation_2: ðpb.IndexedAttestation{
|
|
|
|
AttestingIndices: valIdx,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func pendingSlashingForValIdx(valIdx ...uint64) *PendingAttesterSlashing {
|
|
|
|
return &PendingAttesterSlashing{
|
|
|
|
attesterSlashing: attesterSlashingForValIdx(valIdx...),
|
|
|
|
validatorToSlash: valIdx[0],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPool_InsertAttesterSlashing(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
pending []*PendingAttesterSlashing
|
|
|
|
included map[uint64]bool
|
2020-02-14 04:20:45 +00:00
|
|
|
wantErr bool
|
|
|
|
err string
|
2020-02-07 02:32:51 +00:00
|
|
|
}
|
|
|
|
type args struct {
|
2020-03-12 01:16:55 +00:00
|
|
|
slashings []*ethpb.AttesterSlashing
|
|
|
|
}
|
|
|
|
|
|
|
|
beaconState, privKeys := testutil.DeterministicGenesisState(t, 64)
|
|
|
|
pendingSlashings := make([]*PendingAttesterSlashing, 20)
|
|
|
|
slashings := make([]*ethpb.AttesterSlashing, 20)
|
|
|
|
for i := 0; i < len(pendingSlashings); i++ {
|
|
|
|
sl, err := testutil.GenerateAttesterSlashingForValidator(beaconState, privKeys[i], uint64(i))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
pendingSlashings[i] = &PendingAttesterSlashing{
|
|
|
|
attesterSlashing: sl,
|
|
|
|
validatorToSlash: uint64(i),
|
|
|
|
}
|
|
|
|
slashings[i] = sl
|
2020-02-07 02:32:51 +00:00
|
|
|
}
|
2020-03-12 01:16:55 +00:00
|
|
|
if err := beaconState.SetSlot(helpers.StartSlot(1)); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// We mark the following validators with some preconditions.
|
|
|
|
exitedVal, _ := beaconState.ValidatorAtIndex(uint64(2))
|
|
|
|
exitedVal.ExitEpoch = 0
|
|
|
|
futureExitedVal, _ := beaconState.ValidatorAtIndex(uint64(4))
|
|
|
|
futureExitedVal.ExitEpoch = 17
|
|
|
|
slashedVal, _ := beaconState.ValidatorAtIndex(uint64(5))
|
|
|
|
slashedVal.Slashed = true
|
|
|
|
if err := beaconState.UpdateValidatorAtIndex(uint64(2), exitedVal); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := beaconState.UpdateValidatorAtIndex(uint64(4), futureExitedVal); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := beaconState.UpdateValidatorAtIndex(uint64(5), slashedVal); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2020-02-07 02:32:51 +00:00
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
want []*PendingAttesterSlashing
|
|
|
|
err string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Empty list",
|
|
|
|
fields: fields{
|
|
|
|
pending: make([]*PendingAttesterSlashing, 0),
|
|
|
|
included: make(map[uint64]bool),
|
|
|
|
},
|
|
|
|
args: args{
|
2020-03-12 01:16:55 +00:00
|
|
|
slashings: slashings[0:1],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
want: []*PendingAttesterSlashing{
|
|
|
|
{
|
2020-03-12 01:16:55 +00:00
|
|
|
attesterSlashing: slashings[0],
|
2020-02-07 02:32:51 +00:00
|
|
|
validatorToSlash: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2020-03-12 01:16:55 +00:00
|
|
|
name: "Empty list two validators slashed",
|
2020-02-07 02:32:51 +00:00
|
|
|
fields: fields{
|
|
|
|
pending: make([]*PendingAttesterSlashing, 0),
|
|
|
|
included: make(map[uint64]bool),
|
|
|
|
},
|
|
|
|
args: args{
|
2020-03-12 01:16:55 +00:00
|
|
|
slashings: slashings[0:2],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
2020-03-12 01:16:55 +00:00
|
|
|
want: pendingSlashings[0:2],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Duplicate identical slashing",
|
|
|
|
fields: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{
|
2020-03-12 01:16:55 +00:00
|
|
|
pendingSlashings[1],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
included: make(map[uint64]bool),
|
|
|
|
},
|
|
|
|
args: args{
|
2020-03-12 01:16:55 +00:00
|
|
|
slashings: slashings[1:2],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
2020-03-12 01:16:55 +00:00
|
|
|
want: pendingSlashings[1:2],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-12 01:16:55 +00:00
|
|
|
name: "Slashing for already slashed validator",
|
2020-02-07 02:32:51 +00:00
|
|
|
fields: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{},
|
|
|
|
included: make(map[uint64]bool),
|
|
|
|
},
|
|
|
|
args: args{
|
2020-03-12 01:16:55 +00:00
|
|
|
slashings: slashings[5:6],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
want: []*PendingAttesterSlashing{},
|
|
|
|
},
|
|
|
|
{
|
2020-03-12 01:16:55 +00:00
|
|
|
name: "Slashing for exited validator",
|
2020-02-07 02:32:51 +00:00
|
|
|
fields: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{},
|
|
|
|
included: make(map[uint64]bool),
|
|
|
|
},
|
|
|
|
args: args{
|
2020-03-12 01:16:55 +00:00
|
|
|
slashings: slashings[2:3],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
2020-03-12 01:16:55 +00:00
|
|
|
want: []*PendingAttesterSlashing{},
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
{
|
2020-03-12 01:16:55 +00:00
|
|
|
name: "Slashing for futuristic exited validator",
|
2020-02-07 02:32:51 +00:00
|
|
|
fields: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{},
|
|
|
|
included: make(map[uint64]bool),
|
|
|
|
},
|
|
|
|
args: args{
|
2020-03-12 01:16:55 +00:00
|
|
|
slashings: slashings[4:5],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
2020-03-12 01:16:55 +00:00
|
|
|
want: pendingSlashings[4:5],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Already included",
|
|
|
|
fields: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{},
|
|
|
|
included: map[uint64]bool{
|
|
|
|
1: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
args: args{
|
2020-03-12 01:16:55 +00:00
|
|
|
slashings: slashings[1:2],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
want: []*PendingAttesterSlashing{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Maintains sorted order",
|
|
|
|
fields: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{
|
2020-03-12 01:16:55 +00:00
|
|
|
pendingSlashings[0],
|
|
|
|
pendingSlashings[2],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
included: make(map[uint64]bool),
|
|
|
|
},
|
|
|
|
args: args{
|
2020-03-12 01:16:55 +00:00
|
|
|
slashings: slashings[1:2],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
2020-03-12 01:16:55 +00:00
|
|
|
want: pendingSlashings[0:3],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
p := &Pool{
|
|
|
|
pendingAttesterSlashing: tt.fields.pending,
|
|
|
|
included: tt.fields.included,
|
|
|
|
}
|
2020-03-12 01:16:55 +00:00
|
|
|
var err error
|
|
|
|
for i := 0; i < len(tt.args.slashings); i++ {
|
|
|
|
err = p.InsertAttesterSlashing(context.Background(), beaconState, tt.args.slashings[i])
|
2020-02-07 02:32:51 +00:00
|
|
|
}
|
2020-02-14 04:20:45 +00:00
|
|
|
if err != nil && tt.fields.wantErr && !strings.Contains(err.Error(), tt.fields.err) {
|
|
|
|
t.Fatalf("Wanted err: %v, received %v", tt.fields.err, err)
|
|
|
|
}
|
2020-02-07 02:32:51 +00:00
|
|
|
if len(p.pendingAttesterSlashing) != len(tt.want) {
|
2020-03-12 01:16:55 +00:00
|
|
|
t.Fatalf(
|
|
|
|
"Mismatched lengths of pending list. Got %d, wanted %d.",
|
|
|
|
len(p.pendingAttesterSlashing),
|
|
|
|
len(tt.want),
|
|
|
|
)
|
2020-02-07 02:32:51 +00:00
|
|
|
}
|
|
|
|
for i := range p.pendingAttesterSlashing {
|
|
|
|
if p.pendingAttesterSlashing[i].validatorToSlash != tt.want[i].validatorToSlash {
|
|
|
|
t.Errorf(
|
|
|
|
"Pending attester to slash at index %d does not match expected. Got=%v wanted=%v",
|
|
|
|
i,
|
|
|
|
p.pendingAttesterSlashing[i].validatorToSlash,
|
|
|
|
tt.want[i].validatorToSlash,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
if !proto.Equal(p.pendingAttesterSlashing[i].attesterSlashing, tt.want[i].attesterSlashing) {
|
|
|
|
t.Errorf(
|
|
|
|
"Pending attester slashing at index %d does not match expected. Got=%v wanted=%v",
|
|
|
|
i,
|
|
|
|
p.pendingAttesterSlashing[i],
|
|
|
|
tt.want[i],
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-12 01:16:55 +00:00
|
|
|
func TestPool_InsertAttesterSlashing_SigFailsVerify_ClearPool(t *testing.T) {
|
|
|
|
conf := params.BeaconConfig()
|
|
|
|
conf.MaxAttesterSlashings = 2
|
|
|
|
params.OverrideBeaconConfig(conf)
|
|
|
|
beaconState, privKeys := testutil.DeterministicGenesisState(t, 64)
|
|
|
|
pendingSlashings := make([]*PendingAttesterSlashing, 2)
|
|
|
|
slashings := make([]*ethpb.AttesterSlashing, 2)
|
|
|
|
for i := 0; i < 2; i++ {
|
|
|
|
sl, err := testutil.GenerateAttesterSlashingForValidator(beaconState, privKeys[i], uint64(i))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
pendingSlashings[i] = &PendingAttesterSlashing{
|
|
|
|
attesterSlashing: sl,
|
|
|
|
validatorToSlash: uint64(i),
|
|
|
|
}
|
|
|
|
slashings[i] = sl
|
|
|
|
}
|
|
|
|
// We mess up the signature of the second slashing.
|
|
|
|
badSig := make([]byte, 96)
|
|
|
|
copy(badSig, "muahaha")
|
|
|
|
pendingSlashings[1].attesterSlashing.Attestation_1.Signature = badSig
|
|
|
|
slashings[1].Attestation_1.Signature = badSig
|
|
|
|
p := &Pool{
|
|
|
|
pendingAttesterSlashing: make([]*PendingAttesterSlashing, 0),
|
|
|
|
}
|
|
|
|
if err := p.InsertAttesterSlashing(
|
|
|
|
context.Background(),
|
|
|
|
beaconState,
|
|
|
|
slashings[0],
|
|
|
|
); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := p.InsertAttesterSlashing(
|
|
|
|
context.Background(),
|
|
|
|
beaconState,
|
|
|
|
slashings[1],
|
|
|
|
); err == nil {
|
|
|
|
t.Error("Expected error when inserting slashing with bad sig, got nil")
|
|
|
|
}
|
|
|
|
// We expect to only have 1 pending attester slashing in the pool.
|
|
|
|
if len(p.pendingAttesterSlashing) != 1 {
|
|
|
|
t.Error("Expected failed attester slashing to have been cleared from pool")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-07 02:32:51 +00:00
|
|
|
func TestPool_MarkIncludedAttesterSlashing(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
pending []*PendingAttesterSlashing
|
|
|
|
included map[uint64]bool
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
slashing *ethpb.AttesterSlashing
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
want fields
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Included, does not exist in pending",
|
|
|
|
fields: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{
|
|
|
|
{
|
|
|
|
attesterSlashing: attesterSlashingForValIdx(1),
|
|
|
|
validatorToSlash: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
included: make(map[uint64]bool),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
slashing: attesterSlashingForValIdx(3),
|
|
|
|
},
|
|
|
|
want: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{
|
|
|
|
pendingSlashingForValIdx(1),
|
|
|
|
},
|
|
|
|
included: map[uint64]bool{
|
|
|
|
3: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Removes from pending list",
|
|
|
|
fields: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{
|
|
|
|
pendingSlashingForValIdx(1),
|
|
|
|
pendingSlashingForValIdx(2),
|
|
|
|
pendingSlashingForValIdx(3),
|
|
|
|
},
|
|
|
|
included: map[uint64]bool{
|
|
|
|
0: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
slashing: attesterSlashingForValIdx(2),
|
|
|
|
},
|
|
|
|
want: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{
|
|
|
|
pendingSlashingForValIdx(1),
|
|
|
|
pendingSlashingForValIdx(3),
|
|
|
|
},
|
|
|
|
included: map[uint64]bool{
|
|
|
|
0: true,
|
|
|
|
2: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-03-03 05:52:35 +00:00
|
|
|
{
|
|
|
|
name: "Removes from long pending list",
|
|
|
|
fields: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{
|
|
|
|
pendingSlashingForValIdx(1),
|
|
|
|
pendingSlashingForValIdx(2),
|
|
|
|
pendingSlashingForValIdx(3),
|
|
|
|
pendingSlashingForValIdx(4),
|
|
|
|
pendingSlashingForValIdx(5),
|
|
|
|
pendingSlashingForValIdx(6),
|
|
|
|
pendingSlashingForValIdx(7),
|
|
|
|
pendingSlashingForValIdx(8),
|
|
|
|
pendingSlashingForValIdx(9),
|
|
|
|
pendingSlashingForValIdx(10),
|
|
|
|
pendingSlashingForValIdx(11),
|
|
|
|
},
|
|
|
|
included: map[uint64]bool{
|
|
|
|
0: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
slashing: attesterSlashingForValIdx(6),
|
|
|
|
},
|
|
|
|
want: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{
|
|
|
|
pendingSlashingForValIdx(1),
|
|
|
|
pendingSlashingForValIdx(2),
|
|
|
|
pendingSlashingForValIdx(3),
|
|
|
|
pendingSlashingForValIdx(4),
|
|
|
|
pendingSlashingForValIdx(5),
|
|
|
|
pendingSlashingForValIdx(7),
|
|
|
|
pendingSlashingForValIdx(8),
|
|
|
|
pendingSlashingForValIdx(9),
|
|
|
|
pendingSlashingForValIdx(10),
|
|
|
|
pendingSlashingForValIdx(11),
|
|
|
|
},
|
|
|
|
included: map[uint64]bool{
|
|
|
|
0: true,
|
|
|
|
6: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-02-07 02:32:51 +00:00
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
p := &Pool{
|
|
|
|
pendingAttesterSlashing: tt.fields.pending,
|
|
|
|
included: tt.fields.included,
|
|
|
|
}
|
|
|
|
p.MarkIncludedAttesterSlashing(tt.args.slashing)
|
|
|
|
if len(p.pendingAttesterSlashing) != len(tt.want.pending) {
|
|
|
|
t.Fatalf(
|
|
|
|
"Mismatched lengths of pending list. Got %d, wanted %d.",
|
|
|
|
len(p.pendingAttesterSlashing),
|
|
|
|
len(tt.want.pending),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
for i := range p.pendingAttesterSlashing {
|
|
|
|
if !reflect.DeepEqual(p.pendingAttesterSlashing[i], tt.want.pending[i]) {
|
|
|
|
t.Errorf(
|
|
|
|
"Pending attester slashing at index %d does not match expected. Got=%v wanted=%v",
|
|
|
|
i,
|
|
|
|
p.pendingAttesterSlashing[i],
|
|
|
|
tt.want.pending[i],
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(p.included, tt.want.included) {
|
|
|
|
t.Errorf("Included map is not as expected. Got=%v wanted=%v", p.included, tt.want.included)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPool_PendingAttesterSlashings(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
pending []*PendingAttesterSlashing
|
|
|
|
}
|
2020-03-12 01:16:55 +00:00
|
|
|
conf := params.BeaconConfig()
|
|
|
|
conf.MaxAttesterSlashings = 1
|
|
|
|
params.OverrideBeaconConfig(conf)
|
|
|
|
beaconState, privKeys := testutil.DeterministicGenesisState(t, 64)
|
|
|
|
pendingSlashings := make([]*PendingAttesterSlashing, 20)
|
|
|
|
slashings := make([]*ethpb.AttesterSlashing, 20)
|
|
|
|
for i := 0; i < len(pendingSlashings); i++ {
|
|
|
|
sl, err := testutil.GenerateAttesterSlashingForValidator(beaconState, privKeys[i], uint64(i))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
pendingSlashings[i] = &PendingAttesterSlashing{
|
|
|
|
attesterSlashing: sl,
|
|
|
|
validatorToSlash: uint64(i),
|
|
|
|
}
|
|
|
|
slashings[i] = sl
|
|
|
|
}
|
2020-02-07 02:32:51 +00:00
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
want []*ethpb.AttesterSlashing
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Empty list",
|
|
|
|
fields: fields{
|
|
|
|
pending: []*PendingAttesterSlashing{},
|
|
|
|
},
|
|
|
|
want: []*ethpb.AttesterSlashing{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "All eligible",
|
|
|
|
fields: fields{
|
2020-03-12 01:16:55 +00:00
|
|
|
pending: pendingSlashings,
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
2020-03-12 01:16:55 +00:00
|
|
|
want: slashings[0:1],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Multiple indices",
|
|
|
|
fields: fields{
|
2020-03-12 01:16:55 +00:00
|
|
|
pending: pendingSlashings[3:6],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
2020-03-12 01:16:55 +00:00
|
|
|
want: slashings[3:4],
|
2020-02-07 02:32:51 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
p := &Pool{
|
|
|
|
pendingAttesterSlashing: tt.fields.pending,
|
|
|
|
}
|
2020-03-12 01:16:55 +00:00
|
|
|
if got := p.PendingAttesterSlashings(
|
|
|
|
context.Background(),
|
|
|
|
); !reflect.DeepEqual(tt.want, got) {
|
2020-02-07 02:32:51 +00:00
|
|
|
t.Errorf("Unexpected return from PendingAttesterSlashings, wanted %v, received %v", tt.want, got)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-12 01:16:55 +00:00
|
|
|
func TestPool_PendingAttesterSlashings_NoDuplicates(t *testing.T) {
|
2020-02-07 02:32:51 +00:00
|
|
|
conf := params.BeaconConfig()
|
|
|
|
conf.MaxAttesterSlashings = 2
|
|
|
|
params.OverrideBeaconConfig(conf)
|
2020-03-12 01:16:55 +00:00
|
|
|
beaconState, privKeys := testutil.DeterministicGenesisState(t, 64)
|
|
|
|
pendingSlashings := make([]*PendingAttesterSlashing, 3)
|
|
|
|
slashings := make([]*ethpb.AttesterSlashing, 3)
|
|
|
|
for i := 0; i < 2; i++ {
|
|
|
|
sl, err := testutil.GenerateAttesterSlashingForValidator(beaconState, privKeys[i], uint64(i))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
pendingSlashings[i] = &PendingAttesterSlashing{
|
|
|
|
attesterSlashing: sl,
|
|
|
|
validatorToSlash: uint64(i),
|
|
|
|
}
|
|
|
|
slashings[i] = sl
|
2020-02-07 02:32:51 +00:00
|
|
|
}
|
2020-03-12 01:16:55 +00:00
|
|
|
// We duplicate the last slashing.
|
|
|
|
pendingSlashings[2] = pendingSlashings[1]
|
|
|
|
slashings[2] = slashings[1]
|
|
|
|
p := &Pool{
|
|
|
|
pendingAttesterSlashing: pendingSlashings,
|
2020-02-07 02:32:51 +00:00
|
|
|
}
|
2020-03-12 01:16:55 +00:00
|
|
|
want := slashings[0:2]
|
|
|
|
if got := p.PendingAttesterSlashings(
|
|
|
|
context.Background(),
|
|
|
|
); !reflect.DeepEqual(want, got) {
|
|
|
|
t.Errorf("Unexpected return from PendingAttesterSlashings, wanted %v, received %v", want, got)
|
2020-02-07 02:32:51 +00:00
|
|
|
}
|
|
|
|
}
|