tree: f17cf3becf98da45cc20967cca9e3f62eb28eed5 [path history] [tgz]
  1. dockerize/
  2. performance/
  3. sanity/
  4. stress_test/
  5. antagonist.py
  6. artifact_targets.py
  7. build_artifact_csharp.bat
  8. build_artifact_csharp.sh
  9. build_artifact_node.bat
  10. build_artifact_node.sh
  11. build_artifact_php.sh
  12. build_artifact_protoc.bat
  13. build_artifact_protoc.sh
  14. build_artifact_python.bat
  15. build_artifact_python.sh
  16. build_artifact_ruby.sh
  17. build_csharp.sh
  18. build_csharp_coreclr.bat
  19. build_csharp_coreclr.sh
  20. build_node.bat
  21. build_node.sh
  22. build_package_csharp_coreclr.sh
  23. build_package_node.sh
  24. build_package_php.sh
  25. build_package_python.sh
  26. build_package_ruby.sh
  27. build_php.sh
  28. build_python.sh
  29. build_python_msys2.sh
  30. build_ruby.sh
  31. configs.json
  32. distribtest_targets.py
  33. dockerjob.py
  34. interop_html_report.template
  35. jobset.py
  36. package_targets.py
  37. port_server.py
  38. post_tests_c.sh
  39. post_tests_csharp.bat
  40. post_tests_csharp.sh
  41. post_tests_php.sh
  42. post_tests_ruby.sh
  43. pre_build_c.bat
  44. pre_build_csharp.bat
  45. pre_build_csharp.sh
  46. pre_build_node.bat
  47. pre_build_node.sh
  48. pre_build_ruby.sh
  49. prepare_travis.sh
  50. README.md
  51. report_utils.py
  52. run_interop_tests.py
  53. run_lcov.sh
  54. run_node.bat
  55. run_node.sh
  56. run_performance_tests.py
  57. run_python.sh
  58. run_ruby.sh
  59. run_stress_tests.py
  60. run_tests.py
  61. sources_and_headers.json
  62. task_runner.py
  63. tests.json
  64. watch_dirs.py
tools/run_tests/README.md

#Overview

This directory contains scripts that facilitate building and running tests. We are using python scripts as entrypoint for our tests because that gives us the opportunity to run tests using the same commandline regardless of the platform you are using.

#Unit tests (run_tests.py)

Builds gRPC in given language and runs unit tests. Use tools/run_tests/run_tests.py --help for more help.

######Example tools/run_tests/run_tests.py -l csharp -c dbg

######Useful options (among many others)

  • --use_docker Builds a docker container containing all the prerequisites for given language and runs the tests under that container.
  • --build_only Only build, do not run the tests.

#Interop tests (run_interop_tests.py)

Runs tests for cross-platform/cross-language interoperability. For more details, see Interop tests descriptions The script is also capable of running interop tests for grpc-java and grpc-go, using sources checked out alongside the ones of the grpc repository.

######Example tools/run_tests/run_interop_tests.py -l csharp -s c++ --use_docker (run interop tests with C# client and C++ server)

#Performance benchmarks (run_performance_tests.py)

Runs predefined benchmark scenarios for given languages. Besides the simple configuration of running all the scenarios locally, the script also supports orchestrating test runs with client and server running on different machines and uploading the results to BigQuery.

######Example tools/run_tests/run_peformance_tests.py -l c++ node

######Useful options

  • --regex use regex to select particular scenarios to run.

#Stress tests (run_stress_tests.py)

Runs modified interop tests clients and servers under heavy load for an extended period of time to discover potential stability issues. The tests are internally using Kubernetes to run the client and server on GKE and upload statistics to BigQuery.

tools/run_tests/stress_test/run_on_gke.py --gcp_project_id=<google-cloud-platform-project-id> --config_file=<path-to-config-file>

The directory tools/run_tests/stress_test/configs/ contains the config files for several scenarios

#Artifacts & Packages (task_runner.py)

A generalized framework for running predefined tasks based on their labels. We use this to building binary artifacts & distrib packages and testing them)

######Example tools/run_tests/task_runner.py -f python artifact linux x64 (build tasks with labels python, artifact, linux, and x64)