mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
62 lines
1.7 KiB
Go
62 lines
1.7 KiB
Go
|
package spectest
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"encoding/binary"
|
||
|
"encoding/hex"
|
||
|
"path"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/ghodss/yaml"
|
||
|
"github.com/prysmaticlabs/prysm/shared/bls"
|
||
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
||
|
)
|
||
|
|
||
|
func TestSignMessageYaml(t *testing.T) {
|
||
|
testFolders, testFolderPath := testutil.TestFolders(t, "general", "bls/sign_msg/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 := &SignMsgTest{}
|
||
|
if err := yaml.Unmarshal(file, test); err != nil {
|
||
|
t.Fatalf("Failed to unmarshal: %v", err)
|
||
|
}
|
||
|
|
||
|
pkBytes, err := hex.DecodeString(test.Input.Privkey[2:])
|
||
|
if err != nil {
|
||
|
t.Fatalf("Cannot decode string to bytes: %v", err)
|
||
|
}
|
||
|
sk, err := bls.SecretKeyFromBytes(pkBytes)
|
||
|
if err != nil {
|
||
|
t.Fatalf("Cannot unmarshal input to secret key: %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)
|
||
|
}
|
||
|
num := binary.LittleEndian.Uint64(domain)
|
||
|
sig := sk.Sign(msgBytes, num)
|
||
|
|
||
|
outputBytes, err := hex.DecodeString(test.Output[2:])
|
||
|
if err != nil {
|
||
|
t.Fatalf("Cannot decode string to bytes: %v", err)
|
||
|
}
|
||
|
if !bytes.Equal(outputBytes, sig.Marshal()) {
|
||
|
t.Logf("Domain=%d", domain)
|
||
|
t.Fatalf("Signature does not match the expected output. "+
|
||
|
"Expected %#x but received %#x", outputBytes, sig.Marshal())
|
||
|
}
|
||
|
t.Logf("Success. Domain=%d", domain)
|
||
|
})
|
||
|
}
|
||
|
}
|