tendermint/test
Ethan Buchman bd429f3d4f config: all urls use tcp:// or unix:// prefix 2016-08-10 02:16:41 -04:00
..
app tests: add throughput benchmark using mintnet and netmon 2016-08-05 19:02:43 -04:00
net test/net: cleanup 2016-08-05 21:20:01 -04:00
p2p tests: broadcast_tx with tmsp; p2p 2016-07-24 14:08:47 -04:00
Dockerfile tests: broadcast_tx with tmsp; p2p 2016-07-24 14:08:47 -04:00
README.md test: README.md 2016-08-06 23:31:06 -04:00
run_test.sh version bump and release branch 2016-08-05 19:15:14 -04:00
test.sh config: all urls use tcp:// or unix:// prefix 2016-08-10 02:16:41 -04:00
test_libs.sh integrations tests and coverage badge 2016-07-23 13:38:30 -04: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!