Fix systests when running in rocksdb mode (different ledger files) Fix for CI build of nano_node that default to dev network Add systests into github per commit CI.
38 lines
1.1 KiB
Bash
Executable file
38 lines
1.1 KiB
Bash
Executable file
#!/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
|
|
rm -rf "$DATADIR"/rocksdb/
|
|
}
|
|
|
|
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
|