forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eds_integration_test.cc
411 lines (350 loc) · 18.8 KB
/
eds_integration_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
410
411
#include "envoy/config/bootstrap/v3/bootstrap.pb.h"
#include "envoy/config/cluster/v3/cluster.pb.h"
#include "envoy/config/core/v3/health_check.pb.h"
#include "envoy/config/endpoint/v3/endpoint.pb.h"
#include "envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.pb.h"
#include "envoy/type/v3/http.pb.h"
#include "common/upstream/load_balancer_impl.h"
#include "test/config/utility.h"
#include "test/integration/http_integration.h"
#include "test/test_common/network_utility.h"
#include "gtest/gtest.h"
namespace Envoy {
namespace {
// Integration test for EDS features. EDS is consumed via filesystem
// subscription.
class EdsIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
EdsIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()),
codec_client_type_(envoy::type::v3::HTTP1) {}
// We need to supply the endpoints via EDS to provide health status. Use a
// filesystem delivery to simplify test mechanics.
void setEndpointsInPriorities(uint32_t first_priority, uint32_t second_priority,
bool await_update = true) {
envoy::config::endpoint::v3::ClusterLoadAssignment cluster_load_assignment;
cluster_load_assignment.set_cluster_name("cluster_0");
{
for (uint32_t i = 0; i < first_priority; ++i) {
auto* locality_lb_endpoints = cluster_load_assignment.add_endpoints();
auto* endpoint = locality_lb_endpoints->add_lb_endpoints();
setUpstreamAddress(i, *endpoint);
}
}
{
for (uint32_t i = first_priority; i < first_priority + second_priority; ++i) {
auto* locality_lb_endpoints = cluster_load_assignment.add_endpoints();
locality_lb_endpoints->set_priority(1);
auto* endpoint = locality_lb_endpoints->add_lb_endpoints();
setUpstreamAddress(i, *endpoint);
}
}
if (await_update) {
eds_helper_.setEdsAndWait({cluster_load_assignment}, *test_server_);
} else {
eds_helper_.setEds({cluster_load_assignment});
}
}
// We need to supply the endpoints via EDS to provide health status. Use a
// filesystem delivery to simplify test mechanics.
void setEndpoints(uint32_t total_endpoints, uint32_t healthy_endpoints,
uint32_t degraded_endpoints, bool remaining_unhealthy = true,
absl::optional<uint32_t> overprovisioning_factor = absl::nullopt,
bool await_update = true) {
ASSERT(total_endpoints >= healthy_endpoints + degraded_endpoints);
envoy::config::endpoint::v3::ClusterLoadAssignment cluster_load_assignment;
cluster_load_assignment.set_cluster_name("cluster_0");
if (overprovisioning_factor.has_value()) {
cluster_load_assignment.mutable_policy()->mutable_overprovisioning_factor()->set_value(
overprovisioning_factor.value());
}
auto* locality_lb_endpoints = cluster_load_assignment.add_endpoints();
for (uint32_t i = 0; i < total_endpoints; ++i) {
auto* endpoint = locality_lb_endpoints->add_lb_endpoints();
setUpstreamAddress(i, *endpoint);
// First N endpoints are degraded, next M are healthy and the remaining endpoints are
// unhealthy or unknown depending on remaining_unhealthy.
if (i < degraded_endpoints) {
endpoint->set_health_status(envoy::config::core::v3::DEGRADED);
} else if (i >= healthy_endpoints + degraded_endpoints) {
endpoint->set_health_status(remaining_unhealthy ? envoy::config::core::v3::UNHEALTHY
: envoy::config::core::v3::UNKNOWN);
}
}
if (await_update) {
eds_helper_.setEdsAndWait({cluster_load_assignment}, *test_server_);
} else {
eds_helper_.setEds({cluster_load_assignment});
}
}
void initializeTest(bool http_active_hc) {
setUpstreamCount(4);
if (codec_client_type_ == envoy::type::v3::HTTP2) {
setUpstreamProtocol(FakeHttpConnection::Type::HTTP2);
}
config_helper_.addConfigModifier([this](envoy::config::bootstrap::v3::Bootstrap& bootstrap) {
// Switch predefined cluster_0 to CDS filesystem sourcing.
bootstrap.mutable_dynamic_resources()->mutable_cds_config()->set_path(cds_helper_.cds_path());
bootstrap.mutable_static_resources()->clear_clusters();
});
// Set validate_clusters to false to allow us to reference a CDS cluster.
config_helper_.addConfigModifier(
[](envoy::extensions::filters::network::http_connection_manager::v3::HttpConnectionManager&
hcm) { hcm.mutable_route_config()->mutable_validate_clusters()->set_value(false); });
cluster_.mutable_connect_timeout()->CopyFrom(
Protobuf::util::TimeUtil::MillisecondsToDuration(100));
cluster_.set_name("cluster_0");
cluster_.set_type(envoy::config::cluster::v3::Cluster::EDS);
auto* eds_cluster_config = cluster_.mutable_eds_cluster_config();
eds_cluster_config->mutable_eds_config()->set_path(eds_helper_.eds_path());
if (http_active_hc) {
auto* health_check = cluster_.add_health_checks();
health_check->mutable_timeout()->set_seconds(30);
// TODO(mattklein123): Consider using simulated time here.
health_check->mutable_interval()->CopyFrom(
Protobuf::util::TimeUtil::MillisecondsToDuration(100));
health_check->mutable_no_traffic_interval()->CopyFrom(
Protobuf::util::TimeUtil::MillisecondsToDuration(100));
health_check->mutable_unhealthy_threshold()->set_value(1);
health_check->mutable_healthy_threshold()->set_value(1);
health_check->mutable_http_health_check()->set_path("/healthcheck");
health_check->mutable_http_health_check()->set_codec_client_type(codec_client_type_);
}
setEndpoints(0, 0, 0, true, absl::nullopt, false);
cds_helper_.setCds({cluster_});
initialize();
test_server_->waitForGaugeEq("cluster_manager.warming_clusters", 0);
}
envoy::type::v3::CodecClientType codec_client_type_{};
EdsHelper eds_helper_;
CdsHelper cds_helper_;
envoy::config::cluster::v3::Cluster cluster_;
};
INSTANTIATE_TEST_SUITE_P(IpVersions, EdsIntegrationTest,
testing::ValuesIn(TestEnvironment::getIpVersionsForTest()));
// Validates that endpoints can be added and then moved to other priorities without causing crashes.
// Primarily as a regression test for https://github.com/envoyproxy/envoy/issues/8764
TEST_P(EdsIntegrationTest, Http2UpdatePriorities) {
codec_client_type_ = envoy::type::v3::HTTP2;
initializeTest(true);
fake_upstreams_[0]->set_allow_unexpected_disconnects(true);
fake_upstreams_[1]->set_allow_unexpected_disconnects(true);
fake_upstreams_[2]->set_allow_unexpected_disconnects(true);
fake_upstreams_[3]->set_allow_unexpected_disconnects(true);
setEndpointsInPriorities(2, 2);
setEndpointsInPriorities(4, 0);
setEndpointsInPriorities(0, 4);
}
// Verifies that a new cluster can we warmed when using HTTP/2 health checking. Regression test
// of the issue detailed in issue #6951.
TEST_P(EdsIntegrationTest, Http2HcClusterRewarming) {
codec_client_type_ = envoy::type::v3::HTTP2;
initializeTest(true);
fake_upstreams_[0]->set_allow_unexpected_disconnects(true);
setEndpoints(1, 0, 0, false);
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(0, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
// Wait for the first HC and verify the host is healthy. This should warm the initial cluster.
waitForNextUpstreamRequest();
upstream_request_->encodeHeaders(Http::TestResponseHeaderMapImpl{{":status", "200"}}, true);
test_server_->waitForGaugeEq("cluster.cluster_0.membership_healthy", 1);
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_total")->value());
// Trigger a CDS update. This should cause a new cluster to require warming, blocked on the host
// being health checked.
cluster_.mutable_circuit_breakers()->add_thresholds()->mutable_max_connections()->set_value(100);
cds_helper_.setCds({cluster_});
test_server_->waitForGaugeEq("cluster_manager.warming_clusters", 1);
EXPECT_EQ(1, test_server_->gauge("cluster_manager.warming_clusters")->value());
// We need to do a bunch of work to get a hold of second hc connection.
FakeHttpConnectionPtr fake_upstream_connection;
auto result = fake_upstreams_[0]->waitForHttpConnection(
*dispatcher_, fake_upstream_connection, TestUtility::DefaultTimeout, max_request_headers_kb_);
RELEASE_ASSERT(result, result.message());
FakeStreamPtr upstream_request;
result = fake_upstream_connection->waitForNewStream(*dispatcher_, upstream_request);
RELEASE_ASSERT(result, result.message());
// Wait for the stream to be completely received.
result = upstream_request->waitForEndStream(*dispatcher_);
RELEASE_ASSERT(result, result.message());
// Respond with a health check. This will cause the previous cluster to be destroyed inline as
// part of processing the response.
upstream_request->encodeHeaders(Http::TestResponseHeaderMapImpl{{":status", "503"}}, true);
test_server_->waitForGaugeEq("cluster_manager.warming_clusters", 0);
EXPECT_EQ(0, test_server_->gauge("cluster_manager.warming_clusters")->value());
// Since the second connection is not managed by the integration test base we need to close it
// ourselves.
result = fake_upstream_connection->close();
RELEASE_ASSERT(result, result.message());
result = fake_upstream_connection->waitForDisconnect();
RELEASE_ASSERT(result, result.message());
fake_upstream_connection.reset();
}
// Verify that a host stabilized via active health checking which is first removed from EDS and
// then fails health checking is removed.
TEST_P(EdsIntegrationTest, RemoveAfterHcFail) {
initializeTest(true);
fake_upstreams_[0]->set_allow_unexpected_disconnects(true);
setEndpoints(1, 0, 0, false);
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(0, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
// Wait for the first HC and verify the host is healthy.
waitForNextUpstreamRequest();
upstream_request_->encodeHeaders(Http::TestResponseHeaderMapImpl{{":status", "200"}}, true);
test_server_->waitForGaugeEq("cluster.cluster_0.membership_healthy", 1);
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_total")->value());
// Clear out the host and verify the host is still healthy.
setEndpoints(0, 0, 0);
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
// Fail HC and verify the host is gone.
waitForNextUpstreamRequest();
upstream_request_->encodeHeaders(
Http::TestResponseHeaderMapImpl{{":status", "503"}, {"connection", "close"}}, true);
test_server_->waitForGaugeEq("cluster.cluster_0.membership_healthy", 0);
EXPECT_EQ(0, test_server_->gauge("cluster.cluster_0.membership_total")->value());
}
// Verifies that endpoints are ignored until health checked when configured to.
TEST_P(EdsIntegrationTest, EndpointWarmingSuccessfulHc) {
cluster_.mutable_common_lb_config()->set_ignore_new_hosts_until_first_hc(true);
// Endpoints are initially excluded.
initializeTest(true);
fake_upstreams_[0]->set_allow_unexpected_disconnects(true);
setEndpoints(1, 0, 0, false);
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_excluded")->value());
EXPECT_EQ(0, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
// Wait for the first HC and verify the host is healthy and that it is no longer being excluded.
// The other endpoint should still be excluded.
waitForNextUpstreamRequest(0);
upstream_request_->encodeHeaders(Http::TestResponseHeaderMapImpl{{":status", "200"}}, true);
test_server_->waitForGaugeEq("cluster.cluster_0.membership_excluded", 0);
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
}
// Verifies that endpoints are ignored until health checked when configured to when the first
// health check fails.
TEST_P(EdsIntegrationTest, EndpointWarmingFailedHc) {
cluster_.mutable_common_lb_config()->set_ignore_new_hosts_until_first_hc(true);
// Endpoints are initially excluded.
initializeTest(true);
fake_upstreams_[0]->set_allow_unexpected_disconnects(true);
setEndpoints(1, 0, 0, false);
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_excluded")->value());
EXPECT_EQ(0, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
// Wait for the first HC and verify the host is healthy and that it is no longer being excluded.
// The other endpoint should still be excluded.
waitForNextUpstreamRequest(0);
upstream_request_->encodeHeaders(Http::TestResponseHeaderMapImpl{{":status", "503"}}, true);
test_server_->waitForGaugeEq("cluster.cluster_0.membership_excluded", 0);
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(0, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
}
// Validate that health status updates are consumed from EDS.
TEST_P(EdsIntegrationTest, HealthUpdate) {
initializeTest(false);
// Initial state, no cluster members.
EXPECT_EQ(0, test_server_->counter("cluster.cluster_0.membership_change")->value());
EXPECT_EQ(0, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(0, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
// 2/2 healthy endpoints.
setEndpoints(2, 2, 0);
EXPECT_EQ(1, test_server_->counter("cluster.cluster_0.membership_change")->value());
EXPECT_EQ(2, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(2, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
// Drop to 0/2 healthy endpoints.
setEndpoints(2, 0, 0);
EXPECT_EQ(1, test_server_->counter("cluster.cluster_0.membership_change")->value());
EXPECT_EQ(2, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(0, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
// Increase to 1/2 healthy endpoints.
setEndpoints(2, 1, 0);
EXPECT_EQ(1, test_server_->counter("cluster.cluster_0.membership_change")->value());
EXPECT_EQ(2, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
// Add host and modify health to 2/3 healthy endpoints.
setEndpoints(3, 2, 0);
EXPECT_EQ(2, test_server_->counter("cluster.cluster_0.membership_change")->value());
EXPECT_EQ(3, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(2, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
// Modify health to 2/3 healthy and 1/3 degraded.
setEndpoints(3, 2, 1);
EXPECT_EQ(2, test_server_->counter("cluster.cluster_0.membership_change")->value());
EXPECT_EQ(3, test_server_->gauge("cluster.cluster_0.membership_total")->value());
EXPECT_EQ(2, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
EXPECT_EQ(1, test_server_->gauge("cluster.cluster_0.membership_degraded")->value());
}
// Validate that overprovisioning_factor update are picked up by Envoy.
TEST_P(EdsIntegrationTest, OverprovisioningFactorUpdate) {
initializeTest(false);
// Default overprovisioning factor.
setEndpoints(4, 4, 0);
auto get_and_compare = [this](const uint32_t expected_factor) {
const auto& cluster_map = test_server_->server().clusterManager().clusters();
EXPECT_EQ(1, cluster_map.size());
EXPECT_EQ(1, cluster_map.count("cluster_0"));
const auto& cluster_ref = cluster_map.find("cluster_0")->second;
const auto& hostset_per_priority = cluster_ref.get().prioritySet().hostSetsPerPriority();
EXPECT_EQ(1, hostset_per_priority.size());
const Envoy::Upstream::HostSetPtr& host_set = hostset_per_priority[0];
EXPECT_EQ(expected_factor, host_set->overprovisioningFactor());
};
get_and_compare(Envoy::Upstream::kDefaultOverProvisioningFactor);
// Use new overprovisioning factor 200.
setEndpoints(4, 4, 0, true, 200);
get_and_compare(200);
}
// Verifies that EDS update only triggers member update callbacks once per update.
TEST_P(EdsIntegrationTest, BatchMemberUpdateCb) {
initializeTest(false);
uint32_t member_update_count{};
auto& priority_set = test_server_->server()
.clusterManager()
.clusters()
.find("cluster_0")
->second.get()
.prioritySet();
// Keep track of how many times we're seeing a member update callback.
priority_set.addMemberUpdateCb([&](const auto& hosts_added, const auto&) {
// We should see both hosts present in the member update callback.
EXPECT_EQ(2, hosts_added.size());
member_update_count++;
});
envoy::config::endpoint::v3::ClusterLoadAssignment cluster_load_assignment;
cluster_load_assignment.set_cluster_name("cluster_0");
{
auto* locality_lb_endpoints = cluster_load_assignment.add_endpoints();
auto* endpoint = locality_lb_endpoints->add_lb_endpoints();
setUpstreamAddress(0, *endpoint);
}
auto* locality_lb_endpoints = cluster_load_assignment.add_endpoints();
locality_lb_endpoints->set_priority(1);
auto* endpoint = locality_lb_endpoints->add_lb_endpoints();
setUpstreamAddress(1, *endpoint);
eds_helper_.setEdsAndWait({cluster_load_assignment}, *test_server_);
EXPECT_EQ(1, member_update_count);
}
TEST_P(EdsIntegrationTest, StatsReadyFilter) {
config_helper_.addFilter("name: eds-ready-filter");
initializeTest(false);
// Initial state: no healthy endpoints
EXPECT_EQ(0, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
BufferingStreamDecoderPtr response = IntegrationUtil::makeSingleRequest(
lookupPort("http"), "GET", "/cluster1", "", downstream_protocol_, version_, "foo.com");
ASSERT_TRUE(response->complete());
EXPECT_EQ("500", response->headers().Status()->value().getStringView());
EXPECT_EQ("EDS not ready", response->body());
cleanupUpstreamAndDownstream();
// 2/2 healthy endpoints.
setEndpoints(2, 2, 0);
EXPECT_EQ(2, test_server_->gauge("cluster.cluster_0.membership_healthy")->value());
response = IntegrationUtil::makeSingleRequest(lookupPort("http"), "GET", "/cluster1", "",
downstream_protocol_, version_, "foo.com");
ASSERT_TRUE(response->complete());
EXPECT_EQ("200", response->headers().Status()->value().getStringView());
EXPECT_EQ("EDS is ready", response->body());
cleanupUpstreamAndDownstream();
}
} // namespace
} // namespace Envoy