mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +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>
42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
package bls
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/ghodss/yaml"
|
|
"github.com/prysmaticlabs/prysm/v3/crypto/bls"
|
|
"github.com/prysmaticlabs/prysm/v3/crypto/bls/common"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/bls/utils"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
|
)
|
|
|
|
func TestDeserializationG1(t *testing.T) {
|
|
t.Run("blst", testDeserializationG1)
|
|
}
|
|
|
|
func testDeserializationG1(t *testing.T) {
|
|
fNames, fContent := utils.RetrieveFiles("deserialization_G1", t)
|
|
|
|
for i, file := range fNames {
|
|
content := fContent[i]
|
|
t.Run(file, func(t *testing.T) {
|
|
test := &DeserializationG1Test{}
|
|
require.NoError(t, yaml.Unmarshal(content, test))
|
|
rawKey, err := hex.DecodeString(test.Input.Pubkey)
|
|
require.NoError(t, err)
|
|
|
|
_, err = bls.PublicKeyFromBytes(rawKey)
|
|
// Exit early if we encounter an infinite key here.
|
|
if strings.Contains(file, "deserialization_succeeds_infinity_with_true_b_flag") &&
|
|
err == common.ErrInfinitePubKey {
|
|
t.Log("Success")
|
|
return
|
|
}
|
|
require.Equal(t, test.Output, err == nil)
|
|
t.Log("Success")
|
|
})
|
|
}
|
|
}
|