forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http2_integration_test.h
91 lines (71 loc) · 3.28 KB
/
http2_integration_test.h
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
#pragma once
#include "envoy/config/bootstrap/v3/bootstrap.pb.h"
#include "envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.pb.h"
#include "test/common/http/http2/http2_frame.h"
#include "test/integration/http_integration.h"
#include "gtest/gtest.h"
using Envoy::Http::Http2::Http2Frame;
namespace Envoy {
class Http2IntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
Http2IntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam()) {}
void SetUp() override { setDownstreamProtocol(Http::CodecClient::Type::HTTP2); }
void simultaneousRequest(int32_t request1_bytes, int32_t request2_bytes);
protected:
// Utility function to add filters.
void addFilters(std::vector<std::string> filters) {
for (const auto& filter : filters) {
config_helper_.addFilter(filter);
}
}
};
class Http2RingHashIntegrationTest : public Http2IntegrationTest {
public:
Http2RingHashIntegrationTest();
~Http2RingHashIntegrationTest() override;
void createUpstreams() override;
void sendMultipleRequests(int request_bytes, Http::TestRequestHeaderMapImpl headers,
std::function<void(IntegrationStreamDecoder&)> cb);
std::vector<FakeHttpConnectionPtr> fake_upstream_connections_;
int num_upstreams_ = 5;
};
class Http2MetadataIntegrationTest : public Http2IntegrationTest {
public:
void SetUp() override {
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()->set_allow_metadata(true);
});
config_helper_.addConfigModifier(
[&](envoy::extensions::filters::network::http_connection_manager::v3::HttpConnectionManager&
hcm) -> void { hcm.mutable_http2_protocol_options()->set_allow_metadata(true); });
setDownstreamProtocol(Http::CodecClient::Type::HTTP2);
setUpstreamProtocol(FakeHttpConnection::Type::HTTP2);
}
void testRequestMetadataWithStopAllFilter();
void verifyHeadersOnlyTest();
void runHeaderOnlyTest(bool send_request_body, size_t body_size);
};
class Http2FloodMitigationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
Http2FloodMitigationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam()) {
config_helper_.addConfigModifier(
[](envoy::extensions::filters::network::http_connection_manager::v3::HttpConnectionManager&
hcm) { hcm.mutable_delayed_close_timeout()->set_seconds(1); });
}
protected:
void startHttp2Session();
void floodServer(const Http2Frame& frame, const std::string& flood_stat);
void floodServer(absl::string_view host, absl::string_view path,
Http2Frame::ResponseStatus expected_http_status, const std::string& flood_stat);
Http2Frame readFrame();
void sendFrame(const Http2Frame& frame);
void setNetworkConnectionBufferSize();
void beginSession();
IntegrationTcpClientPtr tcp_client_;
};
} // namespace Envoy