mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
de82956088
* new interface methods * support proposer slashings * add in the new buckets * all crud for propoer slashings * attester slashings complete * all slashings crud done * right comment * deposit contract tests pass * delete out of scope methods * conform old beacon DB * comment * include interface implementations * deprecations * pass lint
50 lines
1.1 KiB
Go
50 lines
1.1 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_VoluntaryExits_CRUD(t *testing.T) {
|
|
db := setupDB(t)
|
|
defer teardownDB(t, db)
|
|
ctx := context.Background()
|
|
exit := ðpb.VoluntaryExit{
|
|
Epoch: 5,
|
|
}
|
|
exitRoot, err := ssz.SigningRoot(exit)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
retrieved, err := db.VoluntaryExit(ctx, exitRoot)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if retrieved != nil {
|
|
t.Errorf("Expected nil voluntary exit, received %v", retrieved)
|
|
}
|
|
if err := db.SaveVoluntaryExit(ctx, exit); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !db.HasVoluntaryExit(ctx, exitRoot) {
|
|
t.Error("Expected voluntary exit to exist in the db")
|
|
}
|
|
retrieved, err = db.VoluntaryExit(ctx, exitRoot)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !proto.Equal(exit, retrieved) {
|
|
t.Errorf("Wanted %v, received %v", exit, retrieved)
|
|
}
|
|
if err := db.DeleteVoluntaryExit(ctx, exitRoot); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if db.HasVoluntaryExit(ctx, exitRoot) {
|
|
t.Error("Expected voluntary exit to have been deleted from the db")
|
|
}
|
|
}
|