prysm-pulse/tools/unencrypted-keys-gen/main_test.go
terence 5a66807989
Update to V5 (#13622)
* 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>
2024-02-15 05:46:47 +00:00

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)
}