mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 17:58:09 +08:00

This removes one #define from each unit test file and ensures consistency between file and module names. This consistency, was not strictly maintained before. I hope that any discrepancies were unintentional and that a 1:1 mapping is actually what is desired. Since the definition is now done at one single place, it would be easy to apply transformations like removing the 'test_' prefix or replacing '_' with '-' if this should be desired.
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
#include "unit_test.hpp"
|
|
|
|
#include <toml/parser.hpp>
|
|
#include "test_parse_aux.hpp"
|
|
|
|
using namespace toml;
|
|
using namespace detail;
|
|
|
|
BOOST_AUTO_TEST_CASE(test_inline_table)
|
|
{
|
|
TOML11_TEST_PARSE_EQUAL(parse_inline_table<toml::value>, "{}", table());
|
|
{
|
|
table t;
|
|
t["foo"] = toml::value(42);
|
|
t["bar"] = toml::value("baz");
|
|
TOML11_TEST_PARSE_EQUAL(parse_inline_table<toml::value>, "{foo = 42, bar = \"baz\"}", t);
|
|
}
|
|
{
|
|
table t;
|
|
table t_sub;
|
|
t_sub["name"] = toml::value("pug");
|
|
t["type"] = toml::value(t_sub);
|
|
TOML11_TEST_PARSE_EQUAL(parse_inline_table<toml::value>, "{type.name = \"pug\"}", t);
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(test_inline_table_value)
|
|
{
|
|
TOML11_TEST_PARSE_EQUAL_VALUE(parse_value<toml::value>, "{}", value(table()));
|
|
{
|
|
table t;
|
|
t["foo"] = toml::value(42);
|
|
t["bar"] = toml::value("baz");
|
|
TOML11_TEST_PARSE_EQUAL_VALUE(parse_value<toml::value>, "{foo = 42, bar = \"baz\"}", value(t));
|
|
}
|
|
{
|
|
table t;
|
|
table t_sub;
|
|
t_sub["name"] = toml::value("pug");
|
|
t["type"] = toml::value(t_sub);
|
|
TOML11_TEST_PARSE_EQUAL_VALUE(parse_value<toml::value>, "{type.name = \"pug\"}", value(t));
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(test_inline_table_immutability)
|
|
{
|
|
{
|
|
std::istringstream stream(std::string(
|
|
"a = {b = 1}\n"
|
|
"a.c = 2\n"));
|
|
BOOST_CHECK_THROW(toml::parse(stream), toml::syntax_error);
|
|
}
|
|
{
|
|
std::istringstream stream(std::string(
|
|
"a = {b = {c = 1}}\n"
|
|
"a.b.d = 2\n"));
|
|
BOOST_CHECK_THROW(toml::parse(stream), toml::syntax_error);
|
|
}
|
|
}
|