Fix test/app/dummy_test.sh

This commit is contained in:
Jae Kwon 2017-01-28 09:11:31 -08:00
parent 1af930441c
commit 7c15b54ccc
1 changed files with 13 additions and 13 deletions

View File

@ -30,9 +30,9 @@ echo "... testing query with abci-cli"
RESPONSE=`abci-cli query \"$KEY\"` RESPONSE=`abci-cli query \"$KEY\"`
set +e set +e
A=`echo $RESPONSE | grep '"exists":true'` A=`echo $RESPONSE | grep 'log: exists'`
if [[ $? != 0 ]]; then if [[ $? != 0 ]]; then
echo "Failed to find 'exists=true' for $KEY. Response:" echo "Failed to find 'log: exists' for $KEY. Response:"
echo "$RESPONSE" echo "$RESPONSE"
exit 1 exit 1
fi fi
@ -41,9 +41,9 @@ set -e
# we should not be able to look up the value # we should not be able to look up the value
RESPONSE=`abci-cli query \"$VALUE\"` RESPONSE=`abci-cli query \"$VALUE\"`
set +e set +e
A=`echo $RESPONSE | grep '"exists":true'` A=`echo $RESPONSE | grep 'log: exists'`
if [[ $? == 0 ]]; then if [[ $? == 0 ]]; then
echo "Found 'exists=true' for $VALUE when we should not have. Response:" echo "Found 'log: exists' for $VALUE when we should not have. Response:"
echo "$RESPONSE" echo "$RESPONSE"
exit 1 exit 1
fi fi
@ -53,28 +53,28 @@ set -e
# test using the /abci_query # test using the /abci_query
############################# #############################
echo "... testing query with /abci_query" echo "... testing query with /abci_query 2"
# we should be able to look up the key # we should be able to look up the key
RESPONSE=`curl -s 127.0.0.1:46657/abci_query?query=$(toHex $KEY)` RESPONSE=`curl -s "127.0.0.1:46657/abci_query?path=\"\"&data=$(toHex $KEY)&prove=false"`
RESPONSE=`echo $RESPONSE | jq .result[1].result.Data | xxd -r -p` RESPONSE=`echo $RESPONSE | jq .result[1].response.log`
set +e set +e
A=`echo $RESPONSE | grep '"exists":true'` A=`echo $RESPONSE | grep 'exists'`
if [[ $? != 0 ]]; then if [[ $? != 0 ]]; then
echo "Failed to find 'exists=true' for $KEY. Response:" echo "Failed to find 'exists' for $KEY. Response:"
echo "$RESPONSE" echo "$RESPONSE"
exit 1 exit 1
fi fi
set -e set -e
# we should not be able to look up the value # we should not be able to look up the value
RESPONSE=`curl -s 127.0.0.1:46657/abci_query?query=\"$(toHex $VALUE)\"` RESPONSE=`curl -s "127.0.0.1:46657/abci_query?path=\"\"&data=$(toHex $VALUE)&prove=false"`
RESPONSE=`echo $RESPONSE | jq .result[1].result.Data | xxd -r -p` RESPONSE=`echo $RESPONSE | jq .result[1].response.log`
set +e set +e
A=`echo $RESPONSE | grep '"exists":true'` A=`echo $RESPONSE | grep 'exists'`
if [[ $? == 0 ]]; then if [[ $? == 0 ]]; then
echo "Found 'exists=true' for $VALUE when we should not have. Response:" echo "Found 'exists' for $VALUE when we should not have. Response:"
echo "$RESPONSE" echo "$RESPONSE"
exit 1 exit 1
fi fi