docker-compose-files/hyperledger_fabric/v1.0.6/scripts/test_cc_peer0.sh

29 lines
621 B
Bash
Raw Normal View History

2018-02-27 12:51:06 +08:00
#!/bin/bash
# Importing useful functions for cc testing
if [ -f ./func.sh ]; then
source ./func.sh
elif [ -f scripts/func.sh ]; then
source scripts/func.sh
fi
echo_b "Channel name: "${APP_CHANNEL}
echo_b "Query the existing value of a"
chaincodeQuery ${APP_CHANNEL} 0 ${CC_02_NAME} ${CC_02_QUERY_ARGS} 100
sleep 1
echo_b "Invoke a transaction to transfer 10 from a to b"
chaincodeInvoke ${APP_CHANNEL} 0 ${CC_02_NAME} ${CC_02_INVOKE_ARGS}
sleep 1
echo_b "Check if the result of a is 90"
chaincodeQuery ${APP_CHANNEL} 0 ${CC_02_NAME} ${CC_02_QUERY_ARGS} 90
echo
echo_g "All GOOD, MVE Test completed"
echo
exit 0