You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.1 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. # Tendermint Tests
  2. The unit tests (ie. the `go test` s) can be run with `make test`.
  3. The integration tests can be run wtih `make test_integrations`.
  4. Running the integrations test will build a docker container with local version of tendermint
  5. and run the following tests in docker containers:
  6. - go tests, with --race
  7. - includes test coverage
  8. - app tests
  9. - dummy app over socket
  10. - counter app over socket
  11. - counter app over grpc
  12. - persistence tests
  13. - crash tendermint at each of many predefined points, restart, and ensure it syncs properly with the app
  14. - p2p tests
  15. - start a local dummy app testnet on a docker network (requires docker version 1.10+)
  16. - send a tx on each node and ensure the state root is updated on all of them
  17. - crash and restart nodes one at a time and ensure they can sync back up (via fastsync)
  18. - crash and restart all nodes at once and ensure they can sync back up
  19. If on a `release-x.x.x` branch, we also run
  20. - `go test` for all our dependency libs (test/test_libs.sh)
  21. - network_testing - benchmark a mintnet based cloud deploy using netmon