forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
integration.cc
694 lines (615 loc) · 29.8 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
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
#include "test/integration/integration.h"
#include <chrono>
#include <cstdint>
#include <functional>
#include <list>
#include <memory>
#include <string>
#include <vector>
#include "envoy/admin/v3/config_dump.pb.h"
#include "envoy/api/v2/discovery.pb.h"
#include "envoy/buffer/buffer.h"
#include "envoy/config/bootstrap/v3/bootstrap.pb.h"
#include "envoy/config/endpoint/v3/endpoint_components.pb.h"
#include "envoy/extensions/transport_sockets/tls/v3/cert.pb.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/config/api_version.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 "extensions/transport_sockets/tls/context_config_impl.h"
#include "extensions/transport_sockets/tls/context_manager_impl.h"
#include "extensions/transport_sockets/tls/ssl_socket.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 "absl/container/fixed_array.h"
#include "absl/strings/str_join.h"
#include "gtest/gtest.h"
using testing::_;
using testing::AnyNumber;
using testing::AssertionFailure;
using testing::AssertionResult;
using testing::AssertionSuccess;
using testing::AtLeast;
using testing::Invoke;
using testing::IsSubstring;
using testing::NiceMock;
using testing::ReturnRef;
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;
body_data_waiting_length_ -=
std::min(body_data_waiting_length_, static_cast<uint64_t>(body_.size()));
if (body_data_waiting_length_ > 0) {
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::ResponseHeaderMapPtr&& headers) {
continue_headers_ = std::move(headers);
if (waiting_for_continue_headers_) {
dispatcher_.exit();
}
}
void IntegrationStreamDecoder::decodeHeaders(Http::ResponseHeaderMapPtr&& 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;
body_ += data.toString();
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::ResponseTrailerMapPtr&& trailers) {
saw_end_stream_ = true;
trailers_ = std::move(trailers);
if (waiting_for_end_stream_) {
dispatcher_.exit();
}
}
void IntegrationStreamDecoder::decodeMetadata(Http::MetadataMapPtr&& metadata_map) {
// Combines newly received metadata with the existing metadata.
for (const auto& metadata : *metadata_map) {
duplicated_metadata_key_count_[metadata.first]++;
metadata_map_->insert(metadata);
}
}
void IntegrationStreamDecoder::onResetStream(Http::StreamResetReason reason, absl::string_view) {
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 NiceMock<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, bool exact_match) {
auto found = payload_reader_->data().find(data);
if (found == 0 || (!exact_match && found != std::string::npos)) {
return;
}
payload_reader_->set_data_to_wait_for(data, exact_match);
connection_->dispatcher().run(Event::Dispatcher::RunType::Block);
}
void IntegrationTcpClient::waitForData(size_t length) {
if (payload_reader_->data().size() >= length) {
return;
}
payload_reader_->setLengthToWaitFor(length);
connection_->dispatcher().run(Event::Dispatcher::RunType::Block);
}
void IntegrationTcpClient::waitForDisconnect(bool ignore_spurious_events) {
if (ignore_spurious_events) {
while (!disconnected_) {
connection_->dispatcher().run(Event::Dispatcher::RunType::Block);
}
} else {
connection_->dispatcher().run(Event::Dispatcher::RunType::Block);
EXPECT_TRUE(disconnected_);
}
}
void IntegrationTcpClient::waitForHalfClose() {
if (payload_reader_->readLastByte()) {
return;
}
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, bool verify) {
Buffer::OwnedImpl buffer(data);
if (verify) {
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 && !disconnected_);
if (verify) {
// If we disconnect part way through the write, then we should fail, since write() is always
// expected to succeed.
EXPECT_TRUE(!disconnected_ || 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(const InstanceConstSharedPtrFn& upstream_address_fn,
Network::Address::IpVersion version,
const std::string& config)
: api_(Api::createApiForTest(stats_store_)),
mock_buffer_factory_(new NiceMock<MockBufferFactory>),
dispatcher_(api_->allocateDispatcher(Buffer::WatermarkFactoryPtr{mock_buffer_factory_})),
version_(version), upstream_address_fn_(upstream_address_fn),
config_helper_(version, *api_, 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.
timeSystem().sleep(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);
}));
ON_CALL(factory_context_, api()).WillByDefault(ReturnRef(*api_));
}
BaseIntegrationTest::BaseIntegrationTest(Network::Address::IpVersion version,
const std::string& config)
: BaseIntegrationTest(
[version](int) {
return Network::Utility::parseInternetAddress(
Network::Test::getAnyAddressString(version), 0);
},
version, config) {}
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();
createXdsUpstream();
createEnvoy();
}
void BaseIntegrationTest::createUpstreams() {
for (uint32_t i = 0; i < fake_upstreams_count_; ++i) {
auto endpoint = upstream_address_fn_(i);
if (autonomous_upstream_) {
fake_upstreams_.emplace_back(new AutonomousUpstream(
endpoint, upstream_protocol_, *time_system_, autonomous_allow_incomplete_streams_));
} else {
fake_upstreams_.emplace_back(new FakeUpstream(endpoint, upstream_protocol_, *time_system_,
enable_half_close_, udp_fake_upstream_));
}
}
}
void BaseIntegrationTest::createEnvoy() {
std::vector<uint32_t> ports;
for (auto& upstream : fake_upstreams_) {
if (upstream->localAddress()->ip()) {
ports.push_back(upstream->localAddress()->ip()->port());
}
}
if (use_lds_) {
ENVOY_LOG_MISC(debug, "Setting up file-based LDS");
// Before finalization, set up a real lds path, replacing the default /dev/null
std::string lds_path = TestEnvironment::temporaryPath(TestUtility::uniqueFilename());
config_helper_.addConfigModifier(
[lds_path](envoy::config::bootstrap::v3::Bootstrap& bootstrap) -> void {
bootstrap.mutable_dynamic_resources()->mutable_lds_config()->set_path(lds_path);
});
}
// Note that finalize assumes that every fake_upstream_ must correspond to a bootstrap config
// static entry. So, if you want to manually create a fake upstream without specifying it in the
// config, you will need to do so *after* initialize() (which calls this function) is done.
config_helper_.finalize(ports);
envoy::config::bootstrap::v3::Bootstrap bootstrap = config_helper_.bootstrap();
if (use_lds_) {
// After the config has been finalized, write the final listener config to the lds file.
const std::string lds_path = config_helper_.bootstrap().dynamic_resources().lds_config().path();
API_NO_BOOST(envoy::api::v2::DiscoveryResponse) lds;
lds.set_version_info("0");
for (auto& listener : config_helper_.bootstrap().static_resources().listeners()) {
ProtobufWkt::Any* resource = lds.add_resources();
resource->PackFrom(listener);
}
TestEnvironment::writeStringToFileForTest(lds_path, MessageUtil::getJsonStringFromMessage(lds),
true);
// Now that the listeners have been written to the lds file, remove them from static resources
// or they will not be reloadable.
bootstrap.mutable_static_resources()->mutable_listeners()->Clear();
}
ENVOY_LOG_MISC(debug, "Running Envoy with configuration:\n{}",
MessageUtil::getYamlStringFromMessage(bootstrap));
const std::string bootstrap_path = TestEnvironment::writeStringToFileForTest(
"bootstrap.json", MessageUtil::getJsonStringFromMessage(bootstrap));
std::vector<std::string> named_ports;
const auto& static_resources = config_helper_.bootstrap().static_resources();
named_ports.reserve(static_resources.listeners_size());
for (int i = 0; i < static_resources.listeners_size(); ++i) {
named_ports.push_back(static_resources.listeners(i).name());
}
createGeneratedApiTestServer(bootstrap_path, named_ports, false, true, false);
}
void BaseIntegrationTest::setUpstreamProtocol(FakeHttpConnection::Type protocol) {
upstream_protocol_ = protocol;
if (upstream_protocol_ == FakeHttpConnection::Type::HTTP2) {
config_helper_.addConfigModifier(
[&](envoy::config::bootstrap::v3::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 std::make_unique<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,
fmt::format("lookupPort() called on service type '{}', which has not been added to port_map_",
key));
}
void BaseIntegrationTest::setUpstreamAddress(
uint32_t upstream_index, envoy::config::endpoint::v3::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().listenSocketFactory().localAddress();
if (listen_addr->type() == Network::Address::Type::Ip) {
ENVOY_LOG(debug, "registered '{}' as port {}.", *port_it, listen_addr->ip()->port());
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());
}
}
std::string getListenerDetails(Envoy::Server::Instance& server) {
const auto& cbs_maps = server.admin().getConfigTracker().getCallbacksMap();
ProtobufTypes::MessagePtr details = cbs_maps.at("listeners")();
auto listener_info = Protobuf::down_cast<envoy::admin::v3::ListenersConfigDump>(*details);
return MessageUtil::getYamlStringFromMessage(listener_info.dynamic_listeners(0).error_state());
}
void BaseIntegrationTest::createGeneratedApiTestServer(const std::string& bootstrap_path,
const std::vector<std::string>& port_names,
bool allow_unknown_static_fields,
bool reject_unknown_dynamic_fields,
bool allow_lds_rejection) {
test_server_ = IntegrationTestServer::create(
bootstrap_path, version_, on_server_ready_function_, on_server_init_function_, deterministic_,
timeSystem(), *api_, defer_listener_finalization_, process_object_,
allow_unknown_static_fields, reject_unknown_dynamic_fields, concurrency_);
if (config_helper_.bootstrap().static_resources().listeners_size() > 0 &&
!defer_listener_finalization_) {
// Wait for listeners to be created before invoking registerTestServerPorts() below, as that
// needs to know about the bound listener ports.
auto end_time = time_system_.monotonicTime() + TestUtility::DefaultTimeout;
const char* success = "listener_manager.listener_create_success";
const char* rejected = "listener_manager.lds.update_rejected";
while ((test_server_->counter(success) == nullptr ||
test_server_->counter(success)->value() < concurrency_) &&
(!allow_lds_rejection || test_server_->counter(rejected) == nullptr ||
test_server_->counter(rejected)->value() == 0)) {
if (time_system_.monotonicTime() >= end_time) {
RELEASE_ASSERT(0, "Timed out waiting for listeners.");
}
if (!allow_lds_rejection) {
RELEASE_ASSERT(test_server_->counter(rejected) == nullptr ||
test_server_->counter(rejected)->value() == 0,
absl::StrCat("Lds update failed. Details\n",
getListenerDetails(test_server_->server())));
}
time_system_.sleep(std::chrono::milliseconds(10));
}
registerTestServerPorts(port_names);
}
}
void BaseIntegrationTest::createApiTestServer(const ApiFilesystemConfig& api_filesystem_config,
const std::vector<std::string>& port_names,
bool allow_unknown_static_fields,
bool reject_unknown_dynamic_fields,
bool allow_lds_rejection) {
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, allow_unknown_static_fields, reject_unknown_dynamic_fields, allow_lds_rejection);
}
void BaseIntegrationTest::createTestServer(const std::string& json_path,
const std::vector<std::string>& port_names) {
test_server_ = createIntegrationTestServer(
TestEnvironment::temporaryFileSubstitute(json_path, port_map_, version_), nullptr, nullptr,
timeSystem());
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(data.toString());
if (disconnect_after_headers_complete && response->find("\r\n\r\n") != std::string::npos) {
client.close(Network::ConnectionCloseType::NoFlush);
}
},
version_);
connection.run();
}
IntegrationTestServerPtr BaseIntegrationTest::createIntegrationTestServer(
const std::string& bootstrap_path,
std::function<void(IntegrationTestServer&)> on_server_ready_function,
std::function<void()> on_server_init_function, Event::TestTimeSystem& time_system) {
return IntegrationTestServer::create(bootstrap_path, version_, on_server_ready_function,
on_server_init_function, deterministic_, time_system, *api_,
defer_listener_finalization_);
}
void BaseIntegrationTest::createXdsUpstream() {
if (create_xds_upstream_ == false) {
return;
}
if (tls_xds_upstream_ == false) {
fake_upstreams_.emplace_back(
new FakeUpstream(0, FakeHttpConnection::Type::HTTP2, version_, timeSystem()));
} else {
envoy::extensions::transport_sockets::tls::v3::DownstreamTlsContext tls_context;
auto* common_tls_context = tls_context.mutable_common_tls_context();
common_tls_context->add_alpn_protocols("h2");
auto* tls_cert = common_tls_context->add_tls_certificates();
tls_cert->mutable_certificate_chain()->set_filename(
TestEnvironment::runfilesPath("test/config/integration/certs/upstreamcert.pem"));
tls_cert->mutable_private_key()->set_filename(
TestEnvironment::runfilesPath("test/config/integration/certs/upstreamkey.pem"));
auto cfg = std::make_unique<Extensions::TransportSockets::Tls::ServerContextConfigImpl>(
tls_context, factory_context_);
upstream_stats_store_ = std::make_unique<Stats::TestIsolatedStoreImpl>();
auto context = std::make_unique<Extensions::TransportSockets::Tls::ServerSslSocketFactory>(
std::move(cfg), context_manager_, *upstream_stats_store_, std::vector<std::string>{});
fake_upstreams_.emplace_back(new FakeUpstream(
std::move(context), 0, FakeHttpConnection::Type::HTTP2, version_, timeSystem()));
}
xds_upstream_ = fake_upstreams_[1].get();
// Don't ASSERT fail if an xDS reconnect ends up unparented.
xds_upstream_->set_allow_unexpected_disconnects(true);
}
void BaseIntegrationTest::createXdsConnection() {
AssertionResult result = xds_upstream_->waitForHttpConnection(*dispatcher_, xds_connection_);
RELEASE_ASSERT(result, result.message());
}
void BaseIntegrationTest::cleanUpXdsConnection() {
AssertionResult result = xds_connection_->close();
RELEASE_ASSERT(result, result.message());
result = xds_connection_->waitForDisconnect();
RELEASE_ASSERT(result, result.message());
xds_connection_.reset();
}
AssertionResult BaseIntegrationTest::compareDiscoveryRequest(
const std::string& expected_type_url, const std::string& expected_version,
const std::vector<std::string>& expected_resource_names,
const std::vector<std::string>& expected_resource_names_added,
const std::vector<std::string>& expected_resource_names_removed, bool expect_node,
const Protobuf::int32 expected_error_code, const std::string& expected_error_substring) {
if (sotw_or_delta_ == Grpc::SotwOrDelta::Sotw) {
return compareSotwDiscoveryRequest(expected_type_url, expected_version, expected_resource_names,
expect_node, expected_error_code, expected_error_substring);
} else {
return compareDeltaDiscoveryRequest(expected_type_url, expected_resource_names_added,
expected_resource_names_removed, expected_error_code,
expected_error_substring);
}
}
AssertionResult BaseIntegrationTest::compareSotwDiscoveryRequest(
const std::string& expected_type_url, const std::string& expected_version,
const std::vector<std::string>& expected_resource_names, bool expect_node,
const Protobuf::int32 expected_error_code, const std::string& expected_error_substring) {
API_NO_BOOST(envoy::api::v2::DiscoveryRequest) discovery_request;
VERIFY_ASSERTION(xds_stream_->waitForGrpcMessage(*dispatcher_, discovery_request));
if (expect_node) {
EXPECT_TRUE(discovery_request.has_node());
EXPECT_FALSE(discovery_request.node().id().empty());
EXPECT_FALSE(discovery_request.node().cluster().empty());
} else {
EXPECT_FALSE(discovery_request.has_node());
}
if (expected_type_url != discovery_request.type_url()) {
return AssertionFailure() << fmt::format("type_url {} does not match expected {}",
discovery_request.type_url(), expected_type_url);
}
if (!(expected_error_code == discovery_request.error_detail().code())) {
return AssertionFailure() << fmt::format("error_code {} does not match expected {}",
discovery_request.error_detail().code(),
expected_error_code);
}
EXPECT_TRUE(
IsSubstring("", "", expected_error_substring, discovery_request.error_detail().message()));
const std::vector<std::string> resource_names(discovery_request.resource_names().cbegin(),
discovery_request.resource_names().cend());
if (expected_resource_names != resource_names) {
return AssertionFailure() << fmt::format(
"resources {} do not match expected {} in {}", absl::StrJoin(resource_names, ","),
absl::StrJoin(expected_resource_names, ","), discovery_request.DebugString());
}
if (expected_version != discovery_request.version_info()) {
return AssertionFailure() << fmt::format("version {} does not match expected {} in {}",
discovery_request.version_info(), expected_version,
discovery_request.DebugString());
}
return AssertionSuccess();
}
AssertionResult compareSets(const std::set<std::string>& set1, const std::set<std::string>& set2,
absl::string_view name) {
if (set1 == set2) {
return AssertionSuccess();
}
auto failure = AssertionFailure() << name << " field not as expected.\nExpected: {";
for (const auto& x : set1) {
failure << x << ", ";
}
failure << "}\nActual: {";
for (const auto& x : set2) {
failure << x << ", ";
}
return failure << "}";
}
AssertionResult BaseIntegrationTest::compareDeltaDiscoveryRequest(
const std::string& expected_type_url,
const std::vector<std::string>& expected_resource_subscriptions,
const std::vector<std::string>& expected_resource_unsubscriptions, FakeStreamPtr& xds_stream,
const Protobuf::int32 expected_error_code, const std::string& expected_error_substring) {
API_NO_BOOST(envoy::api::v2::DeltaDiscoveryRequest) request;
VERIFY_ASSERTION(xds_stream->waitForGrpcMessage(*dispatcher_, request));
// Verify all we care about node.
if (!request.has_node() || request.node().id().empty() || request.node().cluster().empty()) {
return AssertionFailure() << "Weird node field";
}
if (request.type_url() != expected_type_url) {
return AssertionFailure() << fmt::format("type_url {} does not match expected {}.",
request.type_url(), expected_type_url);
}
// Sort to ignore ordering.
std::set<std::string> expected_sub{expected_resource_subscriptions.begin(),
expected_resource_subscriptions.end()};
std::set<std::string> expected_unsub{expected_resource_unsubscriptions.begin(),
expected_resource_unsubscriptions.end()};
std::set<std::string> actual_sub{request.resource_names_subscribe().begin(),
request.resource_names_subscribe().end()};
std::set<std::string> actual_unsub{request.resource_names_unsubscribe().begin(),
request.resource_names_unsubscribe().end()};
auto sub_result = compareSets(expected_sub, actual_sub, "expected_resource_subscriptions");
if (!sub_result) {
return sub_result;
}
auto unsub_result =
compareSets(expected_unsub, actual_unsub, "expected_resource_unsubscriptions");
if (!unsub_result) {
return unsub_result;
}
// (We don't care about response_nonce or initial_resource_versions.)
if (request.error_detail().code() != expected_error_code) {
return AssertionFailure() << fmt::format(
"error code {} does not match expected {}. (Error message is {}).",
request.error_detail().code(), expected_error_code,
request.error_detail().message());
}
if (expected_error_code != Grpc::Status::WellKnownGrpcStatus::Ok &&
request.error_detail().message().find(expected_error_substring) == std::string::npos) {
return AssertionFailure() << "\"" << expected_error_substring
<< "\" is not a substring of actual error message \""
<< request.error_detail().message() << "\"";
}
return AssertionSuccess();
}
} // namespace Envoy