prysm-pulse/crypto/keystore/key_test.go

72 lines
1.7 KiB
Go
Raw Normal View History

package keystore
import (
"bytes"
"os"
"path"
"testing"
"github.com/pborman/uuid"
"github.com/prysmaticlabs/prysm/v5/crypto/bls"
"github.com/prysmaticlabs/prysm/v5/encoding/bytesutil"
"github.com/prysmaticlabs/prysm/v5/testing/require"
)
func TestMarshalAndUnmarshal(t *testing.T) {
testID := uuid.NewRandom()
blsKey, err := bls.RandKey()
require.NoError(t, err)
Change BLS to Herumi Again (#4181) * 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
2019-12-03 20:29:05 +00:00
key := &Key{
ID: testID,
SecretKey: blsKey,
PublicKey: blsKey.PublicKey(),
}
marshalledObject, err := key.MarshalJSON()
require.NoError(t, err)
newKey := &Key{
ID: []byte{},
SecretKey: blsKey,
PublicKey: blsKey.PublicKey(),
}
err = newKey.UnmarshalJSON(marshalledObject)
require.NoError(t, err)
require.Equal(t, true, bytes.Equal(newKey.ID, testID))
}
func TestStoreRandomKey(t *testing.T) {
ks := &Keystore{
keysDirPath: path.Join(t.TempDir(), "keystore"),
scryptN: LightScryptN,
scryptP: LightScryptP,
}
require.NoError(t, storeNewRandomKey(ks, "password"))
}
func TestNewKeyFromBLS(t *testing.T) {
b := []byte("hi")
b32 := bytesutil.ToBytes32(b)
blskey, err := bls.SecretKeyFromBytes(b32[:])
require.NoError(t, err)
key, err := NewKeyFromBLS(blskey)
require.NoError(t, err)
expected := blskey.Marshal()
require.Equal(t, true, bytes.Equal(expected, key.SecretKey.Marshal()))
_, err = NewKey()
require.NoError(t, err)
}
func TestWriteFile(t *testing.T) {
tempDir := path.Join(t.TempDir(), "keystore", "file")
testKeystore := []byte{'t', 'e', 's', 't'}
err := writeKeyFile(tempDir, testKeystore)
require.NoError(t, err)
keystore, err := os.ReadFile(tempDir)
require.NoError(t, err)
require.Equal(t, true, bytes.Equal(keystore, testKeystore))
}