Test for wallet_create cli command
This commit is contained in:
parent
776be1370d
commit
546ff6ca5f
1 changed files with 37 additions and 0 deletions
37
systest/cli_wallet_create.sh
Executable file
37
systest/cli_wallet_create.sh
Executable file
|
@ -0,0 +1,37 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
DATADIR=data.systest
|
||||
|
||||
SEED=CEEDCEEDCEEDCEEDCEEDCEEDCEEDCEEDCEEDCEEDCEEDCEEDCEEDCEEDCEEDCEED
|
||||
|
||||
# the caller should set the env var NANO_NODE_EXE to point to the nano_node executable
|
||||
# if NANO_NODE_EXE is unser ot empty then "../../build/nano_node" is used
|
||||
NANO_NODE_EXE=${NANO_NODE_EXE:-../../build/nano_node}
|
||||
|
||||
clean_data_dir() {
|
||||
rm -f $DATADIR/log/log_*.log
|
||||
rm -f $DATADIR/wallets.ldb*
|
||||
rm -f $DATADIR/data.ldb*
|
||||
rm -f $DATADIR/config-*.toml
|
||||
}
|
||||
|
||||
mkdir -p $DATADIR/log
|
||||
clean_data_dir
|
||||
|
||||
# initialise data directory
|
||||
$NANO_NODE_EXE --initialize --data_path $DATADIR
|
||||
|
||||
# create a wallet and store the wallet ID
|
||||
wallet_id=`$NANO_NODE_EXE --wallet_create --data_path $DATADIR --seed $SEED`
|
||||
|
||||
# decrypt the wallet and check the seed
|
||||
$NANO_NODE_EXE --wallet_decrypt_unsafe --wallet $wallet_id --data_path $DATADIR | grep -q "Seed: $SEED"
|
||||
|
||||
# list the wallet and check the wallet ID
|
||||
$NANO_NODE_EXE --wallet_list --data_path $DATADIR | grep -q "Wallet ID: $wallet_id"
|
||||
|
||||
# if it got this far then it is a pass
|
||||
echo $0: PASSED
|
||||
exit 0
|
Loading…
Add table
Add a link
Reference in a new issue