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 fc4736c1ad
[interop] Fix crash in pick_first LB policy (#33519)
1 year ago
..
BUILD [interop] Implement "hostname" for RPC behavior (#33446) 1 year ago
README.md [testing]: Add "orca_per_rpc" test case (#32524) 2 years ago
backend_metrics_lb_policy.cc [LB policies] add delegating helper classes (#33445) 1 year ago
backend_metrics_lb_policy.h [infra] Fix absl::Mutex check and remove all uses (#33144) 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 [interop] fix C++ server to add mutex for orca_oob test (#33278) 2 years ago
interop_client.h [testing] Update orca-* tests for better compatibility (#32630) 2 years 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 [GcpObservability] Remove sleep from observability test client (#32817) 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
rpc_behavior_lb_policy.cc [interop] Fix crash in pick_first LB policy (#33519) 1 year 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 [testing]: Add "orca_per_rpc" test case (#32524) 2 years ago
xds_interop_client.cc [PSM Interop] Add custom_lb test client (#32757) 2 years ago
xds_interop_server.cc [interop] Implement "hostname" for RPC behavior (#33446) 1 year ago
xds_interop_server_lib.cc [interop] Implement "hostname" for RPC behavior (#33446) 1 year ago
xds_interop_server_lib.h [interop] Implement "hostname" for RPC behavior (#33446) 1 year ago
xds_interop_server_test.cc [interop] Implement "hostname" for RPC behavior (#33446) 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}