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>
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package interop_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/bazelbuild/rules_go/go/tools/bazel"
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
"github.com/go-yaml/yaml"
|
|
"github.com/prysmaticlabs/prysm/v3/runtime/interop"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
|
)
|
|
|
|
type TestCase struct {
|
|
Privkey string `yaml:"privkey"`
|
|
}
|
|
|
|
type KeyTest struct {
|
|
TestCases []*TestCase `yaml:"test_cases"`
|
|
}
|
|
|
|
func TestKeyGenerator(t *testing.T) {
|
|
path, err := bazel.Runfile("keygen_test_vector.yaml")
|
|
require.NoError(t, err)
|
|
file, err := os.ReadFile(path)
|
|
require.NoError(t, err)
|
|
testCases := &KeyTest{}
|
|
require.NoError(t, yaml.Unmarshal(file, testCases))
|
|
priv, _, err := interop.DeterministicallyGenerateKeys(0, 1000)
|
|
require.NoError(t, err)
|
|
// cross-check with the first 1000 keys generated from the python spec
|
|
for i, key := range priv {
|
|
hexKey := testCases.TestCases[i].Privkey
|
|
nKey, err := hexutil.Decode("0x" + hexKey)
|
|
if err != nil {
|
|
t.Error(err)
|
|
continue
|
|
}
|
|
assert.DeepEqual(t, key.Marshal(), nKey)
|
|
}
|
|
}
|