tendermint/test
Ethan Buchman 8390e88e27 fix flowrate dep and test 2016-12-09 01:28:08 -05:00
..
app test starting tendermint before app 2016-09-11 16:08:46 -04:00
docker test: use glide with mintnet/netmon 2016-10-12 12:28:34 -04:00
net test: install glide for network test 2016-10-20 12:30:22 -04:00
p2p test/p2p: name client conts so we dont need to rm them because circle 2016-08-27 17:20:34 -04:00
README.md test: README.md 2016-08-06 23:31:06 -04:00
run_test.sh test: codecov 2016-09-25 22:08:48 +09:00
test.sh test: install glide for network test 2016-10-20 12:30:22 -04:00
test_cover.sh test: codecov 2016-09-25 22:08:48 +09:00
test_libs.sh fix flowrate dep and test 2016-12-09 01:28:08 -05:00

README.md

Tendermint Tests

The unit tests (ie. the go test s) can be run with make test. The integration tests can be run wtih make test_integrations.

Running the integrations test will build a docker container with latest tendermint and run the following tests in docker containers:

  • go tests, with --race
  • app tests
    • dummy app over socket
    • counter app over socket
    • counter app over grpc
  • p2p tests
    • start a local dummy app testnet on a docker network (requires docker version 1.10+)
    • send a tx on each node and ensure the state root is updated on all of them

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

Coverage

TODO!