forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http_subset_lb_integration_test.cc
253 lines (208 loc) · 10.9 KB
/
http_subset_lb_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
#include "envoy/config/bootstrap/v3/bootstrap.pb.h"
#include "envoy/config/cluster/v3/cluster.pb.h"
#include "envoy/config/cluster/v3/cluster.pb.validate.h"
#include "envoy/config/route/v3/route_components.pb.h"
#include "envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.pb.h"
#include "test/integration/http_integration.h"
#include "absl/strings/str_replace.h"
#include "gtest/gtest.h"
namespace Envoy {
class HttpSubsetLbIntegrationTest
: public testing::TestWithParam<envoy::config::cluster::v3::Cluster::LbPolicy>,
public HttpIntegrationTest {
public:
// Returns all load balancer types except ORIGINAL_DST_LB, CLUSTER_PROVIDED
// and LOAD_BALANCING_POLICY_CONFIG.
static std::vector<envoy::config::cluster::v3::Cluster::LbPolicy> getSubsetLbTestParams() {
int first = static_cast<int>(envoy::config::cluster::v3::Cluster::LbPolicy_MIN);
int last = static_cast<int>(envoy::config::cluster::v3::Cluster::LbPolicy_MAX);
ASSERT(first < last);
std::vector<envoy::config::cluster::v3::Cluster::LbPolicy> ret;
for (int i = first; i <= last; i++) {
if (!envoy::config::cluster::v3::Cluster::LbPolicy_IsValid(i)) {
continue;
}
auto policy = static_cast<envoy::config::cluster::v3::Cluster::LbPolicy>(i);
if (policy == envoy::config::cluster::v3::Cluster::CLUSTER_PROVIDED ||
policy == envoy::config::cluster::v3::Cluster::LOAD_BALANCING_POLICY_CONFIG) {
continue;
}
ret.push_back(policy);
}
return ret;
}
// Converts an LbPolicy to strings suitable for test names.
static std::string subsetLbTestParamsToString(
const testing::TestParamInfo<envoy::config::cluster::v3::Cluster::LbPolicy>& p) {
const std::string& policy_name = envoy::config::cluster::v3::Cluster::LbPolicy_Name(p.param);
return absl::StrReplaceAll(policy_name, {{"_", ""}});
}
HttpSubsetLbIntegrationTest()
: HttpIntegrationTest(Http::CodecType::HTTP1, TestEnvironment::getIpVersionsForTest().front(),
ConfigHelper::httpProxyConfig()),
is_hash_lb_(GetParam() == envoy::config::cluster::v3::Cluster::RING_HASH ||
GetParam() == envoy::config::cluster::v3::Cluster::MAGLEV) {
autonomous_upstream_ = true;
setUpstreamCount(num_hosts_);
config_helper_.addConfigModifier([&](envoy::config::bootstrap::v3::Bootstrap& bootstrap) {
auto* static_resources = bootstrap.mutable_static_resources();
auto* cluster = static_resources->mutable_clusters(0);
cluster->set_lb_policy(GetParam());
// Create subsets based on type value of the "type" metadata.
cluster->mutable_lb_subset_config()->add_subset_selectors()->add_keys(type_key_);
cluster->clear_load_assignment();
// Create a load assignment with num_hosts_ entries with metadata split evenly between
// type=a and type=b.
auto* load_assignment = cluster->mutable_load_assignment();
load_assignment->set_cluster_name(cluster->name());
auto* endpoints = load_assignment->add_endpoints();
for (uint32_t i = 0; i < num_hosts_; i++) {
auto* lb_endpoint = endpoints->add_lb_endpoints();
// ConfigHelper will fill in ports later.
auto* endpoint = lb_endpoint->mutable_endpoint();
auto* addr = endpoint->mutable_address()->mutable_socket_address();
addr->set_address(Network::Test::getLoopbackAddressString(
TestEnvironment::getIpVersionsForTest().front()));
addr->set_port_value(0);
// Assign type metadata based on i.
auto* metadata = lb_endpoint->mutable_metadata();
Envoy::Config::Metadata::mutableMetadataValue(*metadata, "envoy.lb", type_key_)
.set_string_value((i % 2 == 0) ? "a" : "b");
}
});
config_helper_.addConfigModifier(
[&](envoy::extensions::filters::network::http_connection_manager::v3::HttpConnectionManager&
hcm) {
auto* vhost = hcm.mutable_route_config()->mutable_virtual_hosts(0);
// Report the host's type metadata and remote address on every response.
auto* resp_header = vhost->add_response_headers_to_add();
auto* header = resp_header->mutable_header();
header->set_key(host_type_header_);
header->set_value(
fmt::format(R"EOF(%UPSTREAM_METADATA(["envoy.lb", "{}"])%)EOF", type_key_));
resp_header = vhost->add_response_headers_to_add();
header = resp_header->mutable_header();
header->set_key(host_header_);
header->set_value("%UPSTREAM_REMOTE_ADDRESS%");
// Create routes for x-type=a and x-type=b headers.
vhost->clear_routes();
configureRoute(vhost->add_routes(), "a");
configureRoute(vhost->add_routes(), "b");
});
}
void configureRoute(envoy::config::route::v3::Route* route, const std::string& host_type) {
auto* match = route->mutable_match();
match->set_prefix("/");
// Match the x-type header against the given host_type (a/b).
auto* match_header = match->add_headers();
match_header->set_name(type_header_);
match_header->mutable_string_match()->set_exact(host_type);
// Route to cluster_0, selecting metadata type=a or type=b.
auto* action = route->mutable_route();
action->set_cluster("cluster_0");
auto* metadata_match = action->mutable_metadata_match();
Envoy::Config::Metadata::mutableMetadataValue(*metadata_match, "envoy.lb", type_key_)
.set_string_value(host_type);
// Set a hash policy for hashing load balancers.
if (is_hash_lb_) {
action->add_hash_policy()->mutable_header()->set_header_name(hash_header_);
}
};
void SetUp() override {
setDownstreamProtocol(Http::CodecType::HTTP1);
setUpstreamProtocol(Http::CodecType::HTTP1);
}
// Runs a subset lb test with the given request headers, expecting the x-host-type header to
// the given type ("a" or "b"). If is_hash_lb_, verifies that a single host is selected over n
// iterations (e.g. for maglev/hash-ring policies). Otherwise, expected more than one host to be
// selected over at least n iterations and at most m.
void runTest(Http::TestRequestHeaderMapImpl& request_headers,
const std::string expected_host_type, const int n = 100, const int m = 1000) {
ASSERT_LT(n, m);
std::set<std::string> hosts;
for (int i = 0; i < m; i++) {
Http::TestResponseHeaderMapImpl response_headers{{":status", "200"}};
// Send header only request.
IntegrationStreamDecoderPtr response = codec_client_->makeHeaderOnlyRequest(request_headers);
ASSERT_TRUE(response->waitForEndStream());
// Expect a response from a host in the correct subset.
EXPECT_EQ(response->headers()
.get(Envoy::Http::LowerCaseString{host_type_header_})[0]
->value()
.getStringView(),
expected_host_type);
// Record the upstream address.
hosts.emplace(response->headers()
.get(Envoy::Http::LowerCaseString{host_header_})[0]
->value()
.getStringView());
if (i >= n && (is_hash_lb_ || hosts.size() > 1)) {
// Once we've completed n iterations, quit for hash lb policies. For others, keep going
// until we've seen multiple hosts (as expected) or reached m iterations.
break;
}
}
if (is_hash_lb_) {
EXPECT_EQ(hosts.size(), 1) << "Expected a single unique host to be selected for "
<< envoy::config::cluster::v3::Cluster::LbPolicy_Name(GetParam());
} else {
EXPECT_GT(hosts.size(), 1) << "Expected multiple hosts to be selected for "
<< envoy::config::cluster::v3::Cluster::LbPolicy_Name(GetParam());
}
}
const uint32_t num_hosts_{4};
const bool is_hash_lb_;
const std::string hash_header_{"x-hash"};
const std::string host_type_header_{"x-host-type"};
const std::string host_header_{"x-host"};
const std::string type_header_{"x-type"};
const std::string type_key_{"type"};
Http::TestRequestHeaderMapImpl type_a_request_headers_{
{":method", "GET"}, {":path", "/test"}, {":scheme", "http"},
{":authority", "host"}, {"x-type", "a"}, {"x-hash", "hash-a"}};
Http::TestRequestHeaderMapImpl type_b_request_headers_{
{":method", "GET"}, {":path", "/test"}, {":scheme", "http"},
{":authority", "host"}, {"x-type", "b"}, {"x-hash", "hash-b"}};
};
INSTANTIATE_TEST_SUITE_P(SubsetCompatibleLoadBalancers, HttpSubsetLbIntegrationTest,
testing::ValuesIn(HttpSubsetLbIntegrationTest::getSubsetLbTestParams()),
HttpSubsetLbIntegrationTest::subsetLbTestParamsToString);
// Tests each subset-compatible load balancer policy with 4 hosts divided into 2 subsets.
TEST_P(HttpSubsetLbIntegrationTest, SubsetLoadBalancer) {
initialize();
codec_client_ = makeHttpConnection(lookupPort("http"));
runTest(type_a_request_headers_, "a");
runTest(type_b_request_headers_, "b");
}
// Tests subset-compatible load balancer policy without metadata does not crash on initialization
// with single_host_per_subset set to be true.
TEST_P(HttpSubsetLbIntegrationTest, SubsetLoadBalancerSingleHostPerSubsetNoMetadata) {
config_helper_.addConfigModifier([&](envoy::config::bootstrap::v3::Bootstrap& bootstrap) {
auto* static_resources = bootstrap.mutable_static_resources();
auto* cluster = static_resources->mutable_clusters(0);
// Set single_host_per_subset to be true. This will avoid function
// SubsetLoadBalancer::rebuildSingle() bailout early. Thus exercise the no metadata logic.
auto* subset_selector = cluster->mutable_lb_subset_config()->mutable_subset_selectors(0);
subset_selector->set_single_host_per_subset(true);
// Clear the metadata for each host
auto* load_assignment = cluster->mutable_load_assignment();
auto* endpoints = load_assignment->mutable_endpoints(0);
for (uint32_t i = 0; i < num_hosts_; i++) {
auto* lb_endpoint = endpoints->mutable_lb_endpoints(i);
lb_endpoint->clear_metadata();
}
});
initialize();
codec_client_ = makeHttpConnection(lookupPort("http"));
auto response =
codec_client_->makeHeaderOnlyRequest(Http::TestRequestHeaderMapImpl{{":method", "GET"},
{":path", "/test"},
{":scheme", "http"},
{":authority", "host"},
{"x-type", "a"},
{"x-hash", "hash-a"}});
ASSERT_TRUE(response->waitForEndStream());
EXPECT_TRUE(response->complete());
EXPECT_THAT(response->headers(), Http::HttpStatusIs("503"));
}
} // namespace Envoy