2018-12-04 11:30:21 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <toml/region.hpp>
|
|
|
|
#include <toml/result.hpp>
|
|
|
|
|
|
|
|
#define TOML11_TEST_LEX_ACCEPT(lxr, tkn, expct) \
|
|
|
|
do { \
|
|
|
|
const std::string token (tkn); \
|
|
|
|
const std::string expected(expct); \
|
2018-12-05 08:19:37 +00:00
|
|
|
toml::detail::location<std::string> loc("test", token); \
|
2018-12-04 11:30:21 +00:00
|
|
|
const auto result = lxr::invoke(loc); \
|
|
|
|
BOOST_CHECK(result.is_ok()); \
|
|
|
|
if(result.is_ok()){ \
|
|
|
|
const auto region = result.unwrap(); \
|
|
|
|
BOOST_CHECK_EQUAL(region.str(), expected); \
|
|
|
|
BOOST_CHECK_EQUAL(region.str().size(), expected.size()); \
|
2018-12-12 07:12:10 +00:00
|
|
|
BOOST_CHECK_EQUAL(static_cast<std::size_t>(std::distance( \
|
|
|
|
loc.begin(), loc.iter())), region.size()); \
|
2018-12-04 11:30:21 +00:00
|
|
|
} else { \
|
2019-05-30 09:05:47 +00:00
|
|
|
std::cerr << "lexer failed with input `"; \
|
2018-12-04 11:30:21 +00:00
|
|
|
std::cerr << token << "`. expected `" << expected << "`\n"; \
|
|
|
|
std::cerr << "reason: " << result.unwrap_err() << '\n'; \
|
|
|
|
} \
|
|
|
|
} while(false); \
|
|
|
|
/**/
|
|
|
|
|
|
|
|
#define TOML11_TEST_LEX_REJECT(lxr, tkn) \
|
|
|
|
do { \
|
|
|
|
const std::string token (tkn); \
|
2018-12-05 08:19:37 +00:00
|
|
|
toml::detail::location<std::string> loc("test", token); \
|
2018-12-04 11:30:21 +00:00
|
|
|
const auto result = lxr::invoke(loc); \
|
|
|
|
BOOST_CHECK(result.is_err()); \
|
|
|
|
BOOST_CHECK(loc.begin() == loc.iter()); \
|
|
|
|
} while(false); /**/
|