#!/bin/bash # Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy of this # software and associated documentation files (the "Software"), to deal in the Software # without restriction, including without limitation the rights to use, copy, modify, # merge, publish, distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, # INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A # PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. source $(dirname "$0")/env.sh function main { done=false cloneFabricSamples log "The docker 'run' container has started" # Set ORDERER_PORT_ARGS to the args needed to communicate with the 1st orderer IFS=', ' read -r -a OORGS <<< "$ORDERER_ORGS" initOrdererVars ${OORGS[0]} 1 export ORDERER_PORT_ARGS="-o $ORDERER_HOST:$ORDERER_PORT --tls --cafile $CA_CHAINFILE --clientauth" # export ORDERER_PORT_ARGS="-o $ORDERER_HOST:7050 --cafile $CA_CHAINFILE" makePolicy # Install chaincode on all peers in the org export ORG=$PEERORG local COUNT=1 while [[ "$COUNT" -le $NUM_PEERS ]]; do initPeerVars $ORG $COUNT installChaincode COUNT=$((COUNT+1)) done # Instantiate chaincode on the 1st peer of the org initPeerVars $ORG 1 instantiateChaincode #Invoke and query the chaincode infinitely while true; do local COUNT=1 while [[ "$COUNT" -le $NUM_PEERS ]]; do initPeerVars $ORG $COUNT switchToAdminIdentity log "Querying chaincode on $PEER_HOST ..." chaincodeQuery log "Sending invoke transaction to $PEER_HOST ..." peer chaincode invoke -C $CHANNEL_NAME -n mycc -c '{"Args":["invoke","a","b","10"]}' $ORDERER_CONN_ARGS COUNT=$((COUNT+1)) done sleep 5 done log "Congratulations! The load tests ran successfully." done=true } # git clone fabric-samples. We need this repo for the chaincode function cloneFabricSamples { log "cloneFabricSamples" mkdir -p /opt/gopath/src/github.com/hyperledger cd /opt/gopath/src/github.com/hyperledger git clone https://github.com/hyperledger/fabric-samples.git log "cloned FabricSamples" cd fabric-samples git checkout release-1.1 log "checked out version 1.1 of FabricSamples" log "cloneFabric" mkdir /opt/gopath/src/github.com/hyperledger/fabric } function chaincodeQuery { log "Querying chaincode in the channel '$CHANNEL_NAME' on the peer '$PEER_HOST' ..." local rc=1 local starttime=$(date +%s) # Continue to poll until we get a successful response or reach QUERY_TIMEOUT while test "$(($(date +%s)-starttime))" -lt "$QUERY_TIMEOUT"; do sleep 1 peer chaincode query -C $CHANNEL_NAME -n mycc -c '{"Args":["query","a"]}' > log.txt if [ $? -eq 0 ]; then echo 'Query chaincode result:' cat log.txt return 0 fi echo -n "." done } function makePolicy { POLICY="OR(" local COUNT=0 for ORG in $PEER_ORGS; do if [ $COUNT -ne 0 ]; then POLICY="${POLICY}," fi initOrgVars $ORG POLICY="${POLICY}'${ORG_MSP_ID}.member'" COUNT=$((COUNT+1)) done POLICY="${POLICY})" log "policy: $POLICY" } function installChaincode { switchToAdminIdentity log "Installing chaincode on $PEER_HOST ..." peer chaincode install -n mycc -v 1.0 -p github.com/hyperledger/fabric-samples/chaincode/abac/go } function instantiateChaincode { switchToAdminIdentity log "Instantiating chaincode on $PEER_HOST ..." peer chaincode instantiate -C $CHANNEL_NAME -n mycc -v 1.0 -c '{"Args":["init","a","100","b","200"]}' -P "$POLICY" $ORDERER_CONN_ARGS } function fatalr { log "FATAL: $*" exit 1 } main