forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_test.cc
409 lines (356 loc) · 16.5 KB
/
server_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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#include <memory>
#include "common/common/version.h"
#include "common/network/address_impl.h"
#include "common/thread_local/thread_local_impl.h"
#include "server/server.h"
#include "test/integration/server.h"
#include "test/mocks/server/mocks.h"
#include "test/mocks/stats/mocks.h"
#include "test/test_common/environment.h"
#include "test/test_common/test_time.h"
#include "test/test_common/utility.h"
#include "gtest/gtest.h"
using testing::_;
using testing::Assign;
using testing::HasSubstr;
using testing::InSequence;
using testing::Invoke;
using testing::InvokeWithoutArgs;
using testing::Property;
using testing::Ref;
using testing::Return;
using testing::SaveArg;
using testing::StrictMock;
namespace Envoy {
namespace Server {
TEST(ServerInstanceUtil, flushHelper) {
InSequence s;
Stats::IsolatedStoreImpl store;
Stats::SourceImpl source(store);
store.counter("hello").inc();
store.gauge("world").set(5);
std::unique_ptr<Stats::MockSink> sink(new StrictMock<Stats::MockSink>());
EXPECT_CALL(*sink, flush(Ref(source))).WillOnce(Invoke([](Stats::Source& source) {
ASSERT_EQ(source.cachedCounters().size(), 1);
EXPECT_EQ(source.cachedCounters().front()->name(), "hello");
EXPECT_EQ(source.cachedCounters().front()->latch(), 1);
ASSERT_EQ(source.cachedGauges().size(), 1);
EXPECT_EQ(source.cachedGauges().front()->name(), "world");
EXPECT_EQ(source.cachedGauges().front()->value(), 5);
}));
std::list<Stats::SinkPtr> sinks;
sinks.emplace_back(std::move(sink));
InstanceUtil::flushMetricsToSinks(sinks, source);
}
class RunHelperTest : public testing::Test {
public:
RunHelperTest() : shutdown_(false) {
InSequence s;
sigterm_ = new Event::MockSignalEvent(&dispatcher_);
sigint_ = new Event::MockSignalEvent(&dispatcher_);
sigusr1_ = new Event::MockSignalEvent(&dispatcher_);
sighup_ = new Event::MockSignalEvent(&dispatcher_);
EXPECT_CALL(cm_, setInitializedCb(_)).WillOnce(SaveArg<0>(&cm_init_callback_));
EXPECT_CALL(overload_manager_, start());
ON_CALL(server_, shutdown()).WillByDefault(Assign(&shutdown_, true));
helper_ = std::make_unique<RunHelper>(server_, options_, dispatcher_, cm_, access_log_manager_,
init_manager_, overload_manager_,
[this] { start_workers_.ready(); });
}
NiceMock<MockInstance> server_;
testing::NiceMock<MockOptions> options_;
NiceMock<Event::MockDispatcher> dispatcher_;
NiceMock<Upstream::MockClusterManager> cm_;
NiceMock<AccessLog::MockAccessLogManager> access_log_manager_;
NiceMock<MockOverloadManager> overload_manager_;
InitManagerImpl init_manager_;
ReadyWatcher start_workers_;
std::unique_ptr<RunHelper> helper_;
std::function<void()> cm_init_callback_;
Event::MockSignalEvent* sigterm_;
Event::MockSignalEvent* sigint_;
Event::MockSignalEvent* sigusr1_;
Event::MockSignalEvent* sighup_;
bool shutdown_ = false;
};
TEST_F(RunHelperTest, Normal) {
EXPECT_CALL(start_workers_, ready());
cm_init_callback_();
}
TEST_F(RunHelperTest, ShutdownBeforeCmInitialize) {
EXPECT_CALL(start_workers_, ready()).Times(0);
sigterm_->callback_();
EXPECT_CALL(server_, isShutdown()).WillOnce(Return(shutdown_));
cm_init_callback_();
}
TEST_F(RunHelperTest, ShutdownBeforeInitManagerInit) {
EXPECT_CALL(start_workers_, ready()).Times(0);
Init::MockTarget target;
init_manager_.registerTarget(target);
EXPECT_CALL(target, initialize(_));
cm_init_callback_();
sigterm_->callback_();
EXPECT_CALL(server_, isShutdown()).WillOnce(Return(shutdown_));
target.callback_();
}
// Class creates minimally viable server instance for testing.
class ServerInstanceImplTest : public testing::TestWithParam<Network::Address::IpVersion> {
protected:
ServerInstanceImplTest() : version_(GetParam()) {}
void initialize(const std::string& bootstrap_path) {
if (bootstrap_path.empty()) {
options_.config_path_ = TestEnvironment::temporaryFileSubstitute(
"test/config/integration/server.json", {{"upstream_0", 0}, {"upstream_1", 0}}, version_);
} else {
options_.config_path_ = TestEnvironment::temporaryFileSubstitute(
bootstrap_path, {{"upstream_0", 0}, {"upstream_1", 0}}, version_);
}
server_ = std::make_unique<InstanceImpl>(
options_, test_time_.timeSystem(),
Network::Address::InstanceConstSharedPtr(new Network::Address::Ipv4Instance("127.0.0.1")),
hooks_, restart_, stats_store_, fakelock_, component_factory_,
std::make_unique<NiceMock<Runtime::MockRandomGenerator>>(), thread_local_,
Thread::threadFactoryForTest());
EXPECT_TRUE(server_->api().fileExists("/dev/null"));
}
void initializeWithHealthCheckParams(const std::string& bootstrap_path, const double timeout,
const double interval) {
options_.config_path_ = TestEnvironment::temporaryFileSubstitute(
bootstrap_path,
{{"health_check_timeout", fmt::format("{}", timeout).c_str()},
{"health_check_interval", fmt::format("{}", interval).c_str()}},
TestEnvironment::PortMap{}, version_);
server_ = std::make_unique<InstanceImpl>(
options_, test_time_.timeSystem(),
Network::Address::InstanceConstSharedPtr(new Network::Address::Ipv4Instance("127.0.0.1")),
hooks_, restart_, stats_store_, fakelock_, component_factory_,
std::make_unique<NiceMock<Runtime::MockRandomGenerator>>(), thread_local_,
Thread::threadFactoryForTest());
EXPECT_TRUE(server_->api().fileExists("/dev/null"));
}
// Returns the server's tracer as a pointer, for use in dynamic_cast tests.
Tracing::HttpTracer* tracer() { return &server_->httpContext().tracer(); };
Network::Address::IpVersion version_;
testing::NiceMock<MockOptions> options_;
DefaultTestHooks hooks_;
testing::NiceMock<MockHotRestart> restart_;
ThreadLocal::InstanceImpl thread_local_;
Stats::TestIsolatedStoreImpl stats_store_;
Thread::MutexBasicLockable fakelock_;
TestComponentFactory component_factory_;
DangerousDeprecatedTestTime test_time_;
std::unique_ptr<InstanceImpl> server_;
};
INSTANTIATE_TEST_CASE_P(IpVersions, ServerInstanceImplTest,
testing::ValuesIn(TestEnvironment::getIpVersionsForTest()),
TestUtility::ipTestParamsToString);
TEST_P(ServerInstanceImplTest, V2ConfigOnly) {
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
options_.v2_config_only_ = true;
try {
initialize(std::string());
FAIL();
} catch (const EnvoyException& e) {
EXPECT_THAT(e.what(), HasSubstr("Unable to parse JSON as proto"));
}
}
TEST_P(ServerInstanceImplTest, V1ConfigFallback) {
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
options_.v2_config_only_ = false;
initialize(std::string());
}
TEST_P(ServerInstanceImplTest, Stats) {
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
options_.concurrency_ = 2;
options_.hot_restart_epoch_ = 3;
initialize(std::string());
EXPECT_NE(nullptr, TestUtility::findCounter(stats_store_, "server.watchdog_miss"));
EXPECT_EQ(2L, TestUtility::findGauge(stats_store_, "server.concurrency")->value());
EXPECT_EQ(3L, TestUtility::findGauge(stats_store_, "server.hot_restart_epoch")->value());
}
// Validate server localInfo() from bootstrap Node.
TEST_P(ServerInstanceImplTest, BootstrapNode) {
initialize("test/server/node_bootstrap.yaml");
EXPECT_EQ("bootstrap_zone", server_->localInfo().zoneName());
EXPECT_EQ("bootstrap_cluster", server_->localInfo().clusterName());
EXPECT_EQ("bootstrap_id", server_->localInfo().nodeName());
EXPECT_EQ("bootstrap_sub_zone", server_->localInfo().node().locality().sub_zone());
EXPECT_EQ(VersionInfo::version(), server_->localInfo().node().build_version());
}
// Validate server localInfo() from bootstrap Node with CLI overrides.
TEST_P(ServerInstanceImplTest, BootstrapNodeWithOptionsOverride) {
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
options_.service_zone_name_ = "some_zone_name";
initialize("test/server/node_bootstrap.yaml");
EXPECT_EQ("some_zone_name", server_->localInfo().zoneName());
EXPECT_EQ("some_cluster_name", server_->localInfo().clusterName());
EXPECT_EQ("some_node_name", server_->localInfo().nodeName());
EXPECT_EQ("bootstrap_sub_zone", server_->localInfo().node().locality().sub_zone());
EXPECT_EQ(VersionInfo::version(), server_->localInfo().node().build_version());
}
// Regression test for segfault when server initialization fails prior to
// ClusterManager initialization.
TEST_P(ServerInstanceImplTest, BootstrapClusterManagerInitializationFail) {
EXPECT_THROW_WITH_MESSAGE(initialize("test/server/cluster_dupe_bootstrap.yaml"), EnvoyException,
"cluster manager: duplicate cluster 'service_google'");
}
// Test for protoc-gen-validate constraint on invalid timeout entry of a health check config entry.
TEST_P(ServerInstanceImplTest, BootstrapClusterHealthCheckInvalidTimeout) {
options_.v2_config_only_ = true;
EXPECT_THROW_WITH_REGEX(
initializeWithHealthCheckParams("test/server/cluster_health_check_bootstrap.yaml", 0, 0.25),
EnvoyException,
"HealthCheckValidationError.Timeout: \\[\"value must be greater than \" \"0s\"\\]");
}
// Test for protoc-gen-validate constraint on invalid interval entry of a health check config entry.
TEST_P(ServerInstanceImplTest, BootstrapClusterHealthCheckInvalidInterval) {
options_.v2_config_only_ = true;
EXPECT_THROW_WITH_REGEX(
initializeWithHealthCheckParams("test/server/cluster_health_check_bootstrap.yaml", 0.5, 0),
EnvoyException,
"HealthCheckValidationError.Interval: \\[\"value must be greater than \" \"0s\"\\]");
}
// Test for protoc-gen-validate constraint on invalid timeout and interval entry of a health check
// config entry.
TEST_P(ServerInstanceImplTest, BootstrapClusterHealthCheckInvalidTimeoutAndInterval) {
options_.v2_config_only_ = true;
EXPECT_THROW_WITH_REGEX(
initializeWithHealthCheckParams("test/server/cluster_health_check_bootstrap.yaml", 0, 0),
EnvoyException,
"HealthCheckValidationError.Timeout: \\[\"value must be greater than \" \"0s\"\\]");
}
// Test for protoc-gen-validate constraint on valid interval entry of a health check config entry.
TEST_P(ServerInstanceImplTest, BootstrapClusterHealthCheckValidTimeoutAndInterval) {
options_.v2_config_only_ = true;
EXPECT_NO_THROW(initializeWithHealthCheckParams("test/server/cluster_health_check_bootstrap.yaml",
0.25, 0.5));
}
// Test that a Bootstrap proto with no address specified in its Admin field can go through
// initialization properly, but without starting an admin listener.
TEST_P(ServerInstanceImplTest, BootstrapNodeNoAdmin) {
EXPECT_NO_THROW(initialize("test/server/node_bootstrap_no_admin_port.yaml"));
// Admin::addListenerToHandler() calls one of handler's methods after checking that the Admin
// has a listener. So, the fact that passing a nullptr doesn't cause a segfault establishes
// that there is no listener.
server_->admin().addListenerToHandler(/*handler=*/nullptr);
}
// Validate that an admin config with a server address but no access log path is rejected.
TEST_P(ServerInstanceImplTest, BootstrapNodeWithoutAccessLog) {
EXPECT_THROW_WITH_MESSAGE(initialize("test/server/node_bootstrap_without_access_log.yaml"),
EnvoyException,
"An admin access log path is required for a listening server.");
}
// Empty bootstrap succeeeds.
TEST_P(ServerInstanceImplTest, EmptyBootstrap) {
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
options_.v2_config_only_ = true;
EXPECT_NO_THROW(initialize("test/server/empty_bootstrap.yaml"));
}
// Negative test for protoc-gen-validate constraints.
TEST_P(ServerInstanceImplTest, ValidateFail) {
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
options_.v2_config_only_ = true;
try {
initialize("test/server/empty_runtime.yaml");
FAIL();
} catch (const EnvoyException& e) {
EXPECT_THAT(e.what(), HasSubstr("Proto constraint validation failed"));
}
}
TEST_P(ServerInstanceImplTest, LogToFile) {
const std::string path =
TestEnvironment::temporaryPath("ServerInstanceImplTest_LogToFile_Test.log");
options_.log_path_ = path;
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
initialize(std::string());
EXPECT_TRUE(server_->api().fileExists(path));
GET_MISC_LOGGER().set_level(spdlog::level::info);
ENVOY_LOG_MISC(warn, "LogToFile test string");
Logger::Registry::getSink()->flush();
std::string log = server_->api().fileReadToEnd(path);
EXPECT_GT(log.size(), 0);
EXPECT_TRUE(log.find("LogToFile test string") != std::string::npos);
// Test that critical messages get immediately flushed
ENVOY_LOG_MISC(critical, "LogToFile second test string");
log = server_->api().fileReadToEnd(path);
EXPECT_TRUE(log.find("LogToFile second test string") != std::string::npos);
}
TEST_P(ServerInstanceImplTest, LogToFileError) {
options_.log_path_ = "/this/path/does/not/exist";
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
try {
initialize(std::string());
FAIL();
} catch (const EnvoyException& e) {
EXPECT_THAT(e.what(), HasSubstr("Failed to open log-file"));
}
}
// When there are no bootstrap CLI options, either for content or path, we can load the server with
// an empty config.
TEST_P(ServerInstanceImplTest, NoOptionsPassed) {
EXPECT_NO_THROW(server_.reset(new InstanceImpl(
options_, test_time_.timeSystem(),
Network::Address::InstanceConstSharedPtr(new Network::Address::Ipv4Instance("127.0.0.1")),
hooks_, restart_, stats_store_, fakelock_, component_factory_,
std::make_unique<NiceMock<Runtime::MockRandomGenerator>>(), thread_local_,
Thread::threadFactoryForTest())));
}
// Validate that when std::exception is unexpectedly thrown, we exit safely.
// This is a regression test for when we used to crash.
TEST_P(ServerInstanceImplTest, StdExceptionThrowInConstructor) {
EXPECT_CALL(restart_, initialize(_, _)).WillOnce(InvokeWithoutArgs([] {
throw(std::runtime_error("foobar"));
}));
EXPECT_THROW_WITH_MESSAGE(initialize("test/server/node_bootstrap.yaml"), std::runtime_error,
"foobar");
}
// Neither EnvoyException nor std::exception derived.
class FakeException {
public:
FakeException(const std::string& what) : what_(what) {}
const std::string& what() const { return what_; }
const std::string what_;
};
// Validate that when a totally unknown exception is unexpectedly thrown, we
// exit safely. This is a regression test for when we used to crash.
TEST_P(ServerInstanceImplTest, UnknownExceptionThrowInConstructor) {
EXPECT_CALL(restart_, initialize(_, _)).WillOnce(InvokeWithoutArgs([] {
throw(FakeException("foobar"));
}));
EXPECT_THROW_WITH_MESSAGE(initialize("test/server/node_bootstrap.yaml"), FakeException, "foobar");
}
TEST_P(ServerInstanceImplTest, MutexContentionEnabled) {
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
options_.mutex_tracing_enabled_ = true;
EXPECT_NO_THROW(initialize(std::string()));
}
TEST_P(ServerInstanceImplTest, NoHttpTracing) {
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
EXPECT_NO_THROW(initialize("test/server/empty_bootstrap.yaml"));
EXPECT_NE(nullptr, dynamic_cast<Tracing::HttpNullTracer*>(tracer()));
EXPECT_EQ(nullptr, dynamic_cast<Tracing::HttpTracerImpl*>(tracer()));
}
TEST_P(ServerInstanceImplTest, ZipkinHttpTracingEnabled) {
options_.service_cluster_name_ = "some_cluster_name";
options_.service_node_name_ = "some_node_name";
EXPECT_NO_THROW(initialize("test/server/zipkin_tracing.yaml"));
EXPECT_EQ(nullptr, dynamic_cast<Tracing::HttpNullTracer*>(tracer()));
// Note: there is no ZipkingTracerImpl object;
// source/extensions/tracers/zipkin/config.cc instantiates the tracer with
// std::make_unique<Tracing::HttpTracerImpl>(std::move(zipkin_driver), server.localInfo());
// so we look for a successful dynamic cast to HttpTracerImpl, rather
// than HttpNullTracer.
EXPECT_NE(nullptr, dynamic_cast<Tracing::HttpTracerImpl*>(tracer()));
}
} // namespace Server
} // namespace Envoy