#include "net/http/http_chunked_decoder.h"
#include <memory>
#include <string>
#include <string_view>
#include <vector>
#include "base/containers/span.h"
#include "base/format_macros.h"
#include "base/numerics/safe_conversions.h"
#include "base/strings/string_view_util.h"
#include "base/strings/stringprintf.h"
#include "net/base/net_errors.h"
#include "net/test/gtest_util.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using net::test::IsError;
using net::test::IsOk;
namespace net {
namespace {
typedef testing::Test HttpChunkedDecoderTest;
void RunTest(base::span<const std::string_view> inputs,
const char* expected_output,
bool expected_eof,
int bytes_after_eof) {
HttpChunkedDecoder decoder;
EXPECT_FALSE(decoder.reached_eof());
std::string result;
for (const auto input : inputs) {
std::vector<uint8_t> copy(input.begin(), input.end());
int n = decoder.FilterBuf(copy);
EXPECT_GE(n, 0);
if (n > 0) {
copy.resize(n);
result.append(copy.begin(), copy.end());
}
}
EXPECT_EQ(expected_output, result);
EXPECT_EQ(expected_eof, decoder.reached_eof());
EXPECT_EQ(bytes_after_eof, decoder.bytes_after_eof());
}
void RunTestUntilFailure(base::span<const std::string_view> inputs,
size_t fail_index) {
HttpChunkedDecoder decoder;
EXPECT_FALSE(decoder.reached_eof());
for (size_t i = 0; i < inputs.size(); ++i) {
std::vector<uint8_t> copy(inputs[i].begin(), inputs[i].end());
int n = decoder.FilterBuf(copy);
if (n < 0) {
EXPECT_THAT(n, IsError(ERR_INVALID_CHUNKED_ENCODING));
EXPECT_EQ(fail_index, i);
return;
}
}
FAIL();
}
TEST(HttpChunkedDecoderTest, Basic) {
const std::vector<std::string_view> inputs = {
"B\r\nhello hello\r\n0\r\n\r\n"};
RunTest(inputs, "hello hello", true, 0);
}
TEST(HttpChunkedDecoderTest, OneChunk) {
const std::vector<std::string_view> inputs = {"5\r\nhello\r\n"};
RunTest(inputs, "hello", false, 0);
}
TEST(HttpChunkedDecoderTest, Typical) {
const std::vector<std::string_view> inputs = {
"5\r\nhello\r\n",
"1\r\n \r\n",
"5\r\nworld\r\n",
"0\r\n\r\n"
};
RunTest(inputs, "hello world", true, 0);
}
TEST(HttpChunkedDecoderTest, Incremental) {
const std::vector<std::string_view> inputs = {
"5",
"\r",
"\n",
"hello",
"\r",
"\n",
"0",
"\r",
"\n",
"\r",
"\n"
};
RunTest(inputs, "hello", true, 0);
}
TEST(HttpChunkedDecoderTest, Incremental2) {
const std::vector<std::string_view> inputs = {
"5\r",
"\n",
"hello\r",
"\n",
"0\r",
"\n\r",
"\n"
};
RunTest(inputs, "hello", true, 0);
}
TEST(HttpChunkedDecoderTest, LF_InsteadOf_CRLF) {
const std::vector<std::string_view> inputs = {
"5\nhello\n",
"1\n \n",
"5\nworld\n",
"0\n\n"
};
RunTest(inputs, "hello world", true, 0);
}
TEST(HttpChunkedDecoderTest, Extensions) {
const std::vector<std::string_view> inputs = {
"5;x=0\r\nhello\r\n",
"0;y=\"2 \"\r\n\r\n"
};
RunTest(inputs, "hello", true, 0);
}
TEST(HttpChunkedDecoderTest, Trailers) {
const std::vector<std::string_view> inputs = {
"5\r\nhello\r\n",
"0\r\n",
"Foo: 1\r\n",
"Bar: 2\r\n",
"\r\n"
};
RunTest(inputs, "hello", true, 0);
}
TEST(HttpChunkedDecoderTest, TrailersUnfinished) {
const std::vector<std::string_view> inputs = {
"5\r\nhello\r\n",
"0\r\n",
"Foo: 1\r\n"
};
RunTest(inputs, "hello", false, 0);
}
TEST(HttpChunkedDecoderTest, InvalidChunkSize_TooBig) {
const std::vector<std::string_view> inputs = {
"48469410265455838241\r\nhello\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, InvalidChunkSize_0X) {
const std::vector<std::string_view> inputs = {
"0x5\r\nhello\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, ChunkSize_TrailingSpace) {
const std::vector<std::string_view> inputs = {
"5 \r\nhello\r\n",
"0\r\n\r\n"
};
RunTest(inputs, "hello", true, 0);
}
TEST(HttpChunkedDecoderTest, InvalidChunkSize_TrailingTab) {
const std::vector<std::string_view> inputs = {
"5\t\r\nhello\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, InvalidChunkSize_TrailingFormFeed) {
const std::vector<std::string_view> inputs = {
"5\f\r\nhello\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, InvalidChunkSize_TrailingVerticalTab) {
const std::vector<std::string_view> inputs = {
"5\v\r\nhello\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, InvalidChunkSize_TrailingNonHexDigit) {
const std::vector<std::string_view> inputs = {
"5H\r\nhello\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, InvalidChunkSize_LeadingSpace) {
const std::vector<std::string_view> inputs = {
" 5\r\nhello\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, InvalidLeadingSeparator) {
const std::vector<std::string_view> inputs = {
"\r\n5\r\nhello\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, InvalidChunkSize_NoSeparator) {
const std::vector<std::string_view> inputs = {
"5\r\nhello",
"1\r\n \r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 1);
}
TEST(HttpChunkedDecoderTest, InvalidChunkSize_Negative) {
const std::vector<std::string_view> inputs = {
"8\r\n12345678\r\n-5\r\nhello\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, InvalidChunkSize_Plus) {
const std::vector<std::string_view> inputs = {
"+5\r\nhello\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, InvalidConsecutiveCRLFs) {
const std::vector<std::string_view> inputs = {
"5\r\nhello\r\n",
"\r\n\r\n\r\n\r\n",
"0\r\n\r\n"
};
RunTestUntilFailure(inputs, 1);
}
TEST(HttpChunkedDecoderTest, ReallyBigChunks) {
const size_t kWrittenBytesPerIteration = 0x10000;
int64_t kChunkLengths[] = {
0x0c0000000,
0x100000000,
};
for (int64_t chunk_length : kChunkLengths) {
HttpChunkedDecoder decoder;
EXPECT_FALSE(decoder.reached_eof());
std::string chunk_header =
base::StringPrintf("%" PRIx64 "\r\n", chunk_length);
std::vector<char> data(chunk_header.begin(), chunk_header.end());
EXPECT_EQ(OK, decoder.FilterBuf(base::as_writable_byte_span(data)));
EXPECT_FALSE(decoder.reached_eof());
data.clear();
data.reserve(kWrittenBytesPerIteration);
for (size_t i = 0; i < kWrittenBytesPerIteration; i++) {
data.push_back(static_cast<char>(i));
}
for (int64_t total_written = 0; total_written < chunk_length;
total_written += kWrittenBytesPerIteration) {
EXPECT_EQ(kWrittenBytesPerIteration,
base::checked_cast<size_t>(
decoder.FilterBuf(base::as_writable_byte_span(data).first(
kWrittenBytesPerIteration))));
EXPECT_FALSE(decoder.reached_eof());
}
char final_chunk[] = "\r\n0\r\n\r\n";
EXPECT_EQ(OK, decoder.FilterBuf(base::as_writable_byte_span(final_chunk)));
EXPECT_TRUE(decoder.reached_eof());
for (size_t i = 0; i < kWrittenBytesPerIteration; i++) {
EXPECT_EQ(static_cast<char>(i), data[i]);
}
}
}
TEST(HttpChunkedDecoderTest, ExcessiveChunkLen) {
const std::vector<std::string_view> inputs = {
"8000000000000000\r\nhello\r\n"};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, ExcessiveChunkLen2) {
const std::vector<std::string_view> inputs = {
"10000000000000000\r\nhello\r\n"};
RunTestUntilFailure(inputs, 0);
}
TEST(HttpChunkedDecoderTest, BasicExtraData) {
const std::vector<std::string_view> inputs = {
"5\r\nhello\r\n0\r\n\r\nextra bytes"};
RunTest(inputs, "hello", true, 11);
}
TEST(HttpChunkedDecoderTest, IncrementalExtraData) {
const std::vector<std::string_view> inputs = {
"5",
"\r",
"\n",
"hello",
"\r",
"\n",
"0",
"\r",
"\n",
"\r",
"\nextra bytes"
};
RunTest(inputs, "hello", true, 11);
}
TEST(HttpChunkedDecoderTest, MultipleExtraDataBlocks) {
const std::vector<std::string_view> inputs = {
"5\r\nhello\r\n0\r\n\r\nextra",
" bytes"
};
RunTest(inputs, "hello", true, 11);
}
TEST(HttpChunkedDecoderTest, LongChunkLengthLine) {
const int kBigChunkLength = HttpChunkedDecoder::kMaxLineBufLen;
std::vector<char> big_chunk(kBigChunkLength, '0');
const std::vector<std::string_view> inputs = {base::as_string_view(big_chunk),
"5"};
RunTestUntilFailure(inputs, 1);
}
TEST(HttpChunkedDecoderTest, LongLengthLengthLine) {
const int kBigChunkLength = HttpChunkedDecoder::kMaxLineBufLen;
std::vector<char> big_chunk(kBigChunkLength, '0');
const std::vector<std::string_view> inputs = {
"5;", base::as_string_view(big_chunk)};
RunTestUntilFailure(inputs, 1);
}
}
}