mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
45 lines
1.0 KiB
Go
45 lines
1.0 KiB
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
fieldparams "github.com/prysmaticlabs/prysm/v3/config/fieldparams"
|
|
"github.com/prysmaticlabs/prysm/v3/config/params"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
|
)
|
|
|
|
func TestStore_GenesisValidatorsRoot_ReadAndWrite(t *testing.T) {
|
|
ctx := context.Background()
|
|
db := setupDB(t, [][fieldparams.BLSPubkeyLength]byte{})
|
|
tests := []struct {
|
|
name string
|
|
want []byte
|
|
write []byte
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "empty then write",
|
|
want: nil,
|
|
write: params.BeaconConfig().ZeroHash[:],
|
|
},
|
|
{
|
|
name: "zero then overwrite rejected",
|
|
want: params.BeaconConfig().ZeroHash[:],
|
|
write: []byte{5},
|
|
wantErr: true,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, err := db.GenesisValidatorsRoot(ctx)
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, tt.want, got)
|
|
err = db.SaveGenesisValidatorsRoot(ctx, tt.write)
|
|
if (err != nil) != tt.wantErr {
|
|
t.Errorf("GenesisValidatorsRoot() error = %v, wantErr %v", err, tt.wantErr)
|
|
}
|
|
})
|
|
}
|
|
}
|