mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-14 05:58:19 +00:00
e3de674c77
* ensure keystore file has all fields * fix tests * fix build * Merge branch 'master' into full-keystore-json * define wallet.CanUnlockAccounts() to determine secret keys cache initialization * Merge branch 'full-keystore-json' of github.com:prysmaticlabs/prysm into full-keystore-json * add can unlock accounts items * Merge refs/heads/master into full-keystore-json * Merge refs/heads/master into full-keystore-json * Merge refs/heads/master into full-keystore-json * Merge refs/heads/master into full-keystore-json
136 lines
3.8 KiB
Go
136 lines
3.8 KiB
Go
package v2
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path"
|
|
"strconv"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/bls"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
v2keymanager "github.com/prysmaticlabs/prysm/validator/keymanager/v2"
|
|
"github.com/prysmaticlabs/prysm/validator/keymanager/v2/direct"
|
|
mock "github.com/prysmaticlabs/prysm/validator/keymanager/v2/testing"
|
|
)
|
|
|
|
func TestListAccounts_DirectKeymanager(t *testing.T) {
|
|
walletDir, passwordsDir := setupWalletDir(t)
|
|
keymanagerKind := v2keymanager.Direct
|
|
ctx := context.Background()
|
|
wallet, err := CreateWallet(ctx, &WalletConfig{
|
|
PasswordsDir: passwordsDir,
|
|
WalletDir: walletDir,
|
|
KeymanagerKind: keymanagerKind,
|
|
})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
numAccounts := 5
|
|
accountNames := make([]string, numAccounts)
|
|
pubKeys := make([][48]byte, numAccounts)
|
|
password := "passw0rd2020%%"
|
|
depositDataForAccounts := make([][]byte, numAccounts)
|
|
for i := 0; i < numAccounts; i++ {
|
|
// Generate a new account name and write the account
|
|
// to disk using the wallet.
|
|
name, err := wallet.generateAccountName()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
accountNames[i] = name
|
|
// Generate a directory for the account name and
|
|
// write its associated password to disk.
|
|
accountPath := path.Join(wallet.accountsPath, name)
|
|
if err := os.MkdirAll(accountPath, directoryPermissions); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := wallet.writePasswordToFile(name, password); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Write the deposit data for each account.
|
|
depositData := []byte(strconv.Itoa(i))
|
|
depositDataForAccounts[i] = depositData
|
|
if err := wallet.WriteFileForAccount(ctx, name, direct.DepositTransactionFileName, depositData); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Write the creation timestamp for the account with unix timestamp 0.
|
|
if err := wallet.WriteFileForAccount(ctx, name, direct.TimestampFileName, []byte("0")); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Create public keys for the accounts.
|
|
key := bls.RandKey()
|
|
pubKeys[i] = bytesutil.ToBytes48(key.PublicKey().Marshal())
|
|
}
|
|
rescueStdout := os.Stdout
|
|
r, w, err := os.Pipe()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
os.Stdout = w
|
|
|
|
keymanager := &mock.MockKeymanager{
|
|
PublicKeys: pubKeys,
|
|
}
|
|
// We call the list direct keymanager accounts function.
|
|
if err := listDirectKeymanagerAccounts(
|
|
true, /* show deposit data */
|
|
wallet,
|
|
keymanager,
|
|
); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if err := w.Close(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
out, err := ioutil.ReadAll(r)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
os.Stdout = rescueStdout
|
|
|
|
// Assert the keymanager kind is printed to stdout.
|
|
stringOutput := string(out)
|
|
if !strings.Contains(stringOutput, wallet.KeymanagerKind().String()) {
|
|
t.Error("Did not find Keymanager kind in output")
|
|
}
|
|
|
|
// Assert the wallet and passwords paths are in stdout.
|
|
if !strings.Contains(stringOutput, wallet.accountsPath) {
|
|
t.Errorf("Did not find accounts path %s in output", wallet.accountsPath)
|
|
}
|
|
|
|
for i := 0; i < numAccounts; i++ {
|
|
accountName := accountNames[i]
|
|
// Assert the account name is printed to stdout.
|
|
if !strings.Contains(stringOutput, accountName) {
|
|
t.Errorf("Did not find account %s in output", accountName)
|
|
}
|
|
key := pubKeys[i]
|
|
depositData := depositDataForAccounts[i]
|
|
|
|
// Assert every public key is printed to stdout.
|
|
if !strings.Contains(stringOutput, fmt.Sprintf("%#x", key)) {
|
|
t.Errorf("Did not find pubkey %#x in output", key)
|
|
}
|
|
|
|
// Assert the deposit data for the account is printed to stdout.
|
|
if !strings.Contains(stringOutput, fmt.Sprintf("%#x", depositData)) {
|
|
t.Errorf("Did not find deposit data %#x in output", depositData)
|
|
}
|
|
|
|
// Assert the account creation time is displayed
|
|
if !strings.Contains(stringOutput, fmt.Sprintf("%v", time.Unix(0, 0).String())) {
|
|
t.Error("Did not display account creation timestamp")
|
|
}
|
|
}
|
|
}
|