ClickHouse/src/IO/tests/gtest_peekable_read_buffer.cpp
2023-01-24 01:20:13 +00:00

152 lines
4.2 KiB
C++

#include <gtest/gtest.h>
#include <base/types.h>
#include <IO/ReadHelpers.h>
#include <IO/ReadBufferFromString.h>
#include <IO/ConcatReadBuffer.h>
#include <IO/PeekableReadBuffer.h>
static void readAndAssert(DB::ReadBuffer & buf, const char * str)
{
size_t n = strlen(str);
char tmp[n];
buf.readStrict(tmp, n);
ASSERT_EQ(strncmp(tmp, str, n), 0);
}
static void assertAvailable(DB::ReadBuffer & buf, const char * str)
{
size_t n = strlen(str);
ASSERT_EQ(buf.available(), n);
ASSERT_EQ(strncmp(buf.position(), str, n), 0);
}
TEST(PeekableReadBuffer, CheckpointsWorkCorrectly)
try
{
std::string s1 = "0123456789";
std::string s2 = "qwertyuiop";
std::string s3 = "asdfghjkl;";
std::string s4 = "zxcvbnm,./";
DB::ConcatReadBuffer concat;
concat.appendBuffer(std::make_unique<DB::ReadBufferFromString>(s1));
concat.appendBuffer(std::make_unique<DB::ReadBufferFromString>(s2));
concat.appendBuffer(std::make_unique<DB::ReadBufferFromString>(s3));
concat.appendBuffer(std::make_unique<DB::ReadBufferFromString>(s4));
DB::PeekableReadBuffer peekable(concat, 0);
ASSERT_TRUE(!peekable.eof());
assertAvailable(peekable, "0123456789");
{
DB::PeekableReadBufferCheckpoint checkpoint{peekable};
readAndAssert(peekable, "01234");
}
assertAvailable(peekable, "56789");
readAndAssert(peekable, "56");
peekable.setCheckpoint();
readAndAssert(peekable, "789qwertyu");
peekable.rollbackToCheckpoint();
peekable.dropCheckpoint();
assertAvailable(peekable, "789");
{
DB::PeekableReadBufferCheckpoint checkpoint{peekable, true};
peekable.ignore(20);
}
assertAvailable(peekable, "789qwertyuiop");
readAndAssert(peekable, "789qwertyu");
peekable.setCheckpoint();
readAndAssert(peekable, "iopasdfghj");
assertAvailable(peekable, "kl;");
peekable.dropCheckpoint();
peekable.setCheckpoint();
readAndAssert(peekable, "kl;zxcvbnm,./");
ASSERT_TRUE(peekable.eof());
ASSERT_TRUE(peekable.eof());
ASSERT_TRUE(peekable.eof());
peekable.rollbackToCheckpoint();
readAndAssert(peekable, "kl;zxcvbnm");
peekable.dropCheckpoint();
ASSERT_TRUE(peekable.hasUnreadData());
readAndAssert(peekable, ",./");
ASSERT_FALSE(peekable.hasUnreadData());
ASSERT_TRUE(peekable.eof());
ASSERT_TRUE(peekable.eof());
ASSERT_TRUE(peekable.eof());
}
catch (const DB::Exception & e)
{
std::cerr << e.what() << ", " << e.displayText() << std::endl;
throw;
}
TEST(PeekableReadBuffer, RecursiveCheckpointsWorkCorrectly)
try
{
std::string s1 = "0123456789";
std::string s2 = "qwertyuiop";
DB::ConcatReadBuffer concat;
concat.appendBuffer(std::make_unique<DB::ReadBufferFromString>(s1));
concat.appendBuffer(std::make_unique<DB::ReadBufferFromString>(s2));
DB::PeekableReadBuffer peekable(concat, 0);
ASSERT_TRUE(!peekable.eof());
assertAvailable(peekable, "0123456789");
readAndAssert(peekable, "01234");
peekable.setCheckpoint();
readAndAssert(peekable, "56");
peekable.setCheckpoint();
readAndAssert(peekable, "78");
assertAvailable(peekable, "9");
peekable.rollbackToCheckpoint();
assertAvailable(peekable, "789");
readAndAssert(peekable, "789");
peekable.setCheckpoint();
readAndAssert(peekable, "qwert");
peekable.rollbackToCheckpoint();
assertAvailable(peekable, "qwertyuiop");
peekable.dropCheckpoint();
readAndAssert(peekable, "qwerty");
peekable.setCheckpoint();
readAndAssert(peekable, "ui");
peekable.rollbackToCheckpoint();
assertAvailable(peekable, "uiop");
peekable.dropCheckpoint();
peekable.rollbackToCheckpoint();
assertAvailable(peekable, "789");
peekable.dropCheckpoint();
readAndAssert(peekable, "789");
readAndAssert(peekable, "qwerty");
peekable.rollbackToCheckpoint();
assertAvailable(peekable, "56789");
peekable.dropCheckpoint();
readAndAssert(peekable, "56789q");
assertAvailable(peekable, "wertyuiop");
ASSERT_TRUE(!peekable.hasUnreadData());
readAndAssert(peekable, "wertyuiop");
ASSERT_TRUE(peekable.eof());
}
catch (const DB::Exception & e)
{
std::cerr << e.what() << ", " << e.displayText() << std::endl;
throw;
}