forked from googleapis/google-cloud-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection_options_test.cc
240 lines (202 loc) · 9.79 KB
/
connection_options_test.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "google/cloud/connection_options.h"
#include "google/cloud/internal/algorithm.h"
#include "google/cloud/internal/background_threads_impl.h"
#include "google/cloud/internal/compiler_info.h"
#include "google/cloud/log.h"
#include "google/cloud/testing_util/scoped_environment.h"
#include <gmock/gmock.h>
#include <map>
// This test disables all deprecation warnings because it is supposed to test a
// deprecated (but not retired) class.
#include "google/cloud/internal/disable_deprecation_warnings.inc"
namespace google {
namespace cloud {
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
namespace {
using ::testing::ElementsAre;
using ::testing::StartsWith;
using ::testing::UnorderedElementsAre;
/// Use these traits to test ConnectionOptions.
struct TestTraits {
static std::string default_endpoint() { return "test-endpoint.example.com"; }
static std::string user_agent_prefix() { return "test-prefix"; }
static int default_num_channels() { return 7; }
};
using TestConnectionOptions = ConnectionOptions<TestTraits>;
TEST(ConnectionOptionsTest, Credentials) {
// In the CI environment grpc::GoogleDefaultCredentials() may assert. Use the
// insecure credentials to initialize the conn_opts in any unit test.
auto expected = grpc::InsecureChannelCredentials();
TestConnectionOptions conn_opts(expected);
EXPECT_EQ(expected.get(), conn_opts.credentials().get());
EXPECT_EQ(expected,
internal::MakeOptions(conn_opts).get<GrpcCredentialOption>());
auto other_credentials = grpc::InsecureChannelCredentials();
EXPECT_NE(expected, other_credentials);
conn_opts.set_credentials(other_credentials);
EXPECT_EQ(other_credentials, conn_opts.credentials());
EXPECT_EQ(other_credentials,
internal::MakeOptions(conn_opts).get<GrpcCredentialOption>());
}
TEST(ConnectionOptionsTest, AdminEndpoint) {
TestConnectionOptions conn_opts(grpc::InsecureChannelCredentials());
EXPECT_EQ(TestTraits::default_endpoint(), conn_opts.endpoint());
EXPECT_EQ(conn_opts.endpoint(),
internal::MakeOptions(conn_opts).get<EndpointOption>());
conn_opts.set_endpoint("invalid-endpoint");
EXPECT_EQ("invalid-endpoint", conn_opts.endpoint());
EXPECT_EQ(conn_opts.endpoint(),
internal::MakeOptions(conn_opts).get<EndpointOption>());
}
TEST(ConnectionOptionsTest, NumChannels) {
TestConnectionOptions conn_opts(grpc::InsecureChannelCredentials());
int num_channels = conn_opts.num_channels();
EXPECT_EQ(TestTraits::default_num_channels(), num_channels);
EXPECT_EQ(conn_opts.num_channels(),
internal::MakeOptions(conn_opts).get<GrpcNumChannelsOption>());
num_channels *= 2; // ensure we change it from the default value.
conn_opts.set_num_channels(num_channels);
EXPECT_EQ(num_channels, conn_opts.num_channels());
EXPECT_EQ(conn_opts.num_channels(),
internal::MakeOptions(conn_opts).get<GrpcNumChannelsOption>());
}
TEST(ConnectionOptionsTest, Tracing) {
TestConnectionOptions conn_opts(grpc::InsecureChannelCredentials());
conn_opts.enable_tracing("fake-component");
EXPECT_TRUE(conn_opts.tracing_enabled("fake-component"));
Options opts = internal::MakeOptions(conn_opts);
auto components = opts.get<LoggingComponentsOption>();
EXPECT_TRUE(internal::Contains(components, "fake-component"));
EXPECT_EQ(conn_opts.components(), components);
conn_opts.disable_tracing("fake-component");
opts = internal::MakeOptions(conn_opts);
components = opts.get<LoggingComponentsOption>();
EXPECT_FALSE(conn_opts.tracing_enabled("fake-component"));
EXPECT_FALSE(internal::Contains(components, "fake-component"));
EXPECT_EQ(conn_opts.components(), components);
}
TEST(ConnectionOptionsTest, DefaultTracingUnset) {
testing_util::ScopedEnvironment env("GOOGLE_CLOUD_CPP_ENABLE_TRACING", {});
TestConnectionOptions conn_opts(grpc::InsecureChannelCredentials());
EXPECT_FALSE(conn_opts.tracing_enabled("rpc"));
Options opts = internal::MakeOptions(conn_opts);
auto const& components = opts.get<LoggingComponentsOption>();
EXPECT_EQ(conn_opts.components(), components);
}
TEST(ConnectionOptionsTest, DefaultTracingSet) {
testing_util::ScopedEnvironment env("GOOGLE_CLOUD_CPP_ENABLE_TRACING",
"foo,bar,baz");
TestConnectionOptions conn_opts(grpc::InsecureChannelCredentials());
EXPECT_FALSE(conn_opts.tracing_enabled("rpc"));
EXPECT_TRUE(conn_opts.tracing_enabled("foo"));
EXPECT_TRUE(conn_opts.tracing_enabled("bar"));
EXPECT_TRUE(conn_opts.tracing_enabled("baz"));
EXPECT_THAT(internal::MakeOptions(conn_opts).get<LoggingComponentsOption>(),
UnorderedElementsAre("foo", "bar", "baz"));
}
TEST(ConnectionOptionsTest, TracingOptions) {
testing_util::ScopedEnvironment env("GOOGLE_CLOUD_CPP_TRACING_OPTIONS",
",single_line_mode=off"
",use_short_repeated_primitives=off"
",truncate_string_field_longer_than=32");
TestConnectionOptions conn_opts(grpc::InsecureChannelCredentials());
TracingOptions tracing_options = conn_opts.tracing_options();
EXPECT_FALSE(tracing_options.single_line_mode());
EXPECT_FALSE(tracing_options.use_short_repeated_primitives());
EXPECT_EQ(32, tracing_options.truncate_string_field_longer_than());
EXPECT_EQ(conn_opts.tracing_options(),
internal::MakeOptions(conn_opts).get<GrpcTracingOptionsOption>());
}
TEST(ConnectionOptionsTest, ChannelPoolName) {
TestConnectionOptions conn_opts(grpc::InsecureChannelCredentials());
EXPECT_TRUE(conn_opts.channel_pool_domain().empty());
EXPECT_FALSE(
internal::MakeOptions(conn_opts).has<GrpcChannelArgumentsOption>());
conn_opts.set_channel_pool_domain("test-channel-pool");
EXPECT_EQ("test-channel-pool", conn_opts.channel_pool_domain());
auto opts =
internal::MakeOptions(conn_opts).get<GrpcChannelArgumentsOption>();
EXPECT_EQ(opts["grpc.channel_pooling_domain"], "test-channel-pool");
}
TEST(ConnectionOptionsTest, UserAgentProducts) {
TestConnectionOptions conn_opts(grpc::InsecureChannelCredentials());
EXPECT_EQ(TestTraits::user_agent_prefix(), conn_opts.user_agent_prefix());
EXPECT_THAT(internal::MakeOptions(conn_opts).get<UserAgentProductsOption>(),
ElementsAre(conn_opts.user_agent_prefix()));
conn_opts.add_user_agent_prefix("test-prefix/1.2.3");
EXPECT_EQ("test-prefix/1.2.3 " + TestTraits::user_agent_prefix(),
conn_opts.user_agent_prefix());
EXPECT_THAT(internal::MakeOptions(conn_opts).get<UserAgentProductsOption>(),
ElementsAre(conn_opts.user_agent_prefix()));
}
TEST(ConnectionOptionsTest, CreateChannelArgumentsDefault) {
TestConnectionOptions conn_opts(grpc::InsecureChannelCredentials());
auto actual = conn_opts.CreateChannelArguments();
auto user_agent =
internal::GetStringChannelArgument(actual, "grpc.primary_user_agent");
ASSERT_TRUE(user_agent.has_value());
// The gRPC library adds its own version to the user-agent string, so we only
// check that our component appears in it.
EXPECT_THAT(*user_agent, StartsWith(conn_opts.user_agent_prefix()));
}
TEST(ConnectionOptionsTest, CreateChannelArgumentsWithChannelPool) {
TestConnectionOptions conn_opts(grpc::InsecureChannelCredentials());
conn_opts.set_channel_pool_domain("testing-pool");
conn_opts.add_user_agent_prefix("test-prefix/1.2.3");
auto actual = conn_opts.CreateChannelArguments();
auto testing_pool =
internal::GetStringChannelArgument(actual, "grpc.channel_pooling_domain");
ASSERT_TRUE(testing_pool.has_value());
EXPECT_EQ(*testing_pool, "testing-pool");
auto user_agent =
internal::GetStringChannelArgument(actual, "grpc.primary_user_agent");
ASSERT_TRUE(user_agent.has_value());
// The gRPC library adds its own version to the user-agent string, so we only
// check that our component appears in it.
EXPECT_THAT(*user_agent, StartsWith(conn_opts.user_agent_prefix()));
}
TEST(ConnectionOptionsTest, CustomBackgroundThreads) {
CompletionQueue cq;
auto conn_opts = TestConnectionOptions(grpc::InsecureChannelCredentials())
.DisableBackgroundThreads(cq);
auto background = conn_opts.background_threads_factory()();
using ms = std::chrono::milliseconds;
// Schedule some work, it cannot execute because there is no thread attached.
promise<std::thread::id> p;
auto background_thread_id = p.get_future();
background->cq().RunAsync(
[&p](CompletionQueue&) { p.set_value(std::this_thread::get_id()); });
EXPECT_NE(std::future_status::ready, background_thread_id.wait_for(ms(1)));
// Verify we can create our own threads to drain the completion queue.
std::thread t([&cq] { cq.Run(); });
EXPECT_EQ(t.get_id(), background_thread_id.get());
cq.Shutdown();
t.join();
}
TEST(ConnectionOptionsTest, DefaultBackgroundThreads) {
auto constexpr kThreadCount = 4;
auto conn_opts = TestConnectionOptions(grpc::InsecureChannelCredentials())
.set_background_thread_pool_size(kThreadCount);
auto background = conn_opts.background_threads_factory()();
auto* tp = dynamic_cast<internal::AutomaticallyCreatedBackgroundThreads*>(
background.get());
ASSERT_NE(nullptr, tp);
EXPECT_EQ(kThreadCount, tp->pool_size());
}
} // namespace
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
} // namespace cloud
} // namespace google