aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop/interop_client.h
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-08-09 15:50:21 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2015-08-09 16:16:53 -0700
commitcd37d5852ba156528997dde1c3757752da857d25 (patch)
tree7c1f109e78fcb037bb6d2751aab7f7b198b96f13 /test/cpp/interop/interop_client.h
parent49a513031880a6303273f3fe3cec837225a5ad78 (diff)
Added new tests for compression
Diffstat (limited to 'test/cpp/interop/interop_client.h')
-rw-r--r--test/cpp/interop/interop_client.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/cpp/interop/interop_client.h b/test/cpp/interop/interop_client.h
index 6e26c49e5d..995b13036a 100644
--- a/test/cpp/interop/interop_client.h
+++ b/test/cpp/interop/interop_client.h
@@ -52,10 +52,12 @@ class InteropClient {
void DoEmpty();
void DoLargeUnary();
+ void DoLargeCompressedUnary();
void DoPingPong();
void DoHalfDuplex();
void DoRequestStreaming();
void DoResponseStreaming();
+ void DoResponseCompressedStreaming();
void DoResponseStreamingWithSlowConsumer();
void DoCancelAfterBegin();
void DoCancelAfterFirstResponse();
@@ -78,6 +80,8 @@ class InteropClient {
private:
void PerformLargeUnary(SimpleRequest* request, SimpleResponse* response);
+ void PerformLargeCompressedUnary(SimpleRequest* request,
+ SimpleResponse* response);
void AssertOkOrPrintErrorStatus(const Status& s);
std::shared_ptr<ChannelInterface> channel_;