mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47: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>
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package bls
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"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 TestAggregate(t *testing.T) {
|
|
t.Run("blst", testAggregate)
|
|
}
|
|
|
|
func testAggregate(t *testing.T) {
|
|
fNames, fContent := utils.RetrieveFiles("aggregate", t)
|
|
for i, folder := range fNames {
|
|
t.Run(folder, func(t *testing.T) {
|
|
test := &AggregateTest{}
|
|
require.NoError(t, yaml.Unmarshal(fContent[i], test))
|
|
var sigs []common.Signature
|
|
for _, s := range test.Input {
|
|
sigBytes, err := hex.DecodeString(s[2:])
|
|
require.NoError(t, err)
|
|
sig, err := bls.SignatureFromBytes(sigBytes)
|
|
require.NoError(t, err)
|
|
sigs = append(sigs, sig)
|
|
}
|
|
if len(test.Input) == 0 {
|
|
if test.Output != "" {
|
|
t.Fatalf("Output Aggregate is not of zero length:Output %s", test.Output)
|
|
}
|
|
return
|
|
}
|
|
sig := bls.AggregateSignatures(sigs)
|
|
outputBytes, err := hex.DecodeString(test.Output[2:])
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, outputBytes, sig.Marshal())
|
|
})
|
|
}
|
|
}
|