mirror of
https://github.com/ToruNiina/toml11.git
synced 2024-11-08 13:50:06 +00:00
38 lines
2.4 KiB
C++
38 lines
2.4 KiB
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <algorithm>
|
|
#include <toml.hpp>
|
|
|
|
// some of the parsers returns not only a value but also a region.
|
|
#define TOML11_TEST_PARSE_EQUAL(psr, tkn, expct) \
|
|
do { \
|
|
const std::string token(tkn); \
|
|
toml::detail::location loc("test", token); \
|
|
const auto result = psr(loc); \
|
|
BOOST_TEST(result.is_ok()); \
|
|
if(result.is_ok()){ \
|
|
BOOST_TEST(result.unwrap().first == expct); \
|
|
} else { \
|
|
std::cerr << "parser " << #psr << " failed with input `"; \
|
|
std::cerr << token << "`.\n"; \
|
|
std::cerr << "reason: " << result.unwrap_err() << '\n'; \
|
|
} \
|
|
} while(false); \
|
|
/**/
|
|
|
|
#define TOML11_TEST_PARSE_EQUAL_VALUE(psr, tkn, expct) \
|
|
do { \
|
|
const std::string token(tkn); \
|
|
toml::detail::location loc("test", token); \
|
|
const auto result = psr(loc); \
|
|
BOOST_TEST(result.is_ok()); \
|
|
if(result.is_ok()){ \
|
|
BOOST_TEST(result.unwrap() == expct); \
|
|
} else { \
|
|
std::cerr << "parse_value failed with input `"; \
|
|
std::cerr << token << "`.\n"; \
|
|
std::cerr << "reason: " << result.unwrap_err() << '\n'; \
|
|
} \
|
|
} while(false); \
|
|
/**/
|