mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
a9a4bb9163
* move testutil * util pkg * build * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
24 lines
593 B
Go
24 lines
593 B
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
"github.com/prysmaticlabs/prysm/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)
|
|
}
|