2020-11-20 18:06:12 +00:00
|
|
|
package kv
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
2021-09-21 19:59:25 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
2021-09-23 18:53:46 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
2020-11-20 18:06:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|