mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 22:32:15 +00:00
* validate reactor messages Refs #2683 * validate blockchain messages Refs #2683 * validate evidence messages Refs #2683 * todo * check ProposalPOL and signature sizes * add a changelog entry * check addr is valid when we add it to the addrbook * validate incoming netAddr (not just nil check!) * fixes after Bucky's review * check timestamps * beef up block#ValidateBasic * move some checks into bcBlockResponseMessage * update Gopkg.lock Fix ``` grouped write of manifest, lock and vendor: failed to export github.com/tendermint/go-amino: fatal: failed to unpack tree object 6dcc6ddc143e116455c94b25c1004c99e0d0ca12 ``` by running `dep ensure -update` * bump year since now we check it * generate test/p2p/data on the fly using tendermint testnet * allow sync chains older than 1 year * use full path when creating a testnet * move testnet gen to test/docker/Dockerfile * relax LastCommitRound check Refs #2737 * fix conflicts after merge * add small comment * some ValidateBasic updates * fixes * AppHash length is not fixed
67 lines
2.2 KiB
Bash
67 lines
2.2 KiB
Bash
#! /bin/bash
|
|
set -eu
|
|
|
|
DOCKER_IMAGE=$1
|
|
NETWORK_NAME=$2
|
|
N=$3
|
|
PROXY_APP=$4
|
|
|
|
ID=1
|
|
|
|
echo "----------------------------------------------------------------------"
|
|
echo "Testing pex creates the addrbook and uses it if persistent_peers are not provided"
|
|
echo "(assuming peers are started with pex enabled)"
|
|
|
|
CLIENT_NAME="pex_addrbook_$ID"
|
|
|
|
echo "1. restart peer $ID"
|
|
docker stop "local_testnet_$ID"
|
|
echo "stopped local_testnet_$ID"
|
|
# preserve addrbook.json
|
|
docker cp "local_testnet_$ID:/go/src/github.com/tendermint/tendermint/test/p2p/data/mach0/config/addrbook.json" "/tmp/addrbook.json"
|
|
set +e #CIRCLE
|
|
docker rm -vf "local_testnet_$ID"
|
|
set -e
|
|
|
|
# NOTE that we do not provide persistent_peers
|
|
bash test/p2p/peer.sh "$DOCKER_IMAGE" "$NETWORK_NAME" "$ID" "$PROXY_APP" "--p2p.pex --rpc.unsafe"
|
|
echo "started local_testnet_$ID"
|
|
|
|
# if the client runs forever, it means addrbook wasn't saved or was empty
|
|
bash test/p2p/client.sh "$DOCKER_IMAGE" "$NETWORK_NAME" "$CLIENT_NAME" "test/p2p/pex/check_peer.sh $ID $N"
|
|
|
|
# Now we know that the node is up.
|
|
|
|
docker cp "/tmp/addrbook.json" "local_testnet_$ID:/go/src/github.com/tendermint/tendermint/test/p2p/data/mach0/config/addrbook.json"
|
|
echo "with the following addrbook:"
|
|
cat /tmp/addrbook.json
|
|
# exec doesn't work on circle
|
|
# docker exec "local_testnet_$ID" cat "/go/src/github.com/tendermint/tendermint/test/p2p/data/mach0/config/addrbook.json"
|
|
echo ""
|
|
|
|
echo "----------------------------------------------------------------------"
|
|
echo "Testing other peers connect to us if we have neither persistent_peers nor the addrbook"
|
|
echo "(assuming peers are started with pex enabled)"
|
|
|
|
CLIENT_NAME="pex_no_addrbook_$ID"
|
|
|
|
echo "1. restart peer $ID"
|
|
docker stop "local_testnet_$ID"
|
|
echo "stopped local_testnet_$ID"
|
|
set +e #CIRCLE
|
|
docker rm -vf "local_testnet_$ID"
|
|
set -e
|
|
|
|
# NOTE that we do not provide persistent_peers
|
|
bash test/p2p/peer.sh "$DOCKER_IMAGE" "$NETWORK_NAME" "$ID" "$PROXY_APP" "--p2p.pex --rpc.unsafe"
|
|
echo "started local_testnet_$ID"
|
|
|
|
# if the client runs forever, it means other peers have removed us from their books (which should not happen)
|
|
bash test/p2p/client.sh "$DOCKER_IMAGE" "$NETWORK_NAME" "$CLIENT_NAME" "test/p2p/pex/check_peer.sh $ID $N"
|
|
|
|
# Now we know that the node is up.
|
|
|
|
echo ""
|
|
echo "PASS"
|
|
echo ""
|