tendermint/test/app/dummy_test.sh

79 lines
1.7 KiB
Bash
Raw Normal View History

#! /bin/bash
2016-07-24 11:08:47 -07:00
set -e
function toHex() {
echo -n $1 | hexdump -ve '1/1 "%.2X"'
}
#####################
# dummy with curl
#####################
TESTNAME=$1
# store key value pair
KEY="abcd"
VALUE="dcba"
2016-09-10 14:42:12 -07:00
curl -s 127.0.0.1:46657/broadcast_tx_commit?tx=\"$(toHex $KEY=$VALUE)\"
2016-07-24 11:08:47 -07:00
echo $?
echo ""
2016-09-10 14:42:12 -07:00
###########################
# test using the tmsp-cli
###########################
# we should be able to look up the key
RESPONSE=`tmsp-cli query $KEY`
2016-07-24 11:08:47 -07:00
set +e
2016-11-22 18:50:54 -08:00
A=`echo $RESPONSE | grep '"exists":true'`
if [[ $? != 0 ]]; then
echo "Failed to find 'exists=true' for $KEY. Response:"
echo "$RESPONSE"
2016-07-24 11:08:47 -07:00
exit 1
fi
2016-07-24 11:08:47 -07:00
set -e
# we should not be able to look up the value
RESPONSE=`tmsp-cli query $VALUE`
2016-07-24 11:08:47 -07:00
set +e
2016-11-22 18:50:54 -08:00
A=`echo $RESPONSE | grep '"exists":true'`
if [[ $? == 0 ]]; then
echo "Found 'exists=true' for $VALUE when we should not have. Response:"
echo "$RESPONSE"
2016-07-24 11:08:47 -07:00
exit 1
fi
2016-07-24 11:08:47 -07:00
set -e
2016-09-10 14:42:12 -07:00
#############################
# test using the /tmsp_query
#############################
# we should be able to look up the key
RESPONSE=`curl -s 127.0.0.1:46657/tmsp_query?query=\"$(toHex $KEY)\"`
RESPONSE=`echo $RESPONSE | jq .result[1].result.Data | xxd -r -p`
set +e
2016-11-22 18:50:54 -08:00
A=`echo $RESPONSE | grep '"exists":true'`
2016-09-10 14:42:12 -07:00
if [[ $? != 0 ]]; then
echo "Failed to find 'exists=true' for $KEY. Response:"
echo "$RESPONSE"
exit 1
fi
set -e
# we should not be able to look up the value
RESPONSE=`curl -s 127.0.0.1:46657/tmsp_query?query=\"$(toHex $VALUE)\"`
RESPONSE=`echo $RESPONSE | jq .result[1].result.Data | xxd -r -p`
set +e
2016-11-22 18:50:54 -08:00
A=`echo $RESPONSE | grep '"exists":true'`
2016-09-10 14:42:12 -07:00
if [[ $? == 0 ]]; then
echo "Found 'exists=true' for $VALUE when we should not have. Response:"
echo "$RESPONSE"
exit 1
fi
set -e
echo "Passed Test: $TESTNAME"