forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
integration.cc
381 lines (326 loc) · 14.6 KB
/
integration.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
#include "test/integration/integration.h"
#include <chrono>
#include <cstdint>
#include <functional>
#include <list>
#include <memory>
#include <string>
#include <vector>
#include "envoy/buffer/buffer.h"
#include "envoy/http/header_map.h"
#include "common/api/api_impl.h"
#include "common/buffer/buffer_impl.h"
#include "common/common/assert.h"
#include "common/common/fmt.h"
#include "common/event/dispatcher_impl.h"
#include "common/event/libevent.h"
#include "common/network/connection_impl.h"
#include "common/network/utility.h"
#include "common/upstream/upstream_impl.h"
#include "test/integration/autonomous_upstream.h"
#include "test/integration/utility.h"
#include "test/test_common/environment.h"
#include "test/test_common/network_utility.h"
#include "gtest/gtest.h"
using testing::AnyNumber;
using testing::AtLeast;
using testing::Invoke;
using testing::NiceMock;
using testing::_;
namespace Envoy {
IntegrationStreamDecoder::IntegrationStreamDecoder(Event::Dispatcher& dispatcher)
: dispatcher_(dispatcher) {}
void IntegrationStreamDecoder::waitForContinueHeaders() {
if (!continue_headers_.get()) {
waiting_for_continue_headers_ = true;
dispatcher_.run(Event::Dispatcher::RunType::Block);
}
}
void IntegrationStreamDecoder::waitForHeaders() {
if (!headers_.get()) {
waiting_for_headers_ = true;
dispatcher_.run(Event::Dispatcher::RunType::Block);
}
}
void IntegrationStreamDecoder::waitForBodyData(uint64_t size) {
ASSERT(body_data_waiting_length_ == 0);
body_data_waiting_length_ = size;
dispatcher_.run(Event::Dispatcher::RunType::Block);
}
void IntegrationStreamDecoder::waitForEndStream() {
if (!saw_end_stream_) {
waiting_for_end_stream_ = true;
dispatcher_.run(Event::Dispatcher::RunType::Block);
}
}
void IntegrationStreamDecoder::waitForReset() {
if (!saw_reset_) {
waiting_for_reset_ = true;
dispatcher_.run(Event::Dispatcher::RunType::Block);
}
}
void IntegrationStreamDecoder::decode100ContinueHeaders(Http::HeaderMapPtr&& headers) {
continue_headers_ = std::move(headers);
if (waiting_for_continue_headers_) {
dispatcher_.exit();
}
}
void IntegrationStreamDecoder::decodeHeaders(Http::HeaderMapPtr&& headers, bool end_stream) {
saw_end_stream_ = end_stream;
headers_ = std::move(headers);
if ((end_stream && waiting_for_end_stream_) || waiting_for_headers_) {
dispatcher_.exit();
}
}
void IntegrationStreamDecoder::decodeData(Buffer::Instance& data, bool end_stream) {
saw_end_stream_ = end_stream;
uint64_t num_slices = data.getRawSlices(nullptr, 0);
Buffer::RawSlice slices[num_slices];
data.getRawSlices(slices, num_slices);
for (Buffer::RawSlice& slice : slices) {
body_.append(static_cast<const char*>(slice.mem_), slice.len_);
}
if (end_stream && waiting_for_end_stream_) {
dispatcher_.exit();
} else if (body_data_waiting_length_ > 0) {
body_data_waiting_length_ -= std::min(body_data_waiting_length_, data.length());
if (body_data_waiting_length_ == 0) {
dispatcher_.exit();
}
}
}
void IntegrationStreamDecoder::decodeTrailers(Http::HeaderMapPtr&& trailers) {
saw_end_stream_ = true;
trailers_ = std::move(trailers);
if (waiting_for_end_stream_) {
dispatcher_.exit();
}
}
void IntegrationStreamDecoder::onResetStream(Http::StreamResetReason reason) {
saw_reset_ = true;
reset_reason_ = reason;
if (waiting_for_reset_) {
dispatcher_.exit();
}
}
IntegrationTcpClient::IntegrationTcpClient(Event::Dispatcher& dispatcher,
MockBufferFactory& factory, uint32_t port,
Network::Address::IpVersion version,
bool enable_half_close)
: payload_reader_(new WaitForPayloadReader(dispatcher)),
callbacks_(new ConnectionCallbacks(*this)) {
EXPECT_CALL(factory, create_(_, _))
.WillOnce(Invoke([&](std::function<void()> below_low,
std::function<void()> above_high) -> Buffer::Instance* {
client_write_buffer_ = new MockWatermarkBuffer(below_low, above_high);
return client_write_buffer_;
}));
connection_ = dispatcher.createClientConnection(
Network::Utility::resolveUrl(
fmt::format("tcp://{}:{}", Network::Test::getLoopbackAddressUrlString(version), port)),
Network::Address::InstanceConstSharedPtr(), Network::Test::createRawBufferSocket(), nullptr);
ON_CALL(*client_write_buffer_, drain(_))
.WillByDefault(testing::Invoke(client_write_buffer_, &MockWatermarkBuffer::baseDrain));
EXPECT_CALL(*client_write_buffer_, drain(_)).Times(AnyNumber());
connection_->enableHalfClose(enable_half_close);
connection_->addConnectionCallbacks(*callbacks_);
connection_->addReadFilter(payload_reader_);
connection_->connect();
}
void IntegrationTcpClient::close() { connection_->close(Network::ConnectionCloseType::NoFlush); }
void IntegrationTcpClient::waitForData(const std::string& data) {
if (payload_reader_->data().find(data) == 0) {
return;
}
payload_reader_->set_data_to_wait_for(data);
connection_->dispatcher().run(Event::Dispatcher::RunType::Block);
}
void IntegrationTcpClient::waitForDisconnect() {
connection_->dispatcher().run(Event::Dispatcher::RunType::Block);
EXPECT_TRUE(disconnected_);
}
void IntegrationTcpClient::waitForHalfClose() {
connection_->dispatcher().run(Event::Dispatcher::RunType::Block);
EXPECT_TRUE(payload_reader_->readLastByte());
}
void IntegrationTcpClient::readDisable(bool disabled) { connection_->readDisable(disabled); }
void IntegrationTcpClient::write(const std::string& data, bool end_stream) {
Buffer::OwnedImpl buffer(data);
EXPECT_CALL(*client_write_buffer_, move(_));
if (!data.empty()) {
EXPECT_CALL(*client_write_buffer_, write(_)).Times(AtLeast(1));
}
int bytes_expected = client_write_buffer_->bytes_written() + data.size();
connection_->write(buffer, end_stream);
do {
connection_->dispatcher().run(Event::Dispatcher::RunType::NonBlock);
} while (client_write_buffer_->bytes_written() != bytes_expected);
}
void IntegrationTcpClient::ConnectionCallbacks::onEvent(Network::ConnectionEvent event) {
if (event == Network::ConnectionEvent::RemoteClose) {
parent_.disconnected_ = true;
parent_.connection_->dispatcher().exit();
}
}
BaseIntegrationTest::BaseIntegrationTest(Network::Address::IpVersion version,
const std::string& config)
: api_(new Api::Impl(std::chrono::milliseconds(10000))),
mock_buffer_factory_(new NiceMock<MockBufferFactory>),
dispatcher_(new Event::DispatcherImpl(Buffer::WatermarkFactoryPtr{mock_buffer_factory_})),
version_(version), config_helper_(version, config),
default_log_level_(TestEnvironment::getOptions().logLevel()) {
// This is a hack, but there are situations where we disconnect fake upstream connections and
// then we expect the server connection pool to get the disconnect before the next test starts.
// This does not always happen. This pause should allow the server to pick up the disconnect
// notification and clear the pool connection if necessary. A real fix would require adding fairly
// complex test hooks to the server and/or spin waiting on stats, neither of which I think are
// necessary right now.
std::this_thread::sleep_for(std::chrono::milliseconds(10));
ON_CALL(*mock_buffer_factory_, create_(_, _))
.WillByDefault(Invoke([](std::function<void()> below_low,
std::function<void()> above_high) -> Buffer::Instance* {
return new Buffer::WatermarkBuffer(below_low, above_high);
}));
}
Network::ClientConnectionPtr BaseIntegrationTest::makeClientConnection(uint32_t port) {
Network::ClientConnectionPtr connection(dispatcher_->createClientConnection(
Network::Utility::resolveUrl(
fmt::format("tcp://{}:{}", Network::Test::getLoopbackAddressUrlString(version_), port)),
Network::Address::InstanceConstSharedPtr(), Network::Test::createRawBufferSocket(), nullptr));
connection->enableHalfClose(enable_half_close_);
return connection;
}
void BaseIntegrationTest::initialize() {
RELEASE_ASSERT(!initialized_);
RELEASE_ASSERT(Event::Libevent::Global::initialized());
initialized_ = true;
createUpstreams();
createEnvoy();
}
void BaseIntegrationTest::createUpstreams() {
for (uint32_t i = 0; i < fake_upstreams_count_; ++i) {
if (autonomous_upstream_) {
fake_upstreams_.emplace_back(new AutonomousUpstream(0, upstream_protocol_, version_));
} else {
fake_upstreams_.emplace_back(
new FakeUpstream(0, upstream_protocol_, version_, enable_half_close_));
}
}
}
void BaseIntegrationTest::createEnvoy() {
std::vector<uint32_t> ports;
for (auto& upstream : fake_upstreams_) {
if (upstream->localAddress()->ip()) {
ports.push_back(upstream->localAddress()->ip()->port());
}
}
config_helper_.finalize(ports);
ENVOY_LOG_MISC(debug, "Running Envoy with configuration {}",
config_helper_.bootstrap().DebugString());
const std::string bootstrap_path = TestEnvironment::writeStringToFileForTest(
"bootstrap.json", MessageUtil::getJsonStringFromMessage(config_helper_.bootstrap()));
std::vector<std::string> named_ports;
const auto& static_resources = config_helper_.bootstrap().static_resources();
for (int i = 0; i < static_resources.listeners_size(); ++i) {
named_ports.push_back(static_resources.listeners(i).name());
}
createGeneratedApiTestServer(bootstrap_path, named_ports);
}
void BaseIntegrationTest::setUpstreamProtocol(FakeHttpConnection::Type protocol) {
upstream_protocol_ = protocol;
if (upstream_protocol_ == FakeHttpConnection::Type::HTTP2) {
config_helper_.addConfigModifier(
[&](envoy::config::bootstrap::v2::Bootstrap& bootstrap) -> void {
RELEASE_ASSERT(bootstrap.mutable_static_resources()->clusters_size() >= 1);
auto* cluster = bootstrap.mutable_static_resources()->mutable_clusters(0);
cluster->mutable_http2_protocol_options();
});
} else {
RELEASE_ASSERT(protocol == FakeHttpConnection::Type::HTTP1);
}
}
IntegrationTcpClientPtr BaseIntegrationTest::makeTcpConnection(uint32_t port) {
return IntegrationTcpClientPtr{new IntegrationTcpClient(*dispatcher_, *mock_buffer_factory_, port,
version_, enable_half_close_)};
}
void BaseIntegrationTest::registerPort(const std::string& key, uint32_t port) {
port_map_[key] = port;
}
uint32_t BaseIntegrationTest::lookupPort(const std::string& key) {
auto it = port_map_.find(key);
if (it != port_map_.end()) {
return it->second;
}
RELEASE_ASSERT(false);
}
void BaseIntegrationTest::setUpstreamAddress(uint32_t upstream_index,
envoy::api::v2::endpoint::LbEndpoint& endpoint) const {
auto* socket_address = endpoint.mutable_endpoint()->mutable_address()->mutable_socket_address();
socket_address->set_address(Network::Test::getLoopbackAddressString(version_));
socket_address->set_port_value(fake_upstreams_[upstream_index]->localAddress()->ip()->port());
}
void BaseIntegrationTest::registerTestServerPorts(const std::vector<std::string>& port_names) {
auto port_it = port_names.cbegin();
auto listeners = test_server_->server().listenerManager().listeners();
auto listener_it = listeners.cbegin();
for (; port_it != port_names.end() && listener_it != listeners.end(); ++port_it, ++listener_it) {
const auto listen_addr = listener_it->get().socket().localAddress();
if (listen_addr->type() == Network::Address::Type::Ip) {
registerPort(*port_it, listen_addr->ip()->port());
}
}
const auto admin_addr = test_server_->server().admin().socket().localAddress();
if (admin_addr->type() == Network::Address::Type::Ip) {
registerPort("admin", admin_addr->ip()->port());
}
}
void BaseIntegrationTest::createGeneratedApiTestServer(const std::string& bootstrap_path,
const std::vector<std::string>& port_names) {
test_server_ = IntegrationTestServer::create(bootstrap_path, version_,
pre_worker_start_test_steps_, deterministic_);
if (config_helper_.bootstrap().static_resources().listeners_size() > 0) {
// Wait for listeners to be created before invoking registerTestServerPorts() below, as that
// needs to know about the bound listener ports.
test_server_->waitForCounterGe("listener_manager.listener_create_success", 1);
registerTestServerPorts(port_names);
}
}
void BaseIntegrationTest::createApiTestServer(const ApiFilesystemConfig& api_filesystem_config,
const std::vector<std::string>& port_names) {
const std::string eds_path = TestEnvironment::temporaryFileSubstitute(
api_filesystem_config.eds_path_, port_map_, version_);
const std::string cds_path = TestEnvironment::temporaryFileSubstitute(
api_filesystem_config.cds_path_, {{"eds_json_path", eds_path}}, port_map_, version_);
const std::string rds_path = TestEnvironment::temporaryFileSubstitute(
api_filesystem_config.rds_path_, port_map_, version_);
const std::string lds_path = TestEnvironment::temporaryFileSubstitute(
api_filesystem_config.lds_path_, {{"rds_json_path", rds_path}}, port_map_, version_);
createGeneratedApiTestServer(TestEnvironment::temporaryFileSubstitute(
api_filesystem_config.bootstrap_path_,
{{"cds_json_path", cds_path}, {"lds_json_path", lds_path}},
port_map_, version_),
port_names);
}
void BaseIntegrationTest::createTestServer(const std::string& json_path,
const std::vector<std::string>& port_names) {
test_server_ = IntegrationTestServer::create(
TestEnvironment::temporaryFileSubstitute(json_path, port_map_, version_), version_, nullptr,
deterministic_);
registerTestServerPorts(port_names);
}
void BaseIntegrationTest::sendRawHttpAndWaitForResponse(int port, const char* raw_http,
std::string* response,
bool disconnect_after_headers_complete) {
Buffer::OwnedImpl buffer(raw_http);
RawConnectionDriver connection(
port, buffer,
[&](Network::ClientConnection& client, const Buffer::Instance& data) -> void {
response->append(TestUtility::bufferToString(data));
if (disconnect_after_headers_complete && response->find("\r\n\r\n") != std::string::npos) {
client.close(Network::ConnectionCloseType::NoFlush);
}
},
version_);
connection.run();
}
} // namespace Envoy