docker-compose-files/hyperledger_fabric/latest/Makefile

248 lines
8.1 KiB
Makefile
Raw Normal View History

2018-06-19 10:01:32 +08:00
# Makefile to bootup the network, and do testing with channel, chaincode
# Run `make test` will pass all testing cases, and delete the network
# Run `make ready` will create a network, pass testing cases, and stand there for manual test, e.g., make test_channel_list
2017-12-06 16:24:33 +08:00
2018-06-07 14:34:24 +08:00
# support advanced bash grammar
SHELL:=/bin/bash
2017-12-06 16:24:33 +08:00
# mode of the network: solo, kafka, couchdb, event, dev
2017-11-02 10:29:33 +08:00
HLF_MODE ?= solo
2017-12-19 14:40:39 +08:00
HLF_VERSION ?= latest
2018-01-30 15:54:49 +08:00
CODE_BUILD_WAIT=40 # time to wait to build peer/orderer from local code
2017-12-06 16:24:33 +08:00
NETWORK_INIT_WAIT=2 # time to wait the fabric network finish initialization
2017-10-28 14:41:13 +08:00
2017-11-02 10:29:33 +08:00
COMPOSE_FILE ?= "docker-compose-2orgs-4peers-solo.yaml"
LOG_PATH ?= solo/logs
2017-12-07 14:18:16 +08:00
2017-11-02 10:29:33 +08:00
ifeq ($(HLF_MODE),kafka)
COMPOSE_FILE="docker-compose-2orgs-4peers-kafka.yaml"
LOG_PATH=kafka/logs
2017-11-02 10:29:33 +08:00
else ifeq ($(HLF_MODE),couchdb)
COMPOSE_FILE="docker-compose-2orgs-4peers-couchdb.yaml"
2017-12-06 16:24:33 +08:00
else ifeq ($(HLF_MODE),event)
COMPOSE_FILE="docker-compose-2orgs-4peers-event.yaml"
else ifeq ($(HLF_MODE),be)
COMPOSE_FILE="docker-compose-2orgs-4peers-solo-be.yaml"
2017-11-02 10:29:33 +08:00
else ifeq ($(HLF_MODE),dev)
COMPOSE_FILE="docker-compose-1orgs-1peers-dev.yaml"
endif
2017-12-07 13:55:24 +08:00
all: test
test:
2017-11-02 10:29:33 +08:00
@echo "Run test with $(COMPOSE_FILE)"
2018-05-18 19:33:16 +08:00
@echo "Please make sure u have setup Docker and pulled images by 'make setup download'."
2018-05-18 19:33:16 +08:00
make ready # Run all testing till ready
2017-12-06 16:24:33 +08:00
make stop clean
2017-12-06 16:24:33 +08:00
ready: # create/join channel, install/instantiate cc
make stop
# make clean_crypto_config # Remove existing crypto-config.
# make clean_channel_artifacts # Remove existing channel artifacts.
2017-12-06 16:24:33 +08:00
make gen_config # Will ignore if local config path exists
make start
2017-12-06 16:50:55 +08:00
2018-01-05 10:53:21 +08:00
if [ "$(HLF_MODE)" = "dev" ]; then \
sleep ${CODE_BUILD_WAIT}; \
else \
sleep ${NETWORK_INIT_WAIT}; \
fi
2018-05-18 19:33:16 +08:00
make channel_test
2017-12-07 14:18:16 +08:00
make update_anchors
2017-12-06 16:50:55 +08:00
2018-05-18 19:33:16 +08:00
make cc_test
2017-12-06 16:50:55 +08:00
2017-12-06 16:24:33 +08:00
make test_lscc # test lscc operations
2017-12-06 22:30:57 +08:00
make test_qscc # test qscc operations
2017-12-06 16:50:55 +08:00
2017-12-06 16:24:33 +08:00
make test_fetch_blocks # fetch block files
2017-12-06 16:50:55 +08:00
2018-01-30 15:54:49 +08:00
make test_config_update # not work with this version
make test_channel_update # not work with this version
make test_fetch_blocks # fetch block files again
2017-12-06 16:24:33 +08:00
make test_configtxlator
2018-01-30 15:54:49 +08:00
make logs_save
@echo "Now the fabric network is ready to play"
2018-06-19 10:01:32 +08:00
@echo "* run 'make cli' to enter into the fabric-cli container."
@echo "* run 'make stop' when done."
2018-06-19 10:01:32 +08:00
# channel related operations
channel_test: test_channel_create test_channel_join test_channel_list test_channel_getinfo
2018-05-18 19:33:16 +08:00
2018-06-19 10:01:32 +08:00
# chaincode related operations
2018-05-18 19:33:16 +08:00
cc_test: test_cc_install test_cc_instantiate test_cc_invoke_query
2017-12-06 16:24:33 +08:00
restart: stop start
start: # bootup the fabric network
@echo "Start a fabric network with ${COMPOSE_FILE}..."
2017-12-06 16:24:33 +08:00
@make clean
@docker-compose -f ${COMPOSE_FILE} up -d # Start a fabric network
2017-12-06 16:24:33 +08:00
stop: # stop the fabric network
@echo "Stop the fabric network with ${COMPOSE_FILE}..."
2018-06-07 14:34:24 +08:00
@docker-compose -f ${COMPOSE_FILE} down >& /tmp/docker-compose.log
2017-12-06 16:24:33 +08:00
chaincode_dev: restart chaincode_init test_cc_peer0 stop
2017-12-06 16:24:33 +08:00
################## Channel testing operations ################
2018-06-19 10:01:32 +08:00
test_channel_list: # List the channel that peer joined
@echo "List the joined channels"
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_list.sh"
test_channel_getinfo: # Get info of a channel
@echo "Get info of the app channel"
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_getinfo.sh"
2017-12-06 16:24:33 +08:00
test_channel_create: # Init the channel
@echo "Create channel on the fabric network"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_create.sh"
2017-12-06 16:24:33 +08:00
test_channel_join: # Init the channel
@echo "Join channel"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_join.sh"
2017-12-06 16:24:33 +08:00
update_anchors: # Update the anchor peer
@echo "Update anchors on the fabric network"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_update_anchors.sh"
2017-10-28 14:41:13 +08:00
test_channel_update: # send the channel update transaction
@echo "Test channel update with adding new org"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_update.sh"
################## Configtxlator testing operations ################
2017-12-26 13:28:02 +08:00
test_configtxlator: # Test change config using configtxlator
if [ "$(HLF_MODE)" = "kafka" ]; then \
bash scripts/test_configtxlator.sh kafka; \
else \
bash scripts/test_configtxlator.sh solo; \
fi
test_config_update: # Test change config to add new org
if [ "$(HLF_MODE)" = "kafka" ]; then \
bash scripts/test_config_update.sh kafka; \
else \
bash scripts/test_config_update.sh solo; \
fi
################## Chaincode testing operations ################
2017-12-06 16:24:33 +08:00
test_cc: # test chaincode, deprecated
if [ "$(HLF_MODE)" = "dev" ]; then \
make test_cc_peer0; \
else \
make test_cc_invoke_query; \
fi
2017-12-06 16:24:33 +08:00
test_cc_install: # Install the chaincode
@echo "Install chaincode on the fabric network"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_install.sh"
2017-12-06 16:24:33 +08:00
test_cc_instantiate: # Instantiate the chaincode
@echo "Instantiate chaincode on the fabric network"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_instantiate.sh"
2017-12-06 16:24:33 +08:00
test_cc_upgrade: # Upgrade the chaincode
@echo "Upgrade chaincode on the fabric network"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_upgrade.sh"
2017-12-06 16:24:33 +08:00
test_cc_invoke_query: # test user chaincode on all peers
@echo "Invoke and query cc example02 on all peers"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_invoke_query.sh"
2017-12-06 16:24:33 +08:00
test_qscc: # test qscc queries
@echo "Test QSCC query"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_qscc.sh"
2017-12-06 16:24:33 +08:00
test_lscc: # test lscc quries
@echo "Test LSCC query"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_lscc.sh"
2017-12-06 16:24:33 +08:00
# FIXME: docker doesn't support wildcard in cp right now
test_fetch_blocks: # test fetching channel blocks fetch
@echo "Test fetching block files"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_fetch_blocks.sh"
2017-10-08 13:55:16 +08:00
################## Env setup related, no need to see usually ################
setup: # setup the environment
2018-01-30 15:54:49 +08:00
bash scripts/env_setup.sh # Installing Docker and Docker-Compose
check: # Check shell scripts grammar
@echo "Check shell scripts grammar"
[ `which shellcheck` ] && shellcheck scripts/*.sh
clean: # clean up containers
2018-01-02 16:49:51 +08:00
@echo "Clean all HLF containers and chaincode images"
@-docker ps -a | awk '{ print $$1,$$2 }' | grep "hyperledger/fabric" | awk '{ print $$1 }' | xargs -r -I {} docker rm -f {}
@-docker ps -a | awk '$$2 ~ /dev-peer/ { print $$1 }' | xargs -r -I {} docker rm -f {}
@-docker images | awk '$$1 ~ /dev-peer/ { print $$3 }' | xargs -r -I {} docker rmi -f {}
2018-06-19 10:01:32 +08:00
echo "May manually clean the solo|kafka/channel-artifacts and crypto-config path"
2018-01-30 15:54:49 +08:00
env_clean: # clean up environment
@echo "Clean all images and containers"
2018-01-30 15:54:49 +08:00
bash scripts/env_clean.sh
cli: # enter the cli container
docker exec -it fabric-cli bash
2017-12-06 16:24:33 +08:00
orderer: # enter the orderer container
docker exec -it orderer.example.com bash
peer: # enter the peer container
docker exec -it peer0.org1.example.com bash
ps: # show existing docker images
docker ps -a
logs: # show logs
docker-compose -f ${COMPOSE_FILE} logs -f --tail 200
logs_check: logs_save logs_view
logs_save: # save logs
[ -d $(LOG_PATH) ] || mkdir -p $(LOG_PATH)
2017-12-07 14:18:16 +08:00
docker logs peer0.org1.example.com >& $(LOG_PATH)/dev_peer0.log
docker logs orderer.example.com >& $(LOG_PATH)/dev_orderer.log
docker-compose -f ${COMPOSE_FILE} logs >& $(LOG_PATH)/dev_all.log
logs_view: # view logs
2017-12-07 14:18:16 +08:00
less $(LOG_PATH)/dev_peer.log
2017-12-06 16:24:33 +08:00
gen_config: # generate config artifacts
2017-12-07 14:18:16 +08:00
if [ "$(HLF_MODE)" = "kafka" ]; then \
2017-12-06 16:24:33 +08:00
bash scripts/gen_config.sh kafka; \
2017-12-07 14:18:16 +08:00
else \
bash scripts/gen_config.sh solo; \
2017-12-06 16:24:33 +08:00
fi
clean_channel_artifacts: # clean channel related artifacts
if [ "$(HLF_MODE)" = "solo" ]; then \
rm -rf solo/channel-artifacts; \
else \
rm -rf kafka/channel-artifacts; \
fi
clean_crypto_config: # clean config artifacts
rm -rf crypto-config
rm -rf org3/crypto-config
download: # download required images
@echo "Download Docker images"
2018-01-30 15:54:49 +08:00
bash scripts/download_images.sh
2017-10-28 14:41:13 +08:00
################## chaincode dev mode ################
chaincode_init: # start chaincode in dev mode and do install/instantiate
@echo "Install and instantiate cc example02 on the fabric dev network"
2018-01-30 15:54:49 +08:00
@docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/init_chaincode_dev.sh"