prysm-pulse/tools/unencrypted-keys-gen/main_test.go
Raul Jordan a9a4bb9163
Move Shared/Testutil into Testing (#9659)
* move testutil

* util pkg

* build

* gaz

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-09-23 18:53:46 +00:00

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