Browse Source

remove old network tests

Refs #1249
pull/1250/head
Anton Kaliaev 6 years ago
parent
commit
93732b4c1e
No known key found for this signature in database GPG Key ID: 7B6881D965918214
5 changed files with 0 additions and 78 deletions
  1. +0
    -5
      test/README.md
  2. +0
    -26
      test/net/setup.sh
  3. +0
    -29
      test/net/start.sh
  4. +0
    -8
      test/net/test.sh
  5. +0
    -10
      test/test.sh

+ 0
- 5
test/README.md View File

@ -23,8 +23,3 @@ and run the following tests in docker containers:
If on a `release-x.x.x` branch, we also run
- `go test` for all our dependency libs (test/test_libs.sh)
- network_testing - benchmark a mintnet based cloud deploy using netmon

+ 0
- 26
test/net/setup.sh View File

@ -1,26 +0,0 @@
#! /bin/bash
set -eu
# grab glide for dependency mgmt
go get github.com/Masterminds/glide
# grab network monitor, install mintnet, netmon
# these might err
echo "... fetching repos. ignore go get errors"
set +e
go get github.com/tendermint/network_testing
go get github.com/tendermint/mintnet
go get github.com/tendermint/netmon
set -e
# install vendored deps
echo "GOPATH $GOPATH"
cd $GOPATH/src/github.com/tendermint/mintnet
echo "... install mintnet dir $(pwd)"
glide install
go install
cd $GOPATH/src/github.com/tendermint/netmon
echo "... install netmon dir $(pwd)"
glide install
go install

+ 0
- 29
test/net/start.sh View File

@ -1,29 +0,0 @@
#! /bin/bash
set -eu
# start a testnet and benchmark throughput using mintnet+netmon via the network_testing repo
DATACENTER=single
VALSETSIZE=4
BLOCKSIZE=8092
TX_SIZE=200
NTXS=$((BLOCKSIZE*4))
RESULTSDIR=results
CLOUD_PROVIDER=digitalocean
set +u
if [[ "$MACH_PREFIX" == "" ]]; then
MACH_PREFIX=mach
fi
set -u
cd "$GOPATH/src/github.com/tendermint/network_testing"
echo "... running network test $(pwd)"
TMHEAD=$(git rev-parse --abbrev-ref HEAD) TM_IMAGE="tendermint/tendermint" bash experiments/exp_throughput.sh $DATACENTER $VALSETSIZE $BLOCKSIZE $TX_SIZE $NTXS $MACH_PREFIX $RESULTSDIR $CLOUD_PROVIDER
# TODO: publish result!
# cleanup
echo "... destroying machines"
mintnet destroy --machines $MACH_PREFIX[1-$VALSETSIZE]

+ 0
- 8
test/net/test.sh View File

@ -1,8 +0,0 @@
#! /bin/bash
set -eu
# install mintnet, netmon, fetch network_testing
bash test/net/setup.sh
# start the testnet
bash test/net/start.sh

+ 0
- 10
test/test.sh View File

@ -48,13 +48,3 @@ docker cp run_test:/go/src/github.com/tendermint/tendermint/coverage.txt .
echo
echo "* [$(date +"%T")] running p2p tests on a local docker network"
bash "$DIR/p2p/test.sh" tester
# only run the cloud benchmark for releases
BRANCH=$(git rev-parse --abbrev-ref HEAD)
if [[ $(echo "$BRANCH" | grep "release-") != "" ]]; then
echo
echo "TODO: run network tests"
#echo "* branch $BRANCH; running mintnet/netmon throughput benchmark"
# TODO: replace mintnet
#bash "$DIR/net/test.sh"
fi

Loading…
Cancel
Save