#include "test/mocks/http/stream_encoder.h" #include "common/http/header_utility.h" using testing::_; using testing::Invoke; namespace Envoy { namespace Http { MockHttp1StreamEncoderOptions::MockHttp1StreamEncoderOptions() = default; MockHttp1StreamEncoderOptions::~MockHttp1StreamEncoderOptions() = default; MockRequestEncoder::MockRequestEncoder() { ON_CALL(*this, getStream()).WillByDefault(ReturnRef(stream_)); ON_CALL(*this, encodeHeaders(_, _)) .WillByDefault(Invoke([](const RequestHeaderMap& headers, bool) -> Status { // Check to see that method is not-null. Path can be null for CONNECT and authority can be // null at the codec level. ASSERT(HeaderUtility::checkRequiredHeaders(headers).ok()); return okStatus(); })); } MockRequestEncoder::~MockRequestEncoder() = default; MockResponseEncoder::MockResponseEncoder() { ON_CALL(*this, getStream()).WillByDefault(ReturnRef(stream_)); ON_CALL(*this, encodeHeaders(_, _)) .WillByDefault(Invoke([](const ResponseHeaderMap& headers, bool) { // Check for passing request headers as response headers in a test. ASSERT_NE(nullptr, headers.Status()); })); } MockResponseEncoder::~MockResponseEncoder() = default; } // namespace Http } // namespace Envoy