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

33 lines
739 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
2018-03-05 14:10:16 +08:00
CC_NAME=${CC_NAME:-$CC_02_NAME}
CC_INVOKE_ARGS=${CC_INVOKE_ARGS:-$CC_02_INVOKE_ARGS}
CC_QUERY_ARGS=${CC_QUERY_ARGS:-$CC_02_QUERY_ARGS}
2018-02-27 12:51:06 +08:00
echo_b "Channel name: "${APP_CHANNEL}
echo_b "Query the existing value of a"
2018-03-05 14:10:16 +08:00
chaincodeQuery ${APP_CHANNEL} 0 ${CC_NAME} ${CC_QUERY_ARGS} 100
2018-02-27 12:51:06 +08:00
sleep 1
echo_b "Invoke a transaction to transfer 10 from a to b"
2018-03-05 14:10:16 +08:00
chaincodeInvoke ${APP_CHANNEL} 0 ${CC_NAME} ${CC_INVOKE_ARGS}
2018-02-27 12:51:06 +08:00
sleep 1
echo_b "Check if the result of a is 90"
2018-03-05 14:10:16 +08:00
chaincodeQuery ${APP_CHANNEL} 0 ${CC_NAME} ${CC_QUERY_ARGS} 90
2018-02-27 12:51:06 +08:00
echo
echo_g "All GOOD, MVE Test completed"
echo
exit 0