mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-15 22:48:19 +00:00
ade61717a4
* first version * cli context * fix service * starting change to ccache * ristretto cache * added test * test on evict * remove evict test * test onevict * comment for exported flag * update all span maps on load * fix setup db * span cache added to help flags * start save cache on exit * save cache to db before close * comment fix * fix flags * setup db new * data update from archive node * gaz * slashing detection on old attestations * un-export * rename * nishant feedback * workspace cr * lint fix * fix calls * start db * fix test * Update slasher/db/db.go Co-Authored-By: Nishant Das <nishdas93@gmail.com> * add flag * fix fail to start beacon client * mock beacon service * fix imports * gaz * goimports * add clear db flag * print finalized epoch * better msg * Update slasher/db/attester_slashings.go Co-Authored-By: Raul Jordan <raul@prysmaticlabs.com> * raul feedback * raul feedback * raul feedback * raul feedback * raul feedback * add detection in runtime * fix tests * raul feedbacks * raul feedback * raul feedback * goimports * Update beacon-chain/blockchain/process_attestation_helpers.go * Update beacon-chain/blockchain/receive_block.go * Update beacon-chain/core/blocks/block_operations_test.go * Update beacon-chain/core/blocks/block_operations.go * Update beacon-chain/core/epoch/epoch_processing.go * Update beacon-chain/sync/validate_aggregate_proof_test.go * Update shared/testutil/block.go * Update slasher/service/data_update.go * Update tools/blocktree/main.go * Update slasher/service/service.go * Update beacon-chain/core/epoch/precompute/attestation_test.go * Update beacon-chain/core/helpers/committee_test.go * Update beacon-chain/core/state/transition_test.go * Update beacon-chain/rpc/aggregator/server_test.go * Update beacon-chain/sync/validate_aggregate_proof.go * Update beacon-chain/rpc/validator/proposer_test.go * Update beacon-chain/blockchain/forkchoice/process_attestation.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update slasher/db/indexed_attestations.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update slasher/service/data_update.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * terence feedback * terence feedback * goimports Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Nishant Das <nish1993@hotmail.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
164 lines
4.1 KiB
Go
164 lines
4.1 KiB
Go
package db
|
|
|
|
import (
|
|
"flag"
|
|
"reflect"
|
|
"sort"
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
func TestStore_ProposerSlashingNilBucket(t *testing.T) {
|
|
app := cli.NewApp()
|
|
set := flag.NewFlagSet("test", 0)
|
|
ctx := cli.NewContext(app, set, nil)
|
|
db := SetupSlasherDB(t, ctx)
|
|
defer TeardownSlasherDB(t, db)
|
|
ps := ðpb.ProposerSlashing{ProposerIndex: 1}
|
|
has, _, err := db.HasProposerSlashing(ps)
|
|
if err != nil {
|
|
t.Fatalf("HasProposerSlashing should not return error: %v", err)
|
|
}
|
|
if has {
|
|
t.Fatal("HasProposerSlashing should return false")
|
|
}
|
|
|
|
p, err := db.ProposalSlashingsByStatus(SlashingStatus(Active))
|
|
if err != nil {
|
|
t.Fatalf("Failed to get proposer slashing: %v", err)
|
|
}
|
|
if p == nil || len(p) != 0 {
|
|
t.Fatalf("Get should return empty attester slashing array for a non existent key")
|
|
}
|
|
}
|
|
|
|
func TestStore_SaveProposerSlashing(t *testing.T) {
|
|
app := cli.NewApp()
|
|
set := flag.NewFlagSet("test", 0)
|
|
ctx := cli.NewContext(app, set, nil)
|
|
db := SetupSlasherDB(t, ctx)
|
|
defer TeardownSlasherDB(t, db)
|
|
tests := []struct {
|
|
ss SlashingStatus
|
|
ps *ethpb.ProposerSlashing
|
|
}{
|
|
{
|
|
ss: Active,
|
|
ps: ðpb.ProposerSlashing{ProposerIndex: 1},
|
|
},
|
|
{
|
|
ss: Included,
|
|
ps: ðpb.ProposerSlashing{ProposerIndex: 2},
|
|
},
|
|
{
|
|
ss: Reverted,
|
|
ps: ðpb.ProposerSlashing{ProposerIndex: 3},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
err := db.SaveProposerSlashing(tt.ss, tt.ps)
|
|
if err != nil {
|
|
t.Fatalf("Save proposer slashing failed: %v", err)
|
|
}
|
|
|
|
proposerSlashings, err := db.ProposalSlashingsByStatus(tt.ss)
|
|
if err != nil {
|
|
t.Fatalf("Failed to get proposer slashings: %v", err)
|
|
}
|
|
|
|
if proposerSlashings == nil || !reflect.DeepEqual(proposerSlashings[0], tt.ps) {
|
|
t.Fatalf("Proposer slashing: %v should be part of proposer slashings response: %v", tt.ps, proposerSlashings)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
func TestStore_UpdateProposerSlashingStatus(t *testing.T) {
|
|
app := cli.NewApp()
|
|
set := flag.NewFlagSet("test", 0)
|
|
ctx := cli.NewContext(app, set, nil)
|
|
db := SetupSlasherDB(t, ctx)
|
|
defer TeardownSlasherDB(t, db)
|
|
tests := []struct {
|
|
ss SlashingStatus
|
|
ps *ethpb.ProposerSlashing
|
|
}{
|
|
{
|
|
ss: Active,
|
|
ps: ðpb.ProposerSlashing{ProposerIndex: 1},
|
|
},
|
|
{
|
|
ss: Active,
|
|
ps: ðpb.ProposerSlashing{ProposerIndex: 2},
|
|
},
|
|
{
|
|
ss: Active,
|
|
ps: ðpb.ProposerSlashing{ProposerIndex: 3},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
err := db.SaveProposerSlashing(tt.ss, tt.ps)
|
|
if err != nil {
|
|
t.Fatalf("Save proposer slashing failed: %v", err)
|
|
}
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
has, st, err := db.HasProposerSlashing(tt.ps)
|
|
if err != nil {
|
|
t.Fatalf("Failed to get proposer slashing: %v", err)
|
|
}
|
|
if !has {
|
|
t.Fatalf("Failed to find proposer slashing: %v", tt.ps)
|
|
}
|
|
if st != tt.ss {
|
|
t.Fatalf("Failed to find proposer slashing with the correct status: %v", tt.ps)
|
|
}
|
|
|
|
err = db.SaveProposerSlashing(SlashingStatus(Included), tt.ps)
|
|
has, st, err = db.HasProposerSlashing(tt.ps)
|
|
if err != nil {
|
|
t.Fatalf("Failed to get proposer slashing: %v", err)
|
|
}
|
|
if !has {
|
|
t.Fatalf("Failed to find proposer slashing: %v", tt.ps)
|
|
}
|
|
if st != Included {
|
|
t.Fatalf("Failed to find proposer slashing with the correct status: %v", tt.ps)
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func TestStore_SaveProposerSlashings(t *testing.T) {
|
|
app := cli.NewApp()
|
|
set := flag.NewFlagSet("test", 0)
|
|
ctx := cli.NewContext(app, set, nil)
|
|
db := SetupSlasherDB(t, ctx)
|
|
defer TeardownSlasherDB(t, db)
|
|
ps := []*ethpb.ProposerSlashing{
|
|
{ProposerIndex: 1},
|
|
{ProposerIndex: 2},
|
|
{ProposerIndex: 3},
|
|
}
|
|
err := db.SaveProposeerSlashings(Active, ps)
|
|
if err != nil {
|
|
t.Fatalf("Save proposer slashings failed: %v", err)
|
|
}
|
|
proposerSlashings, err := db.ProposalSlashingsByStatus(Active)
|
|
if err != nil {
|
|
t.Fatalf("Failed to get proposer slashings: %v", err)
|
|
}
|
|
sort.SliceStable(proposerSlashings, func(i, j int) bool {
|
|
return proposerSlashings[i].ProposerIndex < proposerSlashings[j].ProposerIndex
|
|
})
|
|
if proposerSlashings == nil || !reflect.DeepEqual(proposerSlashings, ps) {
|
|
t.Fatalf("Proposer slashing: %v should be part of proposer slashings response: %v", ps, proposerSlashings)
|
|
}
|
|
}
|