2022-09-16 10:51:41 +00:00
|
|
|
#include "unit_test.hpp"
|
|
|
|
|
2018-12-11 14:25:44 +00:00
|
|
|
#include <toml/parser.hpp>
|
|
|
|
#include "test_parse_aux.hpp"
|
|
|
|
|
|
|
|
using namespace toml;
|
|
|
|
using namespace detail;
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(test_bare_key)
|
|
|
|
{
|
2019-02-25 15:17:28 +00:00
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "barekey", std::vector<key>(1, "barekey"));
|
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "bare-key", std::vector<key>(1, "bare-key"));
|
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "bare_key", std::vector<key>(1, "bare_key"));
|
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "1234", std::vector<key>(1, "1234"));
|
2018-12-11 14:25:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(test_quoted_key)
|
|
|
|
{
|
2019-02-25 15:17:28 +00:00
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "\"127.0.0.1\"", std::vector<key>(1, "127.0.0.1" ));
|
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "\"character encoding\"", std::vector<key>(1, "character encoding"));
|
2018-12-11 14:25:44 +00:00
|
|
|
#if defined(_MSC_VER) || defined(__INTEL_COMPILER)
|
2019-02-25 15:17:28 +00:00
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "\"\xCA\x8E\xC7\x9D\xCA\x9E\"", std::vector<key>(1, "\xCA\x8E\xC7\x9D\xCA\x9E"));
|
2018-12-11 14:25:44 +00:00
|
|
|
#else
|
2019-02-25 15:17:28 +00:00
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "\"ʎǝʞ\"", std::vector<key>(1, "ʎǝʞ" ));
|
2018-12-11 14:25:44 +00:00
|
|
|
#endif
|
2019-02-25 15:17:28 +00:00
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "'key2'", std::vector<key>(1, "key2" ));
|
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "'quoted \"value\"'", std::vector<key>(1, "quoted \"value\"" ));
|
2018-12-11 14:25:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(test_dotted_key)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
std::vector<key> keys(2);
|
|
|
|
keys[0] = "physical";
|
|
|
|
keys[1] = "color";
|
2019-02-25 15:17:28 +00:00
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "physical.color", keys);
|
2018-12-11 14:25:44 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
std::vector<key> keys(2);
|
|
|
|
keys[0] = "physical";
|
|
|
|
keys[1] = "shape";
|
2019-02-25 15:17:28 +00:00
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "physical.shape", keys);
|
2018-12-11 14:25:44 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
std::vector<key> keys(4);
|
|
|
|
keys[0] = "x";
|
|
|
|
keys[1] = "y";
|
|
|
|
keys[2] = "z";
|
|
|
|
keys[3] = "w";
|
2019-02-25 15:17:28 +00:00
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "x.y.z.w", keys);
|
2018-12-11 14:25:44 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
std::vector<key> keys(2);
|
|
|
|
keys[0] = "site";
|
|
|
|
keys[1] = "google.com";
|
2019-02-25 15:17:28 +00:00
|
|
|
TOML11_TEST_PARSE_EQUAL(parse_key, "site.\"google.com\"", keys);
|
2018-12-11 14:25:44 +00:00
|
|
|
}
|
|
|
|
}
|