2020-12-18 16:08:15 +00:00
|
|
|
#include "tests.h"
|
|
|
|
|
2021-04-18 12:04:46 +00:00
|
|
|
TOML_DISABLE_WARNINGS;
|
2020-12-18 16:08:15 +00:00
|
|
|
#include <algorithm>
|
2021-04-18 12:04:46 +00:00
|
|
|
TOML_ENABLE_WARNINGS;
|
2020-12-18 16:08:15 +00:00
|
|
|
|
2020-12-19 11:27:22 +00:00
|
|
|
TEST_CASE("using iterators")
|
2020-12-18 16:08:15 +00:00
|
|
|
{
|
|
|
|
constexpr auto data = R"(array=[1,"Foo",true]
|
|
|
|
string="Bar"
|
|
|
|
number=5)"sv;
|
|
|
|
parsing_should_succeed(FILE_LINE_ARGS, data, [](auto&& table)
|
|
|
|
{
|
|
|
|
const auto table_begin = table.begin();
|
|
|
|
const auto table_end = table.end();
|
|
|
|
|
|
|
|
auto count_table_lambda = [table_begin, table_end](node_type type) noexcept
|
|
|
|
{
|
|
|
|
return std::count_if(table_begin, table_end, [type](const auto& pair) noexcept
|
|
|
|
{
|
|
|
|
return pair.second.type() == type;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
CHECK(std::distance(table_begin, table_end) == 3);
|
|
|
|
CHECK(count_table_lambda(node_type::table) == 0);
|
|
|
|
CHECK(count_table_lambda(node_type::integer) == 1);
|
|
|
|
CHECK(count_table_lambda(node_type::string) == 1);
|
|
|
|
CHECK(std::next(table_begin, 3) == table_end);
|
|
|
|
|
|
|
|
const auto array_iter = std::find_if(table_begin, table_end, [](const auto& pair) noexcept
|
|
|
|
{
|
|
|
|
return pair.second.is_array();
|
|
|
|
});
|
|
|
|
|
|
|
|
REQUIRE(array_iter != table_end);
|
|
|
|
const auto& array = array_iter->second.as_array();
|
|
|
|
const auto array_begin = array->begin();
|
|
|
|
const auto array_end = array->end();
|
|
|
|
|
|
|
|
auto count_array_lambda = [array_begin, array_end](node_type type) noexcept
|
|
|
|
{
|
|
|
|
return std::count_if(array_begin, array_end, [type](const auto& node) noexcept
|
|
|
|
{
|
|
|
|
return node.type() == type;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
CHECK(std::distance(array_begin, array_end) == 3);
|
|
|
|
CHECK(count_array_lambda(node_type::table) == 0);
|
|
|
|
CHECK(count_array_lambda(node_type::integer) == 1);
|
|
|
|
CHECK(count_array_lambda(node_type::string) == 1);
|
|
|
|
CHECK(std::next(array_begin, 2) != array_end);
|
|
|
|
});
|
|
|
|
}
|