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.
 
 
 
 
 
 
Stanley Cheung 48961e8a2c [PSM Interop] Add a payload to xds interop client when sending RPCs (#35545) 10 months ago
..
BUILD [Test] Fix bug in waiting for the Orca OOB report (#35467) 11 months ago
README.md [testing]: Add "orca_per_rpc" test case (#32524) 2 years ago
backend_metrics_lb_policy.cc [Test] Fix bug in waiting for the Orca OOB report (#35467) 11 months ago
backend_metrics_lb_policy.h [infra] Fix absl::Mutex check and remove all uses (#33144) 2 years ago
backend_metrics_lb_policy_test.cc [Test] Fix bug in waiting for the Orca OOB report (#35467) 11 months ago
client.cc [test] Allow set request/response size in interop soak test (#34010) 1 year ago
client_helper.cc [testing]: Add "orca_per_rpc" test case (#32524) 2 years ago
client_helper.h [testing]: Add "orca_per_rpc" test case (#32524) 2 years ago
grpclb_fallback_test.cc [Deps] Update to Clang-16 (#34492) 1 year ago
http2_client.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2 years ago
http2_client.h Convert c-style comments to C++-style comments (#31923) 2 years ago
interop_client.cc [Test] Fix bug in waiting for the Orca OOB report (#35467) 11 months ago
interop_client.h [test] Allow set request/response size in interop soak test (#34010) 1 year ago
interop_server.cc [interop] fix C++ server to add mutex for orca_oob test (#33278) 2 years ago
interop_server_bootstrap.cc Convert c-style comments to C++-style comments (#31923) 2 years ago
interop_test.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2 years ago
interop_test_with_metadata_log.sh add --log_metadata_and_status feature to interop_client (#28021) 3 years ago
istio_echo_server.cc Revert "Revert "[c++] Move environment functions to C++ (#30937)" (#30986)" (#30988) 2 years ago
istio_echo_server_lib.cc Istio Echo: Add version string (#30477) 2 years ago
istio_echo_server_lib.h Istio Echo: Add version string (#30477) 2 years ago
istio_echo_server_test.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2 years ago
metrics_client.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2 years ago
observability_client.cc [otel] Return absl::Status as a return from BuildAndRegisterGlobal (#35659) 10 months ago
observability_interop_server_bootstrap.cc [Deps] Update to Clang-16 (#34492) 1 year ago
pre_stop_hook_server.cc [test interop] Add HookService to the maintenence server (#34413) 1 year ago
pre_stop_hook_server.h [test interop] Add HookService to the maintenence server (#34413) 1 year ago
pre_stop_hook_server_test.cc [interop test] Fix the test (#34424) 1 year ago
reconnect_interop_client.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2 years ago
reconnect_interop_server.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2 years ago
rpc_behavior_lb_policy.cc [RefCounted and friends] Fix type safety of ref-counted types. 11 months ago
rpc_behavior_lb_policy.h [PSM Interop] Add custom_lb test client (#32757) 2 years ago
server_helper.cc Convert c-style comments to C++-style comments (#31923) 2 years ago
server_helper.h Convert c-style comments to C++-style comments (#31923) 2 years ago
stress_interop_client.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2 years ago
stress_interop_client.h Fix include guards for src/ and test/ directories (#32167) 2 years ago
stress_test.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2 years ago
xds_federation_client.cc [test] Allow set request/response size in interop soak test (#34010) 1 year ago
xds_interop_client.cc [PSM Interop] Add a payload to xds interop client when sending RPCs (#35545) 10 months ago
xds_interop_server.cc [otel] Return absl::Status as a return from BuildAndRegisterGlobal (#35659) 10 months ago
xds_interop_server_lib.cc [PSM Interop] Add a payload to xds interop client when sending RPCs (#35545) 10 months ago
xds_interop_server_lib.h [xDS Interop] Use XdsServerBuilder when testing CSM Observability (#35634) 10 months ago
xds_interop_server_test.cc [xDS Interop] Use XdsServerBuilder when testing CSM Observability (#35634) 10 months ago
xds_stats_watcher.cc Internal change 1 year ago
xds_stats_watcher.h [PSM Interop] Return trailing metadata. (#34096) 1 year ago
xds_stats_watcher_test.cc Internal change 1 year 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}