grpc/test/cpp/interop
Eugene Ostroukhov fc4736c1ad
[interop] Fix crash in pick_first LB policy (#33519)
Fixes http://b/288420022
2023-06-22 16:29:15 -07:00
..
BUILD [interop] Implement "hostname" for RPC behavior (#33446) 2023-06-16 11:14:01 -07:00
README.md [testing]: Add "orca_per_rpc" test case (#32524) 2023-03-14 11:06:31 -07:00
backend_metrics_lb_policy.cc [LB policies] add delegating helper classes (#33445) 2023-06-15 08:08:47 -07:00
backend_metrics_lb_policy.h [infra] Fix absl::Mutex check and remove all uses (#33144) 2023-05-16 12:50:52 -07:00
client.cc [testing]: Add "orca_oob" test case (#32599) 2023-03-15 08:24:36 -07:00
client_helper.cc [testing]: Add "orca_per_rpc" test case (#32524) 2023-03-14 11:06:31 -07:00
client_helper.h [testing]: Add "orca_per_rpc" test case (#32524) 2023-03-14 11:06:31 -07:00
grpclb_fallback_test.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2023-01-11 08:50:32 -08:00
http2_client.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2023-01-11 08:50:32 -08:00
http2_client.h Convert c-style comments to C++-style comments (#31923) 2022-12-22 23:01:53 -08:00
interop_client.cc [interop] fix C++ server to add mutex for orca_oob test (#33278) 2023-05-31 20:07:51 -07:00
interop_client.h [testing] Update orca-* tests for better compatibility (#32630) 2023-03-16 12:54:59 -07:00
interop_server.cc [interop] fix C++ server to add mutex for orca_oob test (#33278) 2023-05-31 20:07:51 -07:00
interop_server_bootstrap.cc Convert c-style comments to C++-style comments (#31923) 2022-12-22 23:01:53 -08:00
interop_test.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2023-01-11 08:50:32 -08:00
interop_test_with_metadata_log.sh add --log_metadata_and_status feature to interop_client (#28021) 2021-11-23 15:32:13 -08:00
istio_echo_server.cc Revert "Revert "[c++] Move environment functions to C++ (#30937)" (#30986)" (#30988) 2022-09-14 14:19:36 -07:00
istio_echo_server_lib.cc Istio Echo: Add version string (#30477) 2022-08-03 10:35:31 -07:00
istio_echo_server_lib.h Istio Echo: Add version string (#30477) 2022-08-03 10:35:31 -07:00
istio_echo_server_test.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2023-01-11 08:50:32 -08:00
metrics_client.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2023-01-11 08:50:32 -08:00
observability_client.cc [GcpObservability] Remove sleep from observability test client (#32817) 2023-04-06 05:25:22 +00:00
observability_interop_server_bootstrap.cc GCP Observability testing for C++ (#32531) 2023-03-02 18:10:48 -08:00
reconnect_interop_client.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2023-01-11 08:50:32 -08:00
reconnect_interop_server.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2023-01-11 08:50:32 -08:00
rpc_behavior_lb_policy.cc [interop] Fix crash in pick_first LB policy (#33519) 2023-06-22 16:29:15 -07:00
rpc_behavior_lb_policy.h [PSM Interop] Add custom_lb test client (#32757) 2023-03-31 14:03:44 -07:00
server_helper.cc Convert c-style comments to C++-style comments (#31923) 2022-12-22 23:01:53 -08:00
server_helper.h Convert c-style comments to C++-style comments (#31923) 2022-12-22 23:01:53 -08:00
stress_interop_client.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2023-01-11 08:50:32 -08:00
stress_interop_client.h Fix include guards for src/ and test/ directories (#32167) 2023-01-20 16:27:27 -08:00
stress_test.cc [cleanup] Eliminate usage of GRPC_ASSERT(false...); (#31757) 2023-01-11 08:50:32 -08:00
xds_federation_client.cc [testing]: Add "orca_per_rpc" test case (#32524) 2023-03-14 11:06:31 -07:00
xds_interop_client.cc [PSM Interop] Add custom_lb test client (#32757) 2023-03-31 14:03:44 -07:00
xds_interop_server.cc [interop] Implement "hostname" for RPC behavior (#33446) 2023-06-16 11:14:01 -07:00
xds_interop_server_lib.cc [interop] Implement "hostname" for RPC behavior (#33446) 2023-06-16 11:14:01 -07:00
xds_interop_server_lib.h [interop] Implement "hostname" for RPC behavior (#33446) 2023-06-16 11:14:01 -07:00
xds_interop_server_test.cc [interop] Implement "hostname" for RPC behavior (#33446) 2023-06-16 11:14:01 -07:00

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}