Skip to content

Commit

Permalink
Modify header parsing for empty headers, update old and add new tests…
Browse files Browse the repository at this point in the history
… for header parsing
  • Loading branch information
red0124 committed Mar 14, 2024
1 parent 50de5b3 commit 8b1cf56
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 48 deletions.
4 changes: 0 additions & 4 deletions include/ss/parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -531,10 +531,6 @@ class parser {

[[nodiscard]] bool strict_split(header_splitter& splitter,
std::string& header) {
if (header.empty()) {
return false;
}

if constexpr (throw_on_error) {
try {
splitter.split(header.data(), reader_.delim_);
Expand Down
4 changes: 0 additions & 4 deletions ssp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2805,10 +2805,6 @@ class parser {

[[nodiscard]] bool strict_split(header_splitter& splitter,
std::string& header) {
if (header.empty()) {
return false;
}

if constexpr (throw_on_error) {
try {
splitter.split(header.data(), reader_.delim_);
Expand Down
117 changes: 77 additions & 40 deletions test/test_parser1_4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ void test_invalid_fields(const std::vector<std::string>& lines,

auto check_header = [&lines](auto& p) {
if (lines.empty()) {
CHECK(p.header().empty());
CHECK_EQ(p.header().size(), 1);
CHECK_EQ(p.header().at(0), "");
CHECK_EQ(merge_header(p.header(), ","), p.raw_header());
} else {
CHECK_EQ(lines[0], merge_header(p.header()));
Expand Down Expand Up @@ -263,7 +264,7 @@ void test_invalid_fields(const std::vector<std::string>& lines,
}
}

TEST_CASE_TEMPLATE("test invalid fheader fields usage", T,
TEST_CASE_TEMPLATE("test invalid header fields usage", T,
ParserOptionCombinations) {
test_invalid_fields<T>({}, {});

Expand Down Expand Up @@ -412,43 +413,79 @@ TEST_CASE_TEMPLATE("test invalid header", T, ParserOptionCombinations) {
}

{
std::vector<std::string> expected_header = {""};
auto [p, _] = make_parser<buffer_mode, ErrorMode>(f.name);
CHECK(p.header().empty());
CHECK_EQ(merge_header(p.header()), p.raw_header());
CHECK_EQ_ARRAY(expected_header, p.header());
CHECK_EQ("", p.raw_header());
CHECK(p.valid());
}

// Unterminated quote in header
// Empty header fields
{
std::ofstream out{f.name};
out << "\"Int" << std::endl;
out << "1" << std::endl;
out << ",," << std::endl;
out << "1,2,3" << std::endl;
}

{
auto [p, _] =
make_parser<buffer_mode, ErrorMode, ss::quote<'"'>>(f.name);
auto command = [&p = p] { std::ignore = p.header(); };
expect_error_on_command(p, command);
CHECK_EQ(p.raw_header(), "\"Int");
std::vector<std::string> expected_header = {"", "", ""};
auto [p, _] = make_parser<buffer_mode, ErrorMode>(f.name);
CHECK_EQ_ARRAY(expected_header, p.header());
CHECK_EQ(",,", p.raw_header());
CHECK(p.valid());

auto command1 = [&p = p] { std::ignore = p.field_exists("Int"); };
expect_error_on_command(p, command1);

auto command2 = [&p = p] { p.use_fields("Int"); };
expect_error_on_command(p, command2);
}
}

template <typename T, typename... Ts>
void test_unterminated_quote_header() {
constexpr auto buffer_mode = T::BufferMode::value;
using ErrorMode = typename T::ErrorMode;

unique_file_name f{"unterminated_quote_header"};

{
auto [p, _] =
make_parser<buffer_mode, ErrorMode, ss::quote<'"'>, ss::multiline>(
f.name);
auto command = [&p = p] { std::ignore = p.header(); };
expect_error_on_command(p, command);
CHECK_EQ(p.raw_header(), "\"Int");
std::ofstream out{f.name};
out << "\"Int" << std::endl;
out << "1" << std::endl;
}

{
auto [p, _] = make_parser<buffer_mode, ErrorMode, ss::quote<'"'>,
ss::escape<'\\'>, ss::multiline>(f.name);
auto command = [&p = p] { std::ignore = p.header(); };
expect_error_on_command(p, command);
auto [p, _] = make_parser<buffer_mode, ErrorMode, Ts...>(f.name);

auto command0 = [&p = p] { std::ignore = p.header(); };
expect_error_on_command(p, command0);
CHECK_EQ(p.raw_header(), "\"Int");

auto command1 = [&p = p] { std::ignore = p.field_exists("Int"); };
expect_error_on_command(p, command1);

auto command2 = [&p = p] { p.use_fields("Int"); };
expect_error_on_command(p, command2);
}
}

TEST_CASE_TEMPLATE("test unterminated quote header", T,
ParserOptionCombinations) {
using quote = ss::quote<'"'>;
using escape = ss::escape<'\\'>;
test_unterminated_quote_header<T, quote>();
test_unterminated_quote_header<T, quote, ss::multiline>();
test_unterminated_quote_header<T, quote, escape>();
test_unterminated_quote_header<T, quote, escape, ss::multiline>();
}

template <typename T, typename... Ts>
void test_unterminated_escape_header() {
constexpr auto buffer_mode = T::BufferMode::value;
using ErrorMode = typename T::ErrorMode;

unique_file_name f{"unterminated_escape_header"};

// Unterminated escape in header
{
Expand All @@ -458,30 +495,30 @@ TEST_CASE_TEMPLATE("test invalid header", T, ParserOptionCombinations) {
}

{
auto [p, _] =
make_parser<buffer_mode, ErrorMode, ss::escape<'\\'>>(f.name);
auto command = [&p = p] { std::ignore = p.header(); };
expect_error_on_command(p, command);
CHECK_EQ(p.raw_header(), "Int\\");
}
auto [p, _] = make_parser<buffer_mode, ErrorMode, Ts...>(f.name);

{
auto [p, _] = make_parser<buffer_mode, ErrorMode, ss::escape<'\\'>,
ss::multiline>(f.name);
auto command = [&p = p] { std::ignore = p.header(); };
expect_error_on_command(p, command);
auto command0 = [&p = p] { std::ignore = p.header(); };
expect_error_on_command(p, command0);
CHECK_EQ(p.raw_header(), "Int\\");
}

{
auto [p, _] = make_parser<buffer_mode, ErrorMode, ss::escape<'\\'>,
ss::quote<'"'>, ss::multiline>(f.name);
auto command = [&p = p] { std::ignore = p.header(); };
expect_error_on_command(p, command);
CHECK_EQ(p.raw_header(), "Int\\");
auto command1 = [&p = p] { std::ignore = p.field_exists("Int"); };
expect_error_on_command(p, command1);

auto command2 = [&p = p] { p.use_fields("Int"); };
expect_error_on_command(p, command2);
}
}

TEST_CASE_TEMPLATE("test unterminated escape header", T,
ParserOptionCombinations) {
using quote = ss::quote<'"'>;
using escape = ss::escape<'\\'>;
test_unterminated_escape_header<T, escape>();
test_unterminated_escape_header<T, escape, ss::multiline>();
test_unterminated_escape_header<T, escape, quote>();
test_unterminated_escape_header<T, escape, quote, ss::multiline>();
}

template <typename T>
void test_ignore_empty(const std::vector<X>& data) {
constexpr auto buffer_mode = T::BufferMode::value;
Expand Down

0 comments on commit 8b1cf56

Please sign in to comment.