mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-12 04:30:04 +00:00
f4a6864343
* prepare validator for web usage * wallet exists func in rpc server * only initialize wallet if feed exists and wallet also exists * enabling web via a feed * wallet creation works but needs to be able to recover from mnemonic via api * ensure logic works * Merge branch 'master' into validator-web * fix up tests * test file * wallet rpc tests * add all tests to create wallet * Merge branch 'master' into validator-web * imports * Merge branch 'validator-web' of github.com:prysmaticlabs/prysm into validator-web * Merge refs/heads/master into validator-web * Merge refs/heads/master into validator-web
98 lines
2.9 KiB
Go
98 lines
2.9 KiB
Go
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"crypto/rand"
|
|
"fmt"
|
|
"math/big"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
pb "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2"
|
|
"github.com/prysmaticlabs/prysm/shared/event"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
v2 "github.com/prysmaticlabs/prysm/validator/accounts/v2"
|
|
dbtest "github.com/prysmaticlabs/prysm/validator/db/testing"
|
|
v2keymanager "github.com/prysmaticlabs/prysm/validator/keymanager/v2"
|
|
)
|
|
|
|
func setupWalletDir(t testing.TB) string {
|
|
randPath, err := rand.Int(rand.Reader, big.NewInt(1000000))
|
|
require.NoError(t, err, "Could not generate random file path")
|
|
walletDir := filepath.Join(testutil.TempDir(), fmt.Sprintf("/%d", randPath), "wallet")
|
|
require.NoError(t, os.RemoveAll(walletDir), "Failed to remove directory")
|
|
t.Cleanup(func() {
|
|
require.NoError(t, os.RemoveAll(walletDir), "Failed to remove directory")
|
|
})
|
|
return walletDir
|
|
}
|
|
|
|
func TestServer_Signup_PasswordAlreadyExists(t *testing.T) {
|
|
valDB := dbtest.SetupDB(t, [][48]byte{})
|
|
ctx := context.Background()
|
|
ss := &Server{
|
|
valDB: valDB,
|
|
}
|
|
|
|
// Save a hash password pre-emptively to the database.
|
|
hashedPassword := []byte("2093402934902839489238492")
|
|
require.NoError(t, valDB.SaveHashedPasswordForAPI(ctx, hashedPassword))
|
|
|
|
// Attempt to signup despite already having a hashed password in the DB
|
|
// which should immediately fail.
|
|
strongPass := "29384283xasjasd32%%&*@*#*"
|
|
_, err := ss.Signup(ctx, &pb.AuthRequest{
|
|
Password: strongPass,
|
|
})
|
|
require.ErrorContains(t, "Validator already has a password set, cannot signup", err)
|
|
}
|
|
|
|
func TestServer_SignupAndLogin_RoundTrip(t *testing.T) {
|
|
valDB := dbtest.SetupDB(t, [][48]byte{})
|
|
ctx := context.Background()
|
|
|
|
localWalletDir := setupWalletDir(t)
|
|
defaultWalletPath = localWalletDir
|
|
strongPass := "29384283xasjasd32%%&*@*#*"
|
|
// We attempt to create the wallet.
|
|
_, err := v2.CreateWalletWithKeymanager(ctx, &v2.CreateWalletConfig{
|
|
WalletCfg: &v2.WalletConfig{
|
|
WalletDir: defaultWalletPath,
|
|
KeymanagerKind: v2keymanager.Direct,
|
|
WalletPassword: strongPass,
|
|
},
|
|
SkipMnemonicConfirm: true,
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
ss := &Server{
|
|
valDB: valDB,
|
|
walletInitializedFeed: new(event.Feed),
|
|
}
|
|
weakPass := "password"
|
|
_, err = ss.Signup(ctx, &pb.AuthRequest{
|
|
Password: weakPass,
|
|
})
|
|
require.ErrorContains(t, "Could not validate password input", err)
|
|
|
|
// We assert we are able to signup with a strong password.
|
|
_, err = ss.Signup(ctx, &pb.AuthRequest{
|
|
Password: strongPass,
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
// Assert we stored the hashed password.
|
|
hashedPass, err := valDB.HashedPasswordForAPI(ctx)
|
|
require.NoError(t, err)
|
|
assert.NotEqual(t, 0, len(hashedPass))
|
|
|
|
// We assert we are able to login.
|
|
_, err = ss.Login(ctx, &pb.AuthRequest{
|
|
Password: strongPass,
|
|
})
|
|
require.NoError(t, err)
|
|
}
|