mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
24 lines
602 B
Go
24 lines
602 B
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
"github.com/prysmaticlabs/prysm/v5/tools/unencrypted-keys-gen/keygen"
|
|
)
|
|
|
|
func TestSavesUnencryptedKeys(t *testing.T) {
|
|
keys := 2
|
|
numKeys = &keys
|
|
ctnr := generateUnencryptedKeys(0 /* start index */)
|
|
buf := new(bytes.Buffer)
|
|
require.NoError(t, keygen.SaveUnencryptedKeysToFile(buf, ctnr))
|
|
enc := buf.Bytes()
|
|
dec := &keygen.UnencryptedKeysContainer{}
|
|
require.NoError(t, json.Unmarshal(enc, dec))
|
|
assert.DeepEqual(t, ctnr, dec)
|
|
}
|