mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
a9a4bb9163
* move testutil * util pkg * build * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
44 lines
964 B
Go
44 lines
964 B
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
)
|
|
|
|
func TestStore_GenesisValidatorsRoot_ReadAndWrite(t *testing.T) {
|
|
ctx := context.Background()
|
|
db := setupDB(t, [][48]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("GenesisValidatorRoot() error = %v, wantErr %v", err, tt.wantErr)
|
|
}
|
|
})
|
|
}
|
|
}
|