docker-compose-files/hyperledger_fabric/latest/scripts/test_qscc.sh

36 lines
857 B
Bash
Raw Normal View History

2017-09-01 20:09:18 +08:00
#!/usr/bin/env bash
# This script will run some qscc queries for testing.
2017-12-06 16:24:33 +08:00
# Importing useful functions for cc testing
if [ -f ./func.sh ]; then
source ./func.sh
elif [ -f scripts/func.sh ]; then
source scripts/func.sh
2017-09-01 20:09:18 +08:00
fi
2017-12-06 16:24:33 +08:00
echo_b "QSCC testing"
2017-09-01 20:09:18 +08:00
2017-12-06 16:24:33 +08:00
org=1
peer=0
2017-09-01 20:09:18 +08:00
2017-12-06 16:24:33 +08:00
#peer chaincode query \
# -C "" \
# -n qscc \
# -c '{"Args":["GetChainInfo","'${APP_CHANNEL}'"]}'
2018-11-09 15:46:31 +08:00
echo_b "QSCC GetChainInfo"
2019-04-22 14:19:18 +08:00
chaincodeQuery $org $peer "${ORG1_PEER0_URL}" "${ORG1_PEER0_TLS_ROOTCERT}" ${APP_CHANNEL} qscc '{"Args":["GetChainInfo","'${APP_CHANNEL}'"]}'
2018-11-09 15:46:31 +08:00
2017-12-06 16:24:33 +08:00
#peer chaincode query \
# -C "" \
# -n qscc \
# -c '{"Args":["GetBlockByNumber","'${APP_CHANNEL}'","2"]}'
2018-11-09 15:46:31 +08:00
echo_b "QSCC GetBlockByNumber 2"
2019-04-22 14:19:18 +08:00
chaincodeQuery $org $peer "${ORG1_PEER0_URL}" "${ORG1_PEER0_TLS_ROOTCERT}" ${APP_CHANNEL} qscc '{"Args":["GetBlockByNumber","'${APP_CHANNEL}'","2"]}'
2018-11-09 15:46:31 +08:00
2018-01-30 15:54:49 +08:00
echo_g "QSCC testing done!"
echo