prysm-pulse/slasher/db/attester_slashings_test.go
shayzluf 0b35743d2c
Attester proposer slashing store (#4315)
* Merge branch 'master' of github.com:prysmaticlabs/prysm into update_validators

# Conflicts:
#	slasher/flags/flags.go
#	slasher/main.go
#	slasher/service/data_update.go
#	slasher/service/service.go
#	slasher/service/service_test.go

* proposal and attester store

* day to status

* comment change

* one bucket

* Merge branch 'master' of github.com:prysmaticlabs/prysm into attester_proposer_slashing_store
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.

added comments

* comment

* typo fix

* raul review fix

* raul review fix full

* nishant feedback

* test fix

* fix tests and remove update gofmt goimports

* remove blank line in imports

* nishant fixes

* comment and fir delete proposer slashings

* avoid marshal twice

* remove space

* Update slasher/db/attester_slashings.go

Co-Authored-By: terence tsao <terence@prysmaticlabs.com>

* terence feedback

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
Co-authored-by: terence tsao <terence@prysmaticlabs.com>
2020-01-14 07:43:25 +05:30

125 lines
3.2 KiB
Go

package db
import (
"reflect"
"testing"
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
)
func TestStore_AttesterSlashingNilBucket(t *testing.T) {
db := SetupSlasherDB(t)
defer TeardownSlasherDB(t, db)
as := &ethpb.AttesterSlashing{Attestation_1: &ethpb.IndexedAttestation{Signature: []byte("hello")}}
has, _, err := db.HasAttesterSlashing(as)
if err != nil {
t.Fatalf("HasAttesterSlashing should not return error: %v", err)
}
if has {
t.Fatal("HasAttesterSlashing should return false")
}
p, err := db.AttesterSlashings(SlashingStatus(Active))
if err != nil {
t.Fatalf("failed to get attester 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_SaveAttesterSlashing(t *testing.T) {
db := SetupSlasherDB(t)
defer TeardownSlasherDB(t, db)
tests := []struct {
ss SlashingStatus
as *ethpb.AttesterSlashing
}{
{
ss: Active,
as: &ethpb.AttesterSlashing{Attestation_1: &ethpb.IndexedAttestation{Signature: []byte("hello")}},
},
{
ss: Included,
as: &ethpb.AttesterSlashing{Attestation_1: &ethpb.IndexedAttestation{Signature: []byte("hello2")}},
},
{
ss: Reverted,
as: &ethpb.AttesterSlashing{Attestation_1: &ethpb.IndexedAttestation{Signature: []byte("hello3")}},
},
}
for _, tt := range tests {
err := db.SaveAttesterSlashing(tt.ss, tt.as)
if err != nil {
t.Fatalf("save attester slashing failed: %v", err)
}
attesterSlashings, err := db.AttesterSlashings(tt.ss)
if err != nil {
t.Fatalf("failed to get attester slashings: %v", err)
}
if attesterSlashings == nil || !reflect.DeepEqual(attesterSlashings[0], tt.as) {
t.Fatalf("attester slashing: %v should be part of attester slashings response: %v", tt.as, attesterSlashings)
}
}
}
func TestStore_UpdateAttesterSlashingStatus(t *testing.T) {
db := SetupSlasherDB(t)
defer TeardownSlasherDB(t, db)
tests := []struct {
ss SlashingStatus
as *ethpb.AttesterSlashing
}{
{
ss: Active,
as: &ethpb.AttesterSlashing{Attestation_1: &ethpb.IndexedAttestation{Signature: []byte("hello")}},
},
{
ss: Active,
as: &ethpb.AttesterSlashing{Attestation_1: &ethpb.IndexedAttestation{Signature: []byte("hello2")}},
},
{
ss: Active,
as: &ethpb.AttesterSlashing{Attestation_1: &ethpb.IndexedAttestation{Signature: []byte("hello3")}},
},
}
for _, tt := range tests {
err := db.SaveAttesterSlashing(tt.ss, tt.as)
if err != nil {
t.Fatalf("save attester slashing failed: %v", err)
}
}
for _, tt := range tests {
has, st, err := db.HasAttesterSlashing(tt.as)
if err != nil {
t.Fatalf("failed to get attester slashing: %v", err)
}
if !has {
t.Fatalf("failed to find attester slashing: %v", tt.as)
}
if st != tt.ss {
t.Fatalf("failed to find attester slashing with the correct status: %v", tt.as)
}
err = db.SaveAttesterSlashing(SlashingStatus(Included), tt.as)
has, st, err = db.HasAttesterSlashing(tt.as)
if err != nil {
t.Fatalf("failed to get attester slashing: %v", err)
}
if !has {
t.Fatalf("failed to find attester slashing: %v", tt.as)
}
if st != Included {
t.Fatalf("failed to find attester slashing with the correct status: %v", tt.as)
}
}
}