The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
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.
 
 
 
 
 
 
Nathan Baulch b2a05bebe0 [maintenance] Fix cpp typos (#37755) 4 months ago
..
BUILD [Gpr_To_Absl_Logging] Move function to test header form log.h (#36860) 8 months ago
README.md [testing]: Add "orca_per_rpc" test case (#32524) 2 years ago
backend_metrics_lb_policy.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
backend_metrics_lb_policy.h [clang-format] Remove requirement that port_platform.h is at the top (#36281) 11 months ago
backend_metrics_lb_policy_test.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
client.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
client_helper.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
client_helper.h [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
grpclb_fallback_test.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
http2_client.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
http2_client.h [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
interop_client.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
interop_client.h [maintenance] Fix cpp typos (#37755) 4 months ago
interop_server.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
interop_server_bootstrap.cc [reorg] move test/core/util -> test/core/test_util (#36446) 10 months ago
interop_test.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
interop_test_with_metadata_log.sh add --log_metadata_and_status feature to interop_client (#28021) 3 years ago
istio_echo_server.cc [maintenance] Fix cpp typos (#37755) 4 months ago
istio_echo_server_lib.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
istio_echo_server_lib.h Istio Echo: Add version string (#30477) 3 years ago
istio_echo_server_test.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
metrics_client.cc [maintenance] Fix cpp typos (#37755) 4 months ago
observability_client.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
observability_interop_server_bootstrap.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
pre_stop_hook_server.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
pre_stop_hook_server.h [reorg] move a bunch of stuff to src/core/util (#36792) 5 months ago
pre_stop_hook_server_test.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
reconnect_interop_client.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
reconnect_interop_server.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
rpc_behavior_lb_policy.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
rpc_behavior_lb_policy.h [PSM Interop] Add custom_lb test client (#32757) 2 years ago
server_helper.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
server_helper.h [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
stress_interop_client.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
stress_interop_client.h [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
stress_test.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
xds_federation_client.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
xds_interop_client.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
xds_interop_server.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
xds_interop_server_lib.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
xds_interop_server_lib.h [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
xds_interop_server_test.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
xds_stats_watcher.cc [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging - GPR_ASSERT (#36222) 11 months ago
xds_stats_watcher.h [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago
xds_stats_watcher_test.cc [clang-format] Remove custom clang-format rules for include ordering (#37820) 5 months ago

README.md

Running a test locally during development

To start a server during development:

  1. Choose an available port number.
  2. Start the server:
GRPC_VERBOSITY=DEBUG ibazel run --compilation_mode=dbg //test/cpp/interop:interop_server -- --port={port_number}
  1. Start the client:
GRPC_VERBOSITY=DEBUG ibazel run --test_output=streamed //test/cpp/interop:interop_client -- --server_port={port_number} --test_case={test_case}