forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_test.cc
301 lines (261 loc) · 11.6 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
#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/utility.h"
#include "gtest/gtest.h"
using testing::HasSubstr;
using testing::InSequence;
using testing::Invoke;
using testing::Property;
using testing::Ref;
using testing::SaveArg;
using testing::StrictMock;
using testing::_;
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() {
InSequence s;
sigterm_ = new Event::MockSignalEvent(&dispatcher_);
sigusr1_ = new Event::MockSignalEvent(&dispatcher_);
sighup_ = new Event::MockSignalEvent(&dispatcher_);
EXPECT_CALL(cm_, setInitializedCb(_)).WillOnce(SaveArg<0>(&cm_init_callback_));
helper_.reset(new RunHelper(dispatcher_, cm_, hot_restart_, access_log_manager_, init_manager_,
[this] { start_workers_.ready(); }));
}
NiceMock<Event::MockDispatcher> dispatcher_;
NiceMock<Upstream::MockClusterManager> cm_;
NiceMock<MockHotRestart> hot_restart_;
NiceMock<AccessLog::MockAccessLogManager> access_log_manager_;
InitManagerImpl init_manager_;
ReadyWatcher start_workers_;
std::unique_ptr<RunHelper> helper_;
std::function<void()> cm_init_callback_;
Event::MockSignalEvent* sigterm_;
Event::MockSignalEvent* sigusr1_;
Event::MockSignalEvent* sighup_;
};
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_();
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_();
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_.reset(new InstanceImpl(
options_,
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_));
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_.reset(new InstanceImpl(
options_,
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_));
EXPECT_TRUE(server_->api().fileExists("/dev/null"));
}
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_;
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";
initialize(std::string());
EXPECT_NE(nullptr, TestUtility::findCounter(stats_store_, "server.watchdog_miss"));
EXPECT_NE(nullptr, TestUtility::findGauge(stats_store_, "server.hot_restart_epoch"));
}
// 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));
}
// 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_bootstrap.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"));
}
}
TEST_P(ServerInstanceImplTest, NoOptionsPassed) {
EXPECT_THROW_WITH_MESSAGE(
server_.reset(new InstanceImpl(
options_,
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_)),
EnvoyException, "unable to read file: ");
}
} // namespace Server
} // namespace Envoy