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.

21 lines
929 B

8 years ago
6 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 with `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. - kvstore 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 kvstore 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