docker-compose-files/hyperledger_fabric/v1.0.4/scripts/test_cc_invoke_query.sh

33 lines
1.1 KiB
Bash
Raw Normal View History

2017-11-24 14:45:16 +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
#Query on chaincode on Peer0/Org1
2017-11-29 21:06:41 +08:00
echo_b "Querying chaincode on peer org2/peer0..."
2017-12-06 16:24:33 +08:00
chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_NAME} ${CC_QUERY_ARGS} 100
2017-11-24 14:45:16 +08:00
#Invoke on chaincode on Peer0/Org1
echo_b "Sending invoke transaction (transfer 10) on org1/peer0..."
2017-12-06 16:24:33 +08:00
chaincodeInvoke ${APP_CHANNEL} 1 0 ${CC_NAME} ${CC_INVOKE_ARGS}
2017-11-24 14:45:16 +08:00
#Query on chaincode on Peer1/Org2, check if the result is 90
echo_b "Querying chaincode on peer 1 and 3..."
2017-12-06 16:24:33 +08:00
chaincodeQuery ${APP_CHANNEL} 1 1 ${CC_NAME} ${CC_QUERY_ARGS} 90
chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_NAME} ${CC_QUERY_ARGS} 90
2017-11-24 14:45:16 +08:00
#Invoke on chaincode on Peer1/Org2
echo_b "Sending invoke transaction on org2/peer3..."
2017-12-06 16:24:33 +08:00
chaincodeInvoke ${APP_CHANNEL} 2 1 ${CC_NAME} ${CC_INVOKE_ARGS}
2017-11-24 14:45:16 +08:00
#Query on chaincode on Peer1/Org2, check if the result is 80
echo_b "Querying chaincode on all 4peers..."
2017-12-06 16:24:33 +08:00
chaincodeQuery ${APP_CHANNEL} 1 0 ${CC_NAME} ${CC_QUERY_ARGS} 80
chaincodeQuery ${APP_CHANNEL} 2 0 ${CC_NAME} ${CC_QUERY_ARGS} 80
2017-11-24 14:45:16 +08:00
echo_g "=== All GOOD, chaincode invoke/query completed ==="