mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
b030771174
* 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 * 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 * nishant feedback * export Config * fix imports * fix imports * fix imports * Update slasher/service/service.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update slasher/service/service.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update slasher/service/service.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update slasher/service/service.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * remove mod print 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>
136 lines
3.2 KiB
Go
136 lines
3.2 KiB
Go
package db
|
|
|
|
import (
|
|
"flag"
|
|
"reflect"
|
|
"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)
|
|
}
|
|
|
|
}
|
|
|
|
}
|