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.
 
 
 
 
 
 
Eugene Ostroukhov a4af6250d8
[xds interop tests] implement error-code- RPC behavior (#32765)
2 years ago
..
BUILD [testing] Synchronize interop test protos. (#32631) 2 years ago
README.md [testing]: Add "orca_per_rpc" test case (#32524) 2 years ago
backend_metrics_lb_policy.cc [testing] Synchronize interop test protos. (#32631) 2 years ago
backend_metrics_lb_policy.h [testing] Synchronize interop test protos. (#32631) 2 years ago
client.cc [testing]: Add "orca_oob" test case (#32599) 2 years 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 [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2 years 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 [testing] Update orca-* tests for better compatibility (#32630) 2 years ago
interop_client.h [testing] Update orca-* tests for better compatibility (#32630) 2 years ago
interop_server.cc [testing] Do not pass metric recorder to EnableCallMetricRecording (#32708) 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 [testing]: Add "orca_per_rpc" test case (#32524) 2 years ago
observability_interop_server_bootstrap.cc GCP Observability testing for C++ (#32531) 2 years 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
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 [testing]: Add "orca_per_rpc" test case (#32524) 2 years ago
xds_interop_client.cc Convert c-style comments to C++-style comments (#31923) 2 years ago
xds_interop_server.cc [xds interop tests] implement error-code- RPC behavior (#32765) 2 years 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}