solana/ci/localnet-sanity.sh

94 lines
1.6 KiB
Bash
Raw Normal View History

2018-07-30 12:51:35 -07:00
#!/bin/bash -e
#
# Perform a quick sanity test on a leader, drone, validator and client running
# locally on the same machine
#
cd "$(dirname "$0")"/..
source ci/upload_ci_artifact.sh
source scripts/configure-metrics.sh
2018-07-30 12:51:35 -07:00
multinode-demo/setup.sh
2018-07-30 12:51:35 -07:00
2018-08-03 14:56:35 -07:00
backgroundCommands="drone leader validator validator-x"
2018-07-30 12:51:35 -07:00
pids=()
for cmd in $backgroundCommands; do
echo "--- Start $cmd"
rm -f log-"$cmd".txt
multinode-demo/"$cmd".sh > log-"$cmd".txt 2>&1 &
2018-07-30 12:51:35 -07:00
declare pid=$!
pids+=("$pid")
echo "pid: $pid"
done
killBackgroundCommands() {
2018-07-30 12:51:35 -07:00
set +e
for pid in "${pids[@]}"; do
if kill "$pid"; then
wait "$pid"
else
echo -e "^^^ +++\\nWarning: unable to kill $pid"
fi
done
set -e
pids=()
}
shutdown() {
exitcode=$?
killBackgroundCommands
set +e
2018-07-30 12:51:35 -07:00
echo "--- Upload artifacts"
2018-07-30 12:51:35 -07:00
for cmd in $backgroundCommands; do
declare logfile=log-$cmd.txt
upload_ci_artifact "$logfile"
tail "$logfile"
done
2018-07-30 17:09:05 -07:00
exit $exitcode
2018-07-30 12:51:35 -07:00
}
2018-07-30 17:09:05 -07:00
trap shutdown EXIT INT
2018-07-30 12:51:35 -07:00
set -e
2018-08-14 11:31:52 -07:00
flag_error() {
echo Failed
echo "^^^ +++"
exit 1
}
2018-08-27 17:57:04 -07:00
echo "--- Wallet sanity"
(
set -x
scripts/wallet-sanity.sh
2018-08-27 17:57:04 -07:00
) || flag_error
echo "--- Node count"
(
set -x
source multinode-demo/common.sh
client_id=/tmp/client-id.json-$$
$solana_keygen -o $client_id
$solana_bench_tps --identity $client_id --num-nodes 3 --converge-only
rm -rf $client_id
2018-08-27 17:57:04 -07:00
) || flag_error
2018-07-30 12:51:35 -07:00
killBackgroundCommands
2018-08-14 11:31:52 -07:00
echo "--- Ledger verification"
(
set -x
source multinode-demo/common.sh
2018-08-27 17:57:04 -07:00
cp -R "$SOLANA_CONFIG_DIR"/ledger /tmp/ledger-$$
$solana_ledger_tool --ledger /tmp/ledger-$$ verify
rm -rf /tmp/ledger-$$
2018-08-14 11:31:52 -07:00
) || flag_error
2018-07-30 12:51:35 -07:00
echo +++
echo Ok
exit 0