mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 19:21:19 +00:00
7cc32c4dda
* remove unused code * remove defer use in loop * Remove unused methods and constants * gofmt and gaz * nilness check * remove unused args * Add TODO for refactoring subscribeWithBase to remove unused arg. It seems too involved to include in this sweeping PR. https://github.com/prysmaticlabs/prysm/issues/7437 * replace empty slice declaration * Remove unnecessary type conversions * remove redundant type declaration * rename receivers to be consistent * Remove bootnode query tool. It is now obsolete by discv5 * Remove relay node. It is no longer used or supported * Revert "Remove relay node. It is no longer used or supported" This reverts commit 4bd7717334dad85ef4766ed9bc4da711fb5fa810. * Delete unused test directory * Delete unsupported gcp startup script * Delete old k8s script * build fixes * fix build * go mod tidy * revert slasher/db/kv/block_header.go * fix build * remove redundant nil check * combine func args Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Victor Farazdagi <simple.square@gmail.com>
49 lines
912 B
Go
49 lines
912 B
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestChainHead(t *testing.T) {
|
|
db := setupDB(t)
|
|
ctx := context.Background()
|
|
|
|
tests := []struct {
|
|
head *ethpb.ChainHead
|
|
}{
|
|
{
|
|
head: ðpb.ChainHead{
|
|
HeadSlot: 20,
|
|
HeadEpoch: 20,
|
|
FinalizedSlot: 10,
|
|
FinalizedEpoch: 10,
|
|
JustifiedSlot: 10,
|
|
JustifiedEpoch: 10,
|
|
},
|
|
},
|
|
{
|
|
head: ðpb.ChainHead{
|
|
HeadSlot: 1,
|
|
},
|
|
},
|
|
{
|
|
head: ðpb.ChainHead{
|
|
HeadBlockRoot: make([]byte, 32),
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
require.NoError(t, db.SaveChainHead(ctx, tt.head))
|
|
head, err := db.ChainHead(ctx)
|
|
require.NoError(t, err, "Failed to get block")
|
|
assert.NotNil(t, head)
|
|
assert.DeepEqual(t, tt.head, head)
|
|
}
|
|
}
|