Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Copyright 2015, Google Inc. |
| 4 | * All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions are |
| 8 | * met: |
| 9 | * |
| 10 | * * Redistributions of source code must retain the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer. |
| 12 | * * Redistributions in binary form must reproduce the above |
| 13 | * copyright notice, this list of conditions and the following disclaimer |
| 14 | * in the documentation and/or other materials provided with the |
| 15 | * distribution. |
| 16 | * * Neither the name of Google Inc. nor the names of its |
| 17 | * contributors may be used to endorse or promote products derived from |
| 18 | * this software without specific prior written permission. |
| 19 | * |
| 20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 21 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 22 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 23 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 24 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 25 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 26 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | * |
| 32 | */ |
| 33 | |
| 34 | #ifndef GRPC_TEST_CPP_INTEROP_INTEROP_CLIENT_H |
| 35 | #define GRPC_TEST_CPP_INTEROP_INTEROP_CLIENT_H |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame^] | 36 | |
Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 37 | #include <memory> |
| 38 | |
| 39 | #include <grpc/grpc.h> |
yang-g | 8c2be9f | 2015-08-19 16:28:09 -0700 | [diff] [blame] | 40 | #include <grpc++/channel.h> |
Abhishek Kumar | 60572d4 | 2015-04-16 20:45:25 -0700 | [diff] [blame] | 41 | #include "test/proto/messages.grpc.pb.h" |
Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 42 | |
| 43 | namespace grpc { |
| 44 | namespace testing { |
| 45 | |
| 46 | class InteropClient { |
| 47 | public: |
yang-g | 8c2be9f | 2015-08-19 16:28:09 -0700 | [diff] [blame] | 48 | explicit InteropClient(std::shared_ptr<Channel> channel); |
Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 49 | ~InteropClient() {} |
| 50 | |
yang-g | 8c2be9f | 2015-08-19 16:28:09 -0700 | [diff] [blame] | 51 | void Reset(std::shared_ptr<Channel> channel) { channel_ = channel; } |
Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 52 | |
| 53 | void DoEmpty(); |
| 54 | void DoLargeUnary(); |
David Garcia Quintas | cd37d58 | 2015-08-09 15:50:21 -0700 | [diff] [blame] | 55 | void DoLargeCompressedUnary(); |
Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 56 | void DoPingPong(); |
| 57 | void DoHalfDuplex(); |
| 58 | void DoRequestStreaming(); |
| 59 | void DoResponseStreaming(); |
David Garcia Quintas | cd37d58 | 2015-08-09 15:50:21 -0700 | [diff] [blame] | 60 | void DoResponseCompressedStreaming(); |
Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 61 | void DoResponseStreamingWithSlowConsumer(); |
Yang Gao | 68d6157 | 2015-04-24 14:42:42 -0700 | [diff] [blame] | 62 | void DoCancelAfterBegin(); |
| 63 | void DoCancelAfterFirstResponse(); |
yang-g | 69563b9 | 2015-07-10 15:32:11 -0700 | [diff] [blame] | 64 | void DoTimeoutOnSleepingServer(); |
Abhishek Kumar | e1c867d | 2015-08-05 11:04:45 -0700 | [diff] [blame] | 65 | void DoStatusWithMessage(); |
Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 66 | // Auth tests. |
| 67 | // username is a string containing the user email |
| 68 | void DoJwtTokenCreds(const grpc::string& username); |
| 69 | void DoComputeEngineCreds(const grpc::string& default_service_account, |
| 70 | const grpc::string& oauth_scope); |
| 71 | // username is a string containing the user email |
| 72 | void DoServiceAccountCreds(const grpc::string& username, |
| 73 | const grpc::string& oauth_scope); |
yang-g | be5f059 | 2015-07-13 11:11:50 -0700 | [diff] [blame] | 74 | // username is a string containing the user email |
| 75 | void DoOauth2AuthToken(const grpc::string& username, |
| 76 | const grpc::string& oauth_scope); |
yang-g | 5bf510b | 2015-07-14 10:54:29 -0700 | [diff] [blame] | 77 | // username is a string containing the user email |
| 78 | void DoPerRpcCreds(const grpc::string& username, |
| 79 | const grpc::string& oauth_scope); |
Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 80 | |
| 81 | private: |
| 82 | void PerformLargeUnary(SimpleRequest* request, SimpleResponse* response); |
Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 83 | void AssertOkOrPrintErrorStatus(const Status& s); |
| 84 | |
yang-g | 8c2be9f | 2015-08-19 16:28:09 -0700 | [diff] [blame] | 85 | std::shared_ptr<Channel> channel_; |
Yang Gao | a400207 | 2015-04-09 23:25:21 -0700 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | } // namespace testing |
| 89 | } // namespace grpc |
| 90 | |
| 91 | #endif // GRPC_TEST_CPP_INTEROP_INTEROP_CLIENT_H |