mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-29 06:37:17 +00:00
104 lines
2.5 KiB
Go
104 lines
2.5 KiB
Go
|
package kv
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/gogo/protobuf/proto"
|
||
|
"github.com/prysmaticlabs/go-ssz"
|
||
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
||
|
)
|
||
|
|
||
|
func TestStore_ProposerSlashing_CRUD(t *testing.T) {
|
||
|
db := setupDB(t)
|
||
|
defer teardownDB(t, db)
|
||
|
ctx := context.Background()
|
||
|
prop := ðpb.ProposerSlashing{
|
||
|
ProposerIndex: 5,
|
||
|
}
|
||
|
slashingRoot, err := ssz.HashTreeRoot(prop)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
retrieved, err := db.ProposerSlashing(ctx, slashingRoot)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if retrieved != nil {
|
||
|
t.Errorf("Expected nil proposer slashing, received %v", retrieved)
|
||
|
}
|
||
|
if err := db.SaveProposerSlashing(ctx, prop); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if !db.HasProposerSlashing(ctx, slashingRoot) {
|
||
|
t.Error("Expected proposer slashing to exist in the db")
|
||
|
}
|
||
|
retrieved, err = db.ProposerSlashing(ctx, slashingRoot)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if !proto.Equal(prop, retrieved) {
|
||
|
t.Errorf("Wanted %v, received %v", prop, retrieved)
|
||
|
}
|
||
|
if err := db.DeleteProposerSlashing(ctx, slashingRoot); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if db.HasProposerSlashing(ctx, slashingRoot) {
|
||
|
t.Error("Expected proposer slashing to have been deleted from the db")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestStore_AttesterSlashing_CRUD(t *testing.T) {
|
||
|
db := setupDB(t)
|
||
|
defer teardownDB(t, db)
|
||
|
ctx := context.Background()
|
||
|
att := ðpb.AttesterSlashing{
|
||
|
Attestation_1: ðpb.IndexedAttestation{
|
||
|
Data: ðpb.AttestationData{
|
||
|
BeaconBlockRoot: make([]byte, 32),
|
||
|
Crosslink: ðpb.Crosslink{
|
||
|
Shard: 5,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
Attestation_2: ðpb.IndexedAttestation{
|
||
|
Data: ðpb.AttestationData{
|
||
|
BeaconBlockRoot: make([]byte, 32),
|
||
|
Crosslink: ðpb.Crosslink{
|
||
|
Shard: 7,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
slashingRoot, err := ssz.HashTreeRoot(att)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
retrieved, err := db.AttesterSlashing(ctx, slashingRoot)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if retrieved != nil {
|
||
|
t.Errorf("Expected nil attester slashing, received %v", retrieved)
|
||
|
}
|
||
|
if err := db.SaveAttesterSlashing(ctx, att); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if !db.HasAttesterSlashing(ctx, slashingRoot) {
|
||
|
t.Error("Expected attester slashing to exist in the db")
|
||
|
}
|
||
|
retrieved, err = db.AttesterSlashing(ctx, slashingRoot)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if !proto.Equal(att, retrieved) {
|
||
|
t.Errorf("Wanted %v, received %v", att, retrieved)
|
||
|
}
|
||
|
if err := db.DeleteAttesterSlashing(ctx, slashingRoot); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if db.HasAttesterSlashing(ctx, slashingRoot) {
|
||
|
t.Error("Expected attester slashing to have been deleted from the db")
|
||
|
}
|
||
|
}
|