prysm-pulse/slasher/db/kv/chain_data_test.go
2020-03-19 14:46:44 -07:00

57 lines
1.0 KiB
Go

package kv
import (
"context"
"flag"
"testing"
"github.com/gogo/protobuf/proto"
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
"gopkg.in/urfave/cli.v2"
)
func TestChainHead(t *testing.T) {
app := &cli.App{}
set := flag.NewFlagSet("test", 0)
db := setupDB(t, cli.NewContext(app, set, nil))
ctx := context.Background()
tests := []struct {
head *ethpb.ChainHead
}{
{
head: &ethpb.ChainHead{
HeadSlot: 20,
HeadEpoch: 20,
FinalizedSlot: 10,
FinalizedEpoch: 10,
JustifiedSlot: 10,
JustifiedEpoch: 10,
},
},
{
head: &ethpb.ChainHead{
HeadSlot: 1,
},
},
{
head: &ethpb.ChainHead{
HeadBlockRoot: make([]byte, 32),
},
},
}
for _, tt := range tests {
if err := db.SaveChainHead(ctx, tt.head); err != nil {
t.Fatal(err)
}
head, err := db.ChainHead(ctx)
if err != nil {
t.Fatalf("failed to get block: %v", err)
}
if head == nil || !proto.Equal(head, tt.head) {
t.Errorf("Expected %v, got %v", tt.head, head)
}
}
}