blob: 3161f7f87563302cacd52bc7ef6f83fd3701a57d [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
36#include <memory>
37
38#include <grpc/grpc.h>
39#include <grpc++/channel_interface.h>
40#include <grpc++/status.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:
48 explicit InteropClient(std::shared_ptr<ChannelInterface> channel);
49 ~InteropClient() {}
50
51 void Reset(std::shared_ptr<ChannelInterface> channel) { channel_ = channel; }
52
53 void DoEmpty();
54 void DoLargeUnary();
55 void DoPingPong();
56 void DoHalfDuplex();
57 void DoRequestStreaming();
58 void DoResponseStreaming();
59 void DoResponseStreamingWithSlowConsumer();
60 // Auth tests.
61 // username is a string containing the user email
62 void DoJwtTokenCreds(const grpc::string& username);
63 void DoComputeEngineCreds(const grpc::string& default_service_account,
64 const grpc::string& oauth_scope);
65 // username is a string containing the user email
66 void DoServiceAccountCreds(const grpc::string& username,
67 const grpc::string& oauth_scope);
68
69 private:
70 void PerformLargeUnary(SimpleRequest* request, SimpleResponse* response);
71 void AssertOkOrPrintErrorStatus(const Status& s);
72
73 std::shared_ptr<ChannelInterface> channel_;
74};
75
76} // namespace testing
77} // namespace grpc
78
79#endif // GRPC_TEST_CPP_INTEROP_INTEROP_CLIENT_H