prysm-pulse/shared/bls/spectest/aggregate_pubkeys_test.go
Nishant Das 24583864b4 Change BLS Library to Herumi (#3752)
* change to herumi's bls

* change alias

* change to better

* add benchmark

* build

* change to bazel fork

* fix prefix

* make it work with library

* update to latest

* change again

* add import

* update to latest

* add sha commit

* new static lib with groups swapped

* using herumis new lib

* fix dep paths in c headers

* update again

* new changes

* fix commit

* fix serialization

* comment

* fix test

* fix to herumis latest version

* fix test

* fix benchmarks

* add new workspace

* change commit and remove init

* get test to pass

* remove parameter

* remove reverse byte order

* make gazelle happy

* set pure to off

* fix failing tests

* remove old ref

* use HashWithDomain functions

* update to latest version

* clean up

* gaz

* add back removed code

* switch off pure
2019-11-14 09:51:42 -06:00

53 lines
1.3 KiB
Go

package spectest
import (
"bytes"
"encoding/hex"
"testing"
"github.com/ghodss/yaml"
"github.com/prysmaticlabs/prysm/shared/bls"
"github.com/prysmaticlabs/prysm/shared/testutil"
)
func TestAggregatePubkeysYaml(t *testing.T) {
file, err := testutil.BazelFileBytes("tests/general/phase0/bls/aggregate_pubkeys/small/agg_pub_keys/data.yaml")
if err != nil {
t.Fatalf("Failed to read file: %v", err)
}
test := &AggregatePubkeysTest{}
if err := yaml.Unmarshal(file, test); err != nil {
t.Fatalf("Failed to unmarshal: %v", err)
}
pubBytes, err := hex.DecodeString(test.Input[0][2:])
if err != nil {
t.Fatalf("Cannot decode string to bytes: %v", err)
}
pk, err := bls.PublicKeyFromBytes(pubBytes)
if err != nil {
t.Fatal(err)
}
for _, pk2 := range test.Input[1:] {
pubBytes2, err := hex.DecodeString(pk2[2:])
if err != nil {
t.Fatalf("Cannot decode string to bytes: %v", err)
}
p, err := bls.PublicKeyFromBytes(pubBytes2)
if err != nil {
t.Fatal(err)
}
pk.Aggregate(p)
}
outputBytes, err := hex.DecodeString(test.Output[2:])
if err != nil {
t.Fatalf("Cannot decode string to bytes: %v", err)
}
if !bytes.Equal(outputBytes, pk.Marshal()) {
t.Fatalf("Output does not equal marshaled aggregated public "+
"key bytes. wanted %#x but got %#x", outputBytes, pk.Marshal())
}
}