Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ namespace {
class AccessLogIntegrationTest : public Grpc::GrpcClientIntegrationParamTest,
public HttpIntegrationTest {
public:
AccessLogIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ipVersion(), realTime()) {}
AccessLogIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ipVersion()) {}

void createUpstreams() override {
HttpIntegrationTest::createUpstreams();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ namespace Envoy {
class CorsFilterIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
CorsFilterIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {}
CorsFilterIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {}

void initialize() override {
config_helper_.addFilter("name: envoy.cors");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ReverseBridgeIntegrationTest : public testing::TestWithParam<Network::Addr
public HttpIntegrationTest {
public:
ReverseBridgeIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam(), realTime()) {}
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam()) {}

void SetUp() override {
setUpstreamProtocol(FakeHttpConnection::Type::HTTP1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class GrpcJsonTranscoderIntegrationTest
public HttpIntegrationTest {
public:
GrpcJsonTranscoderIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {}
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {}
/**
* Global initializer for all integration tests.
*/
Expand Down
3 changes: 1 addition & 2 deletions test/extensions/filters/http/lua/lua_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ namespace {
class LuaIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
LuaIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {}
LuaIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {}

void createUpstreams() override {
HttpIntegrationTest::createUpstreams();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ namespace Envoy {
class SquashFilterIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
SquashFilterIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {}
SquashFilterIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {}

~SquashFilterIntegrationTest() {
if (fake_squash_connection_) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class TapIntegrationTest : public testing::TestWithParam<Network::Address::IpVer
// HTTP/1 on OSX. In this test we close the admin /tap stream when we don't want any
// more data, and without immediate close detection we can't have a flake free test.
// Thus, we use HTTP/2 for everything here.
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam(), realTime()) {
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam()) {

// Also use HTTP/2 for upstream so that we can fully test trailers.
setUpstreamProtocol(FakeHttpConnection::Type::HTTP2);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class MySQLIntegrationTest : public testing::TestWithParam<Network::Address::IpV
}

public:
MySQLIntegrationTest() : BaseIntegrationTest(GetParam(), realTime(), mysqlConfig()){};
MySQLIntegrationTest() : BaseIntegrationTest(GetParam(), mysqlConfig()){};

// Initializer for an individual integration test.
void SetUp() override { BaseIntegrationTest::initialize(); }
Expand Down
2 changes: 1 addition & 1 deletion test/extensions/filters/network/rbac/integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class RoleBasedAccessControlNetworkFilterIntegrationTest
public BaseIntegrationTest {
public:
RoleBasedAccessControlNetworkFilterIntegrationTest()
: BaseIntegrationTest(GetParam(), realTime(), rbac_config) {}
: BaseIntegrationTest(GetParam(), rbac_config) {}

static void SetUpTestSuite() {
rbac_config = ConfigHelper::BASE_CONFIG + R"EOF(
Expand Down
2 changes: 1 addition & 1 deletion test/extensions/filters/network/thrift_proxy/integration.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ struct PayloadOptions {
class BaseThriftIntegrationTest : public BaseIntegrationTest {
public:
BaseThriftIntegrationTest()
: BaseIntegrationTest(Network::Address::IpVersion::v4, realTime(), thrift_config_) {}
: BaseIntegrationTest(Network::Address::IpVersion::v4, thrift_config_) {}

/**
* Given PayloadOptions, generate a client request and server response and store the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class MetricsServiceIntegrationTest : public Grpc::GrpcClientIntegrationParamTes
public HttpIntegrationTest {
public:
MetricsServiceIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ipVersion(), realTime()) {}
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ipVersion()) {}

void createUpstreams() override {
HttpIntegrationTest::createUpstreams();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class AltsIntegrationTestBase : public testing::TestWithParam<Network::Address::
AltsIntegrationTestBase(const std::string& server_peer_identity,
const std::string& client_peer_identity, bool server_connect_handshaker,
bool client_connect_handshaker)
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()),
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()),
server_peer_identity_(server_peer_identity), client_peer_identity_(client_peer_identity),
server_connect_handshaker_(server_connect_handshaker),
client_connect_handshaker_(client_connect_handshaker) {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Ssl {
class SslIntegrationTestBase : public HttpIntegrationTest {
public:
SslIntegrationTestBase(Network::Address::IpVersion ip_version)
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ip_version, realTime()) {}
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ip_version) {}

void initialize() override;

Expand Down
7 changes: 3 additions & 4 deletions test/integration/ads_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ const std::string config = R"EOF(

class AdsIntegrationTest : public Grpc::GrpcClientIntegrationParamTest, public HttpIntegrationTest {
public:
AdsIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, ipVersion(), realTime(), config) {
AdsIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP2, ipVersion(), config) {
create_xds_upstream_ = true;
tls_xds_upstream_ = true;
}
Expand Down Expand Up @@ -610,7 +609,7 @@ class AdsFailIntegrationTest : public Grpc::GrpcClientIntegrationParamTest,
public HttpIntegrationTest {
public:
AdsFailIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, ipVersion(), realTime(), config) {
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, ipVersion(), config) {
create_xds_upstream_ = true;
}

Expand Down Expand Up @@ -650,7 +649,7 @@ class AdsConfigIntegrationTest : public Grpc::GrpcClientIntegrationParamTest,
public HttpIntegrationTest {
public:
AdsConfigIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, ipVersion(), realTime(), config) {
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, ipVersion(), config) {
create_xds_upstream_ = true;
}

Expand Down
3 changes: 1 addition & 2 deletions test/integration/cds_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ const int UpstreamIndex = 1;

class CdsIntegrationTest : public Grpc::GrpcClientIntegrationParamTest, public HttpIntegrationTest {
public:
CdsIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, ipVersion(), realTime(), Config) {}
CdsIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP2, ipVersion(), Config) {}

void TearDown() override {
cleanUpXdsConnection();
Expand Down
3 changes: 1 addition & 2 deletions test/integration/eds_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ namespace {
class EdsIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
EdsIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {}
EdsIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {}

// We need to supply the endpoints via EDS to provide health status. Use a
// filesystem delivery to simplify test mechanics.
Expand Down
2 changes: 1 addition & 1 deletion test/integration/h1_fuzz.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Envoy {
class H1FuzzIntegrationTest : public HttpIntegrationTest {
public:
H1FuzzIntegrationTest(Network::Address::IpVersion version)
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, version, realTime()) {}
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, version) {}

void initialize() override;
void replay(const test::integration::CaptureFuzzTestCase&);
Expand Down
5 changes: 3 additions & 2 deletions test/integration/hds_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include "test/config/utility.h"
#include "test/integration/http_integration.h"
#include "test/test_common/network_utility.h"
#include "test/test_common/simulated_time_system.h"

#include "gmock/gmock.h"
#include "gtest/gtest.h"
Expand All @@ -24,10 +25,10 @@ namespace Envoy {
namespace {

class HdsIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public Event::TestUsingSimulatedTime,
public HttpIntegrationTest {
public:
HdsIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {}
HdsIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {}

void createUpstreams() override {
fake_upstreams_.emplace_back(
Expand Down
2 changes: 1 addition & 1 deletion test/integration/header_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class HeaderIntegrationTest
public HttpIntegrationTest {
public:
HeaderIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, std::get<0>(GetParam()), realTime()) {}
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, std::get<0>(GetParam())) {}

bool routerSuppressEnvoyHeaders() const { return std::get<1>(GetParam()); }

Expand Down
3 changes: 1 addition & 2 deletions test/integration/http2_integration_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ namespace Envoy {
class Http2IntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
Http2IntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam(), realTime()) {}
Http2IntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam()) {}

void SetUp() override { setDownstreamProtocol(Http::CodecClient::Type::HTTP2); }

Expand Down
2 changes: 1 addition & 1 deletion test/integration/http2_upstream_integration_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Http2UpstreamIntegrationTest : public testing::TestWithParam<Network::Addr
public HttpIntegrationTest {
public:
Http2UpstreamIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam(), realTime()) {}
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam()) {}

void SetUp() override {
setDownstreamProtocol(Http::CodecClient::Type::HTTP2);
Expand Down
4 changes: 4 additions & 0 deletions test/integration/http_integration.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,17 @@ typedef std::unique_ptr<IntegrationCodecClient> IntegrationCodecClientPtr;
*/
class HttpIntegrationTest : public BaseIntegrationTest {
public:
// TODO(jmarantz): Remove this once
// https://github.com/envoyproxy/envoy-filter-example/pull/69 is reverted.
HttpIntegrationTest(Http::CodecClient::Type downstream_protocol,
Network::Address::IpVersion version, TestTimeSystemPtr,
const std::string& config = ConfigHelper::HTTP_PROXY_CONFIG)
: HttpIntegrationTest(downstream_protocol, version, config) {}

HttpIntegrationTest(Http::CodecClient::Type downstream_protocol,
Network::Address::IpVersion version,
const std::string& config = ConfigHelper::HTTP_PROXY_CONFIG);

HttpIntegrationTest(Http::CodecClient::Type downstream_protocol,
const InstanceConstSharedPtrFn& upstream_address_fn,
Network::Address::IpVersion version,
Expand Down
2 changes: 2 additions & 0 deletions test/integration/integration.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ class BaseIntegrationTest : Logger::Loggable<Logger::Id::testing> {

virtual ~BaseIntegrationTest() {}

// TODO(jmarantz): Remove this once
// https://github.com/envoyproxy/envoy-filter-example/pull/69 is reverted.
static TestTimeSystemPtr realTime() { return TestTimeSystemPtr(); }

// Initialize the basic proto configuration, create fake upstreams, and start Envoy.
Expand Down
5 changes: 2 additions & 3 deletions test/integration/integration_admin_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,7 @@ TEST_P(IntegrationAdminTest, AdminCpuProfilerStart) {
class IntegrationAdminIpv4Ipv6Test : public testing::Test, public HttpIntegrationTest {
public:
IntegrationAdminIpv4Ipv6Test()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, Network::Address::IpVersion::v4,
realTime()) {}
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, Network::Address::IpVersion::v4) {}

void initialize() override {
config_helper_.addConfigModifier(
Expand Down Expand Up @@ -451,7 +450,7 @@ TEST_F(IntegrationAdminIpv4Ipv6Test, Ipv4Ipv6Listen) {
// restrictions on their names.
class StatsMatcherIntegrationTest
: public testing::Test,
public Event::SimulatedTimeSystem,
public Event::TestUsingSimulatedTime,
public HttpIntegrationTest,
public testing::WithParamInterface<Network::Address::IpVersion> {
public:
Expand Down
2 changes: 1 addition & 1 deletion test/integration/integration_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Envoy {
class IntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
IntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {}
IntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {}
};

class UpstreamEndpointIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
Expand Down
3 changes: 1 addition & 2 deletions test/integration/load_stats_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ namespace {
class LoadStatsIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
LoadStatsIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {
LoadStatsIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {
// We rely on some fairly specific load balancing picks in this test, so
// determinize the schedule.
setDeterministic();
Expand Down
3 changes: 1 addition & 2 deletions test/integration/proxy_proto_integration_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ namespace Envoy {
class ProxyProtoIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
ProxyProtoIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {
ProxyProtoIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {
config_helper_.addConfigModifier(
[&](envoy::config::bootstrap::v2::Bootstrap& bootstrap) -> void {
auto* listener = bootstrap.mutable_static_resources()->mutable_listeners(0);
Expand Down
3 changes: 1 addition & 2 deletions test/integration/ratelimit_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ namespace {
class RatelimitIntegrationTest : public Grpc::GrpcClientIntegrationParamTest,
public HttpIntegrationTest {
public:
RatelimitIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ipVersion(), realTime()) {}
RatelimitIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ipVersion()) {}

void SetUp() override { initialize(); }

Expand Down
2 changes: 1 addition & 1 deletion test/integration/sds_dynamic_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class SdsDynamicIntegrationBaseTest : public Grpc::GrpcClientIntegrationParamTes
public HttpIntegrationTest {
public:
SdsDynamicIntegrationBaseTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ipVersion(), realTime()),
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ipVersion()),
server_cert_("server_cert"), validation_secret_("validation_secret"),
client_cert_("client_cert") {}

Expand Down
4 changes: 2 additions & 2 deletions test/integration/sds_static_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class SdsStaticDownstreamIntegrationTest
public HttpIntegrationTest {
public:
SdsStaticDownstreamIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {}
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {}

void initialize() override {
config_helper_.addConfigModifier([](envoy::config::bootstrap::v2::Bootstrap& bootstrap) {
Expand Down Expand Up @@ -110,7 +110,7 @@ class SdsStaticUpstreamIntegrationTest : public testing::TestWithParam<Network::
public HttpIntegrationTest {
public:
SdsStaticUpstreamIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam(), realTime()) {}
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, GetParam()) {}

void initialize() override {
config_helper_.addConfigModifier([](envoy::config::bootstrap::v2::Bootstrap& bootstrap) {
Expand Down
2 changes: 1 addition & 1 deletion test/integration/stats_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace {
class StatsIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public BaseIntegrationTest {
public:
StatsIntegrationTest() : BaseIntegrationTest(GetParam(), realTime()) {}
StatsIntegrationTest() : BaseIntegrationTest(GetParam()) {}

void TearDown() override {
test_server_.reset();
Expand Down
3 changes: 1 addition & 2 deletions test/integration/tcp_conn_pool_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ class TcpConnPoolIntegrationTest : public testing::TestWithParam<Network::Addres
public BaseIntegrationTest {
public:
TcpConnPoolIntegrationTest()
: BaseIntegrationTest(GetParam(), realTime(), tcp_conn_pool_config),
filter_resolver_(config_factory_) {}
: BaseIntegrationTest(GetParam(), tcp_conn_pool_config), filter_resolver_(config_factory_) {}

// Called once by the gtest framework before any tests are run.
static void SetUpTestSuite() {
Expand Down
3 changes: 1 addition & 2 deletions test/integration/tcp_proxy_integration_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ namespace {
class TcpProxyIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public BaseIntegrationTest {
public:
TcpProxyIntegrationTest()
: BaseIntegrationTest(GetParam(), realTime(), ConfigHelper::TCP_PROXY_CONFIG) {
TcpProxyIntegrationTest() : BaseIntegrationTest(GetParam(), ConfigHelper::TCP_PROXY_CONFIG) {
enable_half_close_ = true;
}

Expand Down
4 changes: 2 additions & 2 deletions test/integration/uds_integration_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class UdsUpstreamIntegrationTest
public HttpIntegrationTest {
public:
UdsUpstreamIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, std::get<0>(GetParam()), realTime()),
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, std::get<0>(GetParam())),
abstract_namespace_(std::get<1>(GetParam())) {}

void createUpstreams() override {
Expand Down Expand Up @@ -50,7 +50,7 @@ class UdsListenerIntegrationTest
public HttpIntegrationTest {
public:
UdsListenerIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, std::get<0>(GetParam()), realTime()),
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, std::get<0>(GetParam())),
abstract_namespace_(std::get<1>(GetParam())) {}

void initialize() override;
Expand Down
3 changes: 1 addition & 2 deletions test/integration/xds_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ namespace {
class XdsIntegrationTest : public testing::TestWithParam<Network::Address::IpVersion>,
public HttpIntegrationTest {
public:
XdsIntegrationTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam(), realTime()) {
XdsIntegrationTest() : HttpIntegrationTest(Http::CodecClient::Type::HTTP2, GetParam()) {
setUpstreamProtocol(FakeHttpConnection::Type::HTTP2);
}

Expand Down
Loading