mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-10 07:58:22 -05:00
* Migrate Prysm repo to Offchain Labs organization ahead of Pectra upgrade v6 * Replace prysmaticlabs with OffchainLabs on general markdowns * Update mock * Gazelle and add mock.go to excluded generated mock file
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package bls
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"testing"
|
|
|
|
"github.com/OffchainLabs/prysm/v6/crypto/bls"
|
|
"github.com/OffchainLabs/prysm/v6/crypto/bls/common"
|
|
"github.com/OffchainLabs/prysm/v6/testing/bls/utils"
|
|
"github.com/OffchainLabs/prysm/v6/testing/require"
|
|
"github.com/ghodss/yaml"
|
|
)
|
|
|
|
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())
|
|
})
|
|
}
|
|
}
|