forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp2_integration_test.h
50 lines (39 loc) · 1.79 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
#pragma once
#include "test/integration/http_integration.h"
#include "gtest/gtest.h"
namespace Envoy {
class Http2IntegrationTest : public HttpIntegrationTest,
public testing::TestWithParam<Network::Address::IpVersion> {
public:
Http2IntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam(), realTime()) {}
void SetUp() override { setDownstreamProtocol(Http::CodecClient::Type::HTTP2); }
void simultaneousRequest(int32_t request1_bytes, int32_t request2_bytes);
};
class Http2RingHashIntegrationTest : public Http2IntegrationTest {
public:
Http2RingHashIntegrationTest();
~Http2RingHashIntegrationTest() override;
void createUpstreams() override;
void sendMultipleRequests(int request_bytes, Http::TestHeaderMapImpl 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::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()->set_allow_metadata(true);
});
config_helper_.addConfigModifier(
[&](envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager& hcm)
-> void { hcm.mutable_http2_protocol_options()->set_allow_metadata(true); });
setDownstreamProtocol(Http::CodecClient::Type::HTTP2);
setUpstreamProtocol(FakeHttpConnection::Type::HTTP2);
}
};
} // namespace Envoy