blob: 5e26cc82e6685d95c18015f5dd49d6c187acfb5c [file] [log] [blame]
Yang Gaoa4002072015-04-09 23:25:21 -07001/*
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-g9e2f90c2015-08-21 15:35:03 -070036
Yang Gaoa4002072015-04-09 23:25:21 -070037#include <memory>
38
39#include <grpc/grpc.h>
yang-g8c2be9f2015-08-19 16:28:09 -070040#include <grpc++/channel.h>
Abhishek Kumar60572d42015-04-16 20:45:25 -070041#include "test/proto/messages.grpc.pb.h"
Yang Gaoa4002072015-04-09 23:25:21 -070042
43namespace grpc {
44namespace testing {
45
46class InteropClient {
47 public:
yang-g8c2be9f2015-08-19 16:28:09 -070048 explicit InteropClient(std::shared_ptr<Channel> channel);
Yang Gaoa4002072015-04-09 23:25:21 -070049 ~InteropClient() {}
50
yang-g8c2be9f2015-08-19 16:28:09 -070051 void Reset(std::shared_ptr<Channel> channel) { channel_ = channel; }
Yang Gaoa4002072015-04-09 23:25:21 -070052
53 void DoEmpty();
54 void DoLargeUnary();
David Garcia Quintascd37d582015-08-09 15:50:21 -070055 void DoLargeCompressedUnary();
Yang Gaoa4002072015-04-09 23:25:21 -070056 void DoPingPong();
57 void DoHalfDuplex();
58 void DoRequestStreaming();
59 void DoResponseStreaming();
David Garcia Quintascd37d582015-08-09 15:50:21 -070060 void DoResponseCompressedStreaming();
Yang Gaoa4002072015-04-09 23:25:21 -070061 void DoResponseStreamingWithSlowConsumer();
Yang Gao68d61572015-04-24 14:42:42 -070062 void DoCancelAfterBegin();
63 void DoCancelAfterFirstResponse();
yang-g69563b92015-07-10 15:32:11 -070064 void DoTimeoutOnSleepingServer();
Abhishek Kumare1c867d2015-08-05 11:04:45 -070065 void DoStatusWithMessage();
Yang Gaoa4002072015-04-09 23:25:21 -070066 // 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-gbe5f0592015-07-13 11:11:50 -070074 // username is a string containing the user email
75 void DoOauth2AuthToken(const grpc::string& username,
76 const grpc::string& oauth_scope);
yang-g5bf510b2015-07-14 10:54:29 -070077 // username is a string containing the user email
78 void DoPerRpcCreds(const grpc::string& username,
79 const grpc::string& oauth_scope);
Yang Gaoa4002072015-04-09 23:25:21 -070080
81 private:
82 void PerformLargeUnary(SimpleRequest* request, SimpleResponse* response);
Yang Gaoa4002072015-04-09 23:25:21 -070083 void AssertOkOrPrintErrorStatus(const Status& s);
84
yang-g8c2be9f2015-08-19 16:28:09 -070085 std::shared_ptr<Channel> channel_;
Yang Gaoa4002072015-04-09 23:25:21 -070086};
87
88} // namespace testing
89} // namespace grpc
90
91#endif // GRPC_TEST_CPP_INTEROP_INTEROP_CLIENT_H