Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: third_party/grpc/test/cpp/interop/interop_client.h

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 *
3 * Copyright 2015-2016, 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
37 #include <memory>
38
39 #include <grpc/grpc.h>
40 #include <grpc++/channel.h>
41 #include "src/proto/grpc/testing/messages.grpc.pb.h"
42 #include "src/proto/grpc/testing/test.grpc.pb.h"
43
44 namespace grpc {
45 namespace testing {
46
47 // Function pointer for custom checks.
48 using CheckerFn =
49 std::function<void(const InteropClientContextInspector&,
50 const SimpleRequest*, const SimpleResponse*)>;
51
52 class InteropClient {
53 public:
54 explicit InteropClient(std::shared_ptr<Channel> channel);
55 explicit InteropClient(
56 std::shared_ptr<Channel> channel,
57 bool new_stub_every_test_case); // If new_stub_every_test_case is true,
58 // a new TestService::Stub object is
59 // created for every test case below
60 ~InteropClient() {}
61
62 void Reset(std::shared_ptr<Channel> channel);
63
64 void DoEmpty();
65 void DoLargeUnary();
66 void DoLargeCompressedUnary();
67 void DoPingPong();
68 void DoHalfDuplex();
69 void DoRequestStreaming();
70 void DoResponseStreaming();
71 void DoResponseCompressedStreaming();
72 void DoResponseStreamingWithSlowConsumer();
73 void DoCancelAfterBegin();
74 void DoCancelAfterFirstResponse();
75 void DoTimeoutOnSleepingServer();
76 void DoEmptyStream();
77 void DoStatusWithMessage();
78 void DoCustomMetadata();
79 // Auth tests.
80 // username is a string containing the user email
81 void DoJwtTokenCreds(const grpc::string& username);
82 void DoComputeEngineCreds(const grpc::string& default_service_account,
83 const grpc::string& oauth_scope);
84 // username the GCE default service account email
85 void DoOauth2AuthToken(const grpc::string& username,
86 const grpc::string& oauth_scope);
87 // username is a string containing the user email
88 void DoPerRpcCreds(const grpc::string& json_key);
89
90 private:
91 class ServiceStub {
92 public:
93 // If new_stub_every_call = true, pointer to a new instance of
94 // TestServce::Stub is returned by Get() everytime it is called
95 ServiceStub(std::shared_ptr<Channel> channel, bool new_stub_every_call);
96
97 TestService::Stub* Get();
98
99 void Reset(std::shared_ptr<Channel> channel);
100
101 private:
102 std::unique_ptr<TestService::Stub> stub_;
103 std::shared_ptr<Channel> channel_;
104 bool new_stub_every_call_; // If true, a new stub is returned by every
105 // Get() call
106 };
107
108 void PerformLargeUnary(SimpleRequest* request, SimpleResponse* response);
109
110 /// Run \a custom_check_fn as an additional check.
111 void PerformLargeUnary(SimpleRequest* request, SimpleResponse* response,
112 CheckerFn custom_checks_fn);
113 void AssertOkOrPrintErrorStatus(const Status& s);
114 ServiceStub serviceStub_;
115 };
116
117 } // namespace testing
118 } // namespace grpc
119
120 #endif // GRPC_TEST_CPP_INTEROP_INTEROP_CLIENT_H
OLDNEW
« no previous file with comments | « third_party/grpc/test/cpp/interop/client_helper.cc ('k') | third_party/grpc/test/cpp/interop/interop_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698