2018-07-02 14:14:34 -07:00
|
|
|
#!/bin/bash -e
|
|
|
|
#
|
|
|
|
# Wallet sanity test
|
|
|
|
#
|
|
|
|
|
|
|
|
here=$(dirname "$0")
|
|
|
|
cd "$here"
|
|
|
|
|
|
|
|
wallet="../wallet.sh $1"
|
|
|
|
|
|
|
|
# Tokens transferred to this address are lost forever...
|
|
|
|
garbage_address=vS3ngn1TfQmpsW1Z4NkLuqNAQFF3dYQw8UZ6TCx9bmq
|
|
|
|
|
|
|
|
check_balance_output() {
|
|
|
|
declare expected_output="$1"
|
|
|
|
exec 42>&1
|
|
|
|
output=$($wallet balance | tee >(cat - >&42))
|
|
|
|
if [[ ! "$output" =~ $expected_output ]]; then
|
|
|
|
echo "Balance is incorrect. Expected: $expected_output"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-07-02 17:40:17 -07:00
|
|
|
pay_and_confirm() {
|
|
|
|
exec 42>&1
|
|
|
|
signature=$($wallet pay "$@" | tee >(cat - >&42))
|
|
|
|
$wallet confirm "$signature"
|
|
|
|
}
|
|
|
|
|
2018-07-02 17:08:39 -07:00
|
|
|
$wallet reset
|
2018-07-02 14:14:34 -07:00
|
|
|
$wallet address
|
|
|
|
check_balance_output "Your balance is: 0"
|
2018-07-02 17:40:17 -07:00
|
|
|
$wallet airdrop --tokens 60
|
|
|
|
check_balance_output "Your balance is: 60"
|
|
|
|
$wallet airdrop --tokens 40
|
|
|
|
check_balance_output "Your balance is: 100"
|
|
|
|
pay_and_confirm --to $garbage_address --tokens 99
|
|
|
|
check_balance_output "Your balance is: 1"
|
2018-07-02 14:14:34 -07:00
|
|
|
|
|
|
|
echo PASS
|
|
|
|
exit 0
|