prysm-pulse/shared/bls/spectest/msg_hash_compressed_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

73 lines
2.0 KiB
Go

package spectest
import (
"bytes"
"encoding/hex"
"path"
"testing"
"github.com/ghodss/yaml"
bls2 "github.com/herumi/bls-eth-go-binary/bls"
"github.com/prysmaticlabs/prysm/shared/bls"
"github.com/prysmaticlabs/prysm/shared/bytesutil"
"github.com/prysmaticlabs/prysm/shared/testutil"
)
// Note: This actually tests the underlying library as we don't have a need for
// HashG2Compressed in our local BLS API.
func TestMsgHashCompressed(t *testing.T) {
testFolders, testFolderPath := testutil.TestFolders(t, "general", "bls/msg_hash_compressed/small")
for _, folder := range testFolders {
t.Run(folder.Name(), func(t *testing.T) {
file, err := testutil.BazelFileBytes(path.Join(testFolderPath, folder.Name(), "data.yaml"))
if err != nil {
t.Fatalf("Failed to read file: %v", err)
}
test := &MsgHashCompressedTest{}
if err := yaml.Unmarshal(file, test); err != nil {
t.Fatalf("Failed to unmarshal: %v", err)
}
msgBytes, err := hex.DecodeString(test.Input.Message[2:])
if err != nil {
t.Fatalf("Cannot decode string to bytes: %v", err)
}
domain, err := hex.DecodeString(test.Input.Domain[2:])
if err != nil {
t.Fatalf("Cannot decode string to bytes: %v", err)
}
hash := bls.HashWithDomain(
bytesutil.ToBytes32(msgBytes),
bytesutil.ToBytes8(domain),
)
g2Point := &bls2.G2{}
fp2Point := &bls2.Fp2{}
err = fp2Point.Deserialize(hash)
if err != nil {
t.Fatal(err)
}
err = bls2.MapToG2(g2Point, fp2Point)
if err != nil {
t.Fatal(err)
}
compressedHash := g2Point.Serialize()
var buf []byte
for _, innerString := range test.Output {
slice, err := hex.DecodeString(innerString[2:])
if err != nil {
t.Fatalf("Cannot decode string to bytes: %v", err)
}
buf = append(buf, slice...)
}
if !bytes.Equal(buf, compressedHash[:]) {
t.Logf("Domain=%d", domain)
t.Fatalf("Hash does not match the expected output. "+
"Expected %#x but received %#x", buf, compressedHash)
}
t.Logf("Success. Domain=%d", domain)
})
}
}