mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
a81c863ddb
* rename accounts v2 * rename keymanager and fix imports * rename accounts-v2 instances * imports * build * build fix * deepsource * fix up broken aliases * imports * gaz * Update validator/accounts/accounts_import_test.go Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com> * fmt Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com>
81 lines
2.4 KiB
Go
81 lines
2.4 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/fileutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
"github.com/prysmaticlabs/prysm/validator/accounts"
|
|
"github.com/prysmaticlabs/prysm/validator/accounts/wallet"
|
|
dbtest "github.com/prysmaticlabs/prysm/validator/db/testing"
|
|
"github.com/prysmaticlabs/prysm/validator/keymanager"
|
|
)
|
|
|
|
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.MkdirAll(walletDir, os.ModePerm))
|
|
t.Cleanup(func() {
|
|
require.NoError(t, os.RemoveAll(walletDir), "Failed to remove directory")
|
|
})
|
|
return walletDir
|
|
}
|
|
|
|
func TestServer_SignupAndLogin_RoundTrip(t *testing.T) {
|
|
valDB := dbtest.SetupDB(t, [][48]byte{})
|
|
ctx := context.Background()
|
|
|
|
localWalletDir := setupWalletDir(t)
|
|
defaultWalletPath = localWalletDir
|
|
strongPass := "29384283xasjasd32%%&*@*#*"
|
|
|
|
ss := &Server{
|
|
valDB: valDB,
|
|
walletInitializedFeed: new(event.Feed),
|
|
walletDir: defaultWalletPath,
|
|
}
|
|
weakPass := "password"
|
|
_, err := ss.Signup(ctx, &pb.AuthRequest{
|
|
Password: weakPass,
|
|
})
|
|
require.ErrorContains(t, "Could not validate wallet 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.
|
|
passwordHashExists := fileutil.FileExists(filepath.Join(defaultWalletPath, wallet.HashedPasswordFileName))
|
|
assert.Equal(t, true, passwordHashExists)
|
|
|
|
// We attempt to create the wallet.
|
|
_, err = accounts.CreateWalletWithKeymanager(ctx, &accounts.CreateWalletConfig{
|
|
WalletCfg: &wallet.Config{
|
|
WalletDir: defaultWalletPath,
|
|
KeymanagerKind: keymanager.Derived,
|
|
WalletPassword: strongPass,
|
|
},
|
|
SkipMnemonicConfirm: true,
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
// We assert we are able to login.
|
|
_, err = ss.Login(ctx, &pb.AuthRequest{
|
|
Password: strongPass,
|
|
})
|
|
require.NoError(t, err)
|
|
}
|