mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 18:21:20 +00:00
4f0bef929f
* change to herumi's bls * change alias * change to better * add benchmark * build * change to bazel fork * fix prefix * Merge branch 'master' of https://github.com/prysmaticlabs/geth-sharding into herumiBLS * 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 * Merge branch 'master' of https://github.com/prysmaticlabs/geth-sharding into herumiBLS * fix serialization * comment * fix test * Merge branch 'master' of https://github.com/prysmaticlabs/geth-sharding into herumiBLS * fix to herumis latest version * fix test * fix benchmarks * Merge branch 'master' of https://github.com/prysmaticlabs/geth-sharding into herumiBLS * Merge branch 'master' of https://github.com/prysmaticlabs/geth-sharding into herumiBLS * 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 * Merge branch 'master' into herumiBLS * Merge branch 'master' of https://github.com/prysmaticlabs/geth-sharding into herumiBLS * Merge branch 'herumiBLS' of https://github.com/prysmaticlabs/geth-sharding into herumiBLS * remove old ref * use HashWithDomain functions * update to latest version * clean up * gaz * add back removed code * switch off pure * Merge branch 'master' of https://github.com/prysmaticlabs/geth-sharding into herumiBLS * use local repo * resolve docker issues * Merge branch 'master' of https://github.com/prysmaticlabs/geth-sharding into herumiBLS * fix build and tests * gaz * Merge branch 'master' into herumiBLS * Merge refs/heads/master into herumiBLS * Merge refs/heads/master into herumiBLS
68 lines
2.1 KiB
Go
68 lines
2.1 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
|
|
// HashG2Uncompressed in our local BLS API.
|
|
func TestMsgHashUncompressed(t *testing.T) {
|
|
t.Skip("The python uncompressed method does not match the go uncompressed method and this isn't very important")
|
|
testFolders, testFolderPath := testutil.TestFolders(t, "general", "bls/msg_hash_uncompressed/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 := &MsgHashUncompressedTest{}
|
|
if err := yaml.Unmarshal(file, test); err != nil {
|
|
t.Fatalf("Failed to unmarshal: %v", err)
|
|
}
|
|
|
|
domain, err := hex.DecodeString(test.Input.Domain[2:])
|
|
if err != nil {
|
|
t.Fatalf("Cannot decode string to bytes: %v", err)
|
|
}
|
|
msgBytes, err := hex.DecodeString(test.Input.Message[2:])
|
|
if err != nil {
|
|
t.Fatalf("Cannot decode string to bytes: %v", err)
|
|
}
|
|
hash := bls.HashWithDomain(
|
|
bytesutil.ToBytes32(msgBytes),
|
|
bytesutil.ToBytes8(domain),
|
|
)
|
|
sig := bls2.HashAndMapToSignature(hash)
|
|
uncompressed := sig.Serialize()
|
|
|
|
var buf []byte
|
|
for _, outputStrings := range test.Output {
|
|
for _, innerString := range outputStrings {
|
|
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, uncompressed[:]) {
|
|
t.Logf("Domain=%d", domain)
|
|
t.Logf("Message=%#x", msgBytes)
|
|
t.Fatalf("Hash does not match the expected output. "+
|
|
"Expected %#x but received %#x", buf, uncompressed)
|
|
}
|
|
t.Logf("Success. Domain=%d", domain)
|
|
})
|
|
}
|
|
}
|