Unverified Commit 3975c5da authored by Joseph Noir's avatar Joseph Noir Committed by GitHub

Merge pull request #1102

Fix CLI parsing and ref syncing, part 2
parents 58af91e1 a5aeb770
......@@ -185,6 +185,12 @@ is based on [Keep a Changelog](https://keepachangelog.com).
- In some edge cases, actors failed to shut down properly when hosting a stream
source (#1076). The handshake process for a graceful shutdown has been fixed.
- Fixed a compiler error on Clang 10 (#1077).
- Setting lists and dictionaries on the command line now properly overrides
default values and values from configuration files instead of appending to
them (#942).
- Using unquoted strings in command-line arguments inside lists now works as
expected. For example, `--foo=abc,def` is now equivalent to
`--foo=["abc", "def"]`.
## [0.17.4] - 2019-02-08
......
......@@ -166,6 +166,11 @@ public:
/// Generates human-readable help text for all options.
std::string help_text(bool global_only = true) const;
/// Drops all options.
void clear() {
opts_.clear();
}
// -- parsing ----------------------------------------------------------------
/// Parses a given range as CLI arguments into `config`.
......
......@@ -104,8 +104,8 @@ public:
// -- parsing ----------------------------------------------------------------
/// Tries to parse a value from `str`.
static expected<config_value>
parse(string_view::iterator first, string_view::iterator last);
static expected<config_value> parse(string_view::iterator first,
string_view::iterator last);
/// Tries to parse a value from `str`.
static expected<config_value> parse(string_view str);
......@@ -214,6 +214,22 @@ private:
variant_type data_;
};
// -- convenience constants ----------------------------------------------------
/// Type of the `top_level_cli_parsing` constant.
using top_level_cli_parsing_t = std::false_type;
/// Signals parsing of top-level config values when used as third argument to
/// `parse_cli`.
constexpr auto top_level_cli_parsing = top_level_cli_parsing_t{};
/// Type of the `top_level_cli_parsing` constant.
using nested_cli_parsing_t = std::true_type;
/// Signals parsing of nested config values when used as third argument to
/// `parse_cli`.
constexpr auto nested_cli_parsing = nested_cli_parsing_t{};
// -- SumType-like access ------------------------------------------------------
template <class T>
......@@ -234,7 +250,8 @@ struct default_config_value_access {
return x;
}
static void parse_cli(string_parser_state& ps, T& x) {
template <class Nested>
static void parse_cli(string_parser_state& ps, T& x, Nested) {
detail::parse(ps, x);
}
};
......@@ -262,19 +279,36 @@ CAF_DEFAULT_CONFIG_VALUE_ACCESS(uri, "uri");
#undef CAF_DEFAULT_CONFIG_VALUE_ACCESS
template <>
struct CAF_CORE_EXPORT config_value_access<std::string>
: default_config_value_access<std::string> {
struct CAF_CORE_EXPORT config_value_access<std::string> {
using super = default_config_value_access<std::string>;
static std::string type_name() {
return "string";
}
using super::parse_cli;
static bool is(const config_value& x) {
return holds_alternative<std::string>(x.get_data());
}
static const std::string* get_if(const config_value* x) {
return caf::get_if<std::string>(&(x->get_data()));
}
static std::string get(const config_value& x) {
return caf::get<std::string>(x.get_data());
}
static std::string convert(std::string x) {
return x;
}
template <bool IsNested>
static void parse_cli(string_parser_state& ps, std::string& x,
const char* char_blacklist) {
detail::parse_element(ps, x, char_blacklist);
std::integral_constant<bool, IsNested>) {
if constexpr (IsNested)
detail::parse_element(ps, x, ",={}[]");
else
detail::parse(ps, x);
}
};
......@@ -422,7 +456,8 @@ struct select_config_value_access<T, select_config_value_hint::is_integral> {
return x;
}
static void parse_cli(string_parser_state& ps, T& x) {
template <class Nested>
static void parse_cli(string_parser_state& ps, T& x, Nested) {
detail::parse(ps, x);
}
};
......@@ -482,23 +517,70 @@ struct select_config_value_access<T, select_config_value_hint::is_list> {
return result;
}
static void parse_cli(string_parser_state& ps, T& xs) {
config_value::dictionary result;
bool has_open_token = ps.consume('[');
static void parse_cli(string_parser_state& ps, T& xs,
top_level_cli_parsing_t) {
bool has_open_token;
auto subtype = select_config_value_oracle<value_type>();
if (subtype == select_config_value_hint::is_list) {
// The outer square brackets are optional in nested lists. This means we
// need to check for "[[" at the beginning and otherwise we assume the
// leading '[' was omitted.
string_parser_state tmp{ps.i, ps.e};
has_open_token = tmp.consume('[') && tmp.consume('[');
if (has_open_token)
ps.consume('[');
} else {
has_open_token = ps.consume('[');
}
do {
if (has_open_token && ps.consume(']')) {
ps.skip_whitespaces();
if (has_open_token) {
if (ps.consume(']')) {
ps.skip_whitespaces();
ps.code = ps.at_end() ? pec::success : pec::trailing_character;
return;
}
} else if (ps.at_end()) {
// Allow trailing commas and empty strings.
ps.code = pec::success;
return;
}
value_type tmp;
value_trait::parse_cli(ps, tmp);
value_trait::parse_cli(ps, tmp, nested_cli_parsing);
if (ps.code > pec::trailing_character)
return;
xs.insert(xs.end(), std::move(tmp));
} while (ps.consume(','));
if (has_open_token && !ps.consume(']'))
if (has_open_token && !ps.consume(']')) {
ps.code = ps.at_end() ? pec::unexpected_eof : pec::unexpected_character;
return;
}
ps.skip_whitespaces();
ps.code = ps.at_end() ? pec::success : pec::trailing_character;
}
static void parse_cli(string_parser_state& ps, T& xs,
nested_cli_parsing_t) {
if (!ps.consume('[')) {
ps.code = ps.at_end() ? pec::unexpected_eof : pec::unexpected_character;
return;
}
do {
if (ps.consume(']')) {
ps.skip_whitespaces();
ps.code = ps.at_end() ? pec::success : pec::trailing_character;
return;
}
value_type tmp;
value_trait::parse_cli(ps, tmp, nested_cli_parsing);
if (ps.code > pec::trailing_character)
return;
xs.insert(xs.end(), std::move(tmp));
} while (ps.consume(','));
if (!ps.consume(']')) {
ps.code = ps.at_end() ? pec::unexpected_eof : pec::unexpected_character;
return;
}
ps.skip_whitespaces();
ps.code = ps.at_end() ? pec::success : pec::trailing_character;
}
......@@ -555,7 +637,8 @@ struct select_config_value_access<T, select_config_value_hint::is_map> {
return std::move(*result);
}
static void parse_cli(string_parser_state& ps, map_type& xs) {
template <class Nested>
static void parse_cli(string_parser_state& ps, map_type& xs, Nested) {
detail::parse(ps, xs);
}
......@@ -592,7 +675,8 @@ struct config_value_access<float> {
return x;
}
static void parse_cli(string_parser_state& ps, float& x) {
template <class Nested>
static void parse_cli(string_parser_state& ps, float& x, Nested) {
detail::parse(ps, x);
}
};
......@@ -644,7 +728,8 @@ struct config_value_access<std::tuple<Ts...>> {
return result;
}
static void parse_cli(string_parser_state& ps, tuple_type& xs) {
template <class Nested>
static void parse_cli(string_parser_state& ps, tuple_type& xs, Nested) {
rec_parse(ps, xs, detail::int_token<0>(), detail::type_list<Ts...>());
}
......@@ -723,7 +808,7 @@ private:
static void rec_parse(string_parser_state& ps, tuple_type& xs,
detail::int_token<Pos>, detail::type_list<U, Us...>) {
using trait = select_config_value_access_t<U>;
trait::parse_cli(std::get<Pos>(xs));
trait::parse_cli(std::get<Pos>(xs), nested_cli_parsing);
if (ps.code > pec::trailing_character)
return;
if (sizeof...(Us) > 0 && !ps.consume(','))
......@@ -754,8 +839,8 @@ inline bool operator!=(const config_value& x, const config_value& y) {
CAF_CORE_EXPORT std::string to_string(const config_value& x);
/// @relates config_value
CAF_CORE_EXPORT std::ostream&
operator<<(std::ostream& out, const config_value& x);
CAF_CORE_EXPORT std::ostream& operator<<(std::ostream& out,
const config_value& x);
template <class... Ts>
config_value make_config_value_list(Ts&&... xs) {
......
......@@ -90,9 +90,10 @@ struct config_value_adaptor_access {
return result;
}
static void parse_cli(string_parser_state& ps, value_type& x) {
template <class Nested>
static void parse_cli(string_parser_state& ps, value_type& x, Nested nested) {
tuple_type tmp;
tuple_access::parse_cli(ps, tmp);
tuple_access::parse_cli(ps, tmp, nested);
if (ps.code <= pec::trailing_character)
convert(tmp, x);
}
......
......@@ -57,7 +57,7 @@ public:
/// Parses the content for this field in `object` from `ps`.
virtual void parse_cli(string_parser_state& ps, Object& object,
const char* char_blacklist = "") const = 0;
bool is_nested) const = 0;
};
} // namespace caf
......@@ -91,7 +91,8 @@ struct config_value_object_access {
return result;
}
static void parse_cli(string_parser_state& ps, object_type& x) {
template <class Nested>
static void parse_cli(string_parser_state& ps, object_type& x, Nested) {
using field_type = config_value_field<object_type>;
std::vector<field_type*> parsed_fields;
auto got = [&](field_type* f) {
......@@ -131,7 +132,7 @@ struct config_value_object_access {
return;
}
std::string field_name;
string_access::parse_cli(ps, field_name, "=}");
string_access::parse_cli(ps, field_name, nested_cli_parsing);
if (ps.code > pec::trailing_character)
return;
if (!ps.consume('=')) {
......@@ -151,7 +152,7 @@ struct config_value_object_access {
ps.code = pec::repeated_field_name;
return;
}
fptr->parse_cli(ps, x, ",}");
fptr->parse_cli(ps, x, true);
if (ps.code > pec::trailing_character)
return;
if (ps.at_end()) {
......
......@@ -25,7 +25,6 @@
#include "caf/config_value_adaptor_field.hpp"
#include "caf/config_value_field.hpp"
#include "caf/detail/config_value_field_base.hpp"
#include "caf/detail/dispatch_parse_cli.hpp"
#include "caf/string_view.hpp"
namespace caf::detail {
......
......@@ -20,7 +20,6 @@
#include "caf/config_value.hpp"
#include "caf/config_value_field.hpp"
#include "caf/detail/dispatch_parse_cli.hpp"
#include "caf/optional.hpp"
namespace caf::detail {
......@@ -82,9 +81,13 @@ public:
}
void parse_cli(string_parser_state& ps, object_type& x,
const char* char_blacklist) const override {
bool nested) const override {
using access = caf::select_config_value_access_t<value_type>;
value_type tmp;
dispatch_parse_cli(ps, tmp, char_blacklist);
if (nested)
access::parse_cli(ps, tmp, nested_cli_parsing);
else
access::parse_cli(ps, tmp, top_level_cli_parsing);
if (ps.code <= pec::trailing_character) {
if (predicate_ && !predicate_(tmp))
ps.code = pec::invalid_argument;
......
......@@ -24,7 +24,6 @@
#include "caf/config_value.hpp"
#include "caf/config_value_field.hpp"
#include "caf/detail/config_value_field_base.hpp"
#include "caf/detail/dispatch_parse_cli.hpp"
#include "caf/detail/parse.hpp"
#include "caf/detail/type_traits.hpp"
#include "caf/optional.hpp"
......
......@@ -455,9 +455,10 @@ public:
static constexpr bool value = sizeof(fun(static_cast<T*>(nullptr))) > 1;
};
CAF_HAS_MEMBER_TRAIT(size);
CAF_HAS_MEMBER_TRAIT(clear);
CAF_HAS_MEMBER_TRAIT(data);
CAF_HAS_MEMBER_TRAIT(make_behavior);
CAF_HAS_MEMBER_TRAIT(size);
/// Checks whether F is convertible to either `std::function<void (T&)>`
/// or `std::function<void (const T&)>`.
......
......@@ -58,9 +58,11 @@ expected<config_value> parse_impl(T* ptr, string_view str) {
T tmp;
return parse_impl(&tmp, str);
}
if constexpr (detail::has_clear_member<T>::value)
ptr->clear();
using trait = select_config_value_access_t<T>;
string_parser_state ps{str.begin(), str.end()};
trait::parse_cli(ps, *ptr);
trait::parse_cli(ps, *ptr, top_level_cli_parsing);
if (ps.code != pec::success)
return make_error(ps);
return config_value{trait::convert(*ptr)};
......
......@@ -161,6 +161,7 @@ auto config_option_set::parse(settings& config, argument_iterator first,
return static_cast<pec>(err.code());
return pec::invalid_argument;
}
opt.store(*val);
entry[opt_name] = std::move(*val);
}
return pec::success;
......
......@@ -40,6 +40,14 @@ namespace {
struct fixture {
config_option_set opts;
template <class T>
error read(settings& cfg, std::vector<std::string> args) {
auto res = opts.parse(cfg, std::move(args));
if (res.first != pec::success)
return res.first;
return none;
}
template <class T>
expected<T> read(std::vector<std::string> args) {
settings cfg;
......@@ -154,4 +162,78 @@ CAF_TEST(flat CLI parsing with nested categories) {
CAF_CHECK_EQUAL(read<std::string>({"--foo.goo.bar=foobar"}), "foobar");
}
CAF_TEST(square brackets are optional on the command line) {
using int_list = std::vector<int>;
opts.add<int_list>("global", "value,v", "some list");
CAF_CHECK_EQUAL(read<int_list>({"--value=[1]"}), int_list({1}));
CAF_CHECK_EQUAL(read<int_list>({"--value=[1,]"}), int_list({1}));
CAF_CHECK_EQUAL(read<int_list>({"--value=[ 1 , ]"}), int_list({1}));
CAF_CHECK_EQUAL(read<int_list>({"--value=[1,2]"}), int_list({1, 2}));
CAF_CHECK_EQUAL(read<int_list>({"--value=[1, 2, 3]"}), int_list({1, 2, 3}));
CAF_CHECK_EQUAL(read<int_list>({"--value=[1, 2, 3, ]"}), int_list({1, 2, 3}));
CAF_CHECK_EQUAL(read<int_list>({"--value=1"}), int_list({1}));
CAF_CHECK_EQUAL(read<int_list>({"--value=1,2,3"}), int_list({1, 2, 3}));
CAF_CHECK_EQUAL(read<int_list>({"--value=1, 2 , 3 , "}), int_list({1, 2, 3}));
CAF_CHECK_EQUAL(read<int_list>({"-v", "[1]"}), int_list({1}));
CAF_CHECK_EQUAL(read<int_list>({"-v", "[1,]"}), int_list({1}));
CAF_CHECK_EQUAL(read<int_list>({"-v", "[ 1 , ]"}), int_list({1}));
CAF_CHECK_EQUAL(read<int_list>({"-v", "[1,2]"}), int_list({1, 2}));
CAF_CHECK_EQUAL(read<int_list>({"-v", "[1, 2, 3]"}), int_list({1, 2, 3}));
CAF_CHECK_EQUAL(read<int_list>({"-v", "[1, 2, 3, ]"}), int_list({1, 2, 3}));
CAF_CHECK_EQUAL(read<int_list>({"-v", "1"}), int_list({1}));
CAF_CHECK_EQUAL(read<int_list>({"-v", "1,2,3"}), int_list({1, 2, 3}));
CAF_CHECK_EQUAL(read<int_list>({"-v", "1, 2 , 3 , "}), int_list({1, 2, 3}));
}
#define SUBTEST(msg) \
opts.clear(); \
if (true)
CAF_TEST(CLI arguments override defaults) {
using int_list = std::vector<int>;
using string_list = std::vector<std::string>;
SUBTEST("with ref syncing") {
settings cfg;
int_list ints;
string_list strings;
CAF_MESSAGE("add --foo and --bar options");
opts.add(strings, "global", "foo,f", "some list");
opts.add(ints, "global", "bar,b", "some list");
CAF_MESSAGE("test integer lists");
ints = int_list{1, 2, 3};
cfg["bar"] = config_value{ints};
CAF_CHECK_EQUAL(get<int_list>(cfg, "bar"), int_list({1, 2, 3}));
CAF_CHECK_EQUAL(read<int_list>(cfg, {"--bar=[10, 20, 30]"}), none);
CAF_CHECK_EQUAL(ints, int_list({10, 20, 30}));
CAF_CHECK_EQUAL(get<int_list>(cfg, "bar"), int_list({10, 20, 30}));
CAF_MESSAGE("test string lists");
strings = string_list{"one", "two", "three"};
cfg["foo"] = config_value{strings};
CAF_CHECK_EQUAL(get<string_list>(cfg, "foo"),
string_list({"one", "two", "three"}));
CAF_CHECK_EQUAL(read<string_list>(cfg, {"--foo=[hello, world]"}), none);
CAF_CHECK_EQUAL(strings, string_list({"hello", "world"}));
CAF_CHECK_EQUAL(get<string_list>(cfg, "foo"),
string_list({"hello", "world"}));
}
SUBTEST("without ref syncing") {
settings cfg;
CAF_MESSAGE("add --foo and --bar options");
opts.add<string_list>("global", "foo,f", "some list");
opts.add<int_list>("global", "bar,b", "some list");
CAF_MESSAGE("test integer lists");
cfg["bar"] = config_value{int_list{1, 2, 3}};
CAF_CHECK_EQUAL(get<int_list>(cfg, "bar"), int_list({1, 2, 3}));
CAF_CHECK_EQUAL(read<int_list>(cfg, {"--bar=[10, 20, 30]"}), none);
CAF_CHECK_EQUAL(get<int_list>(cfg, "bar"), int_list({10, 20, 30}));
CAF_MESSAGE("test string lists");
cfg["foo"] = config_value{string_list{"one", "two", "three"}};
CAF_CHECK_EQUAL(get<string_list>(cfg, "foo"),
string_list({"one", "two", "three"}));
CAF_CHECK_EQUAL(read<string_list>(cfg, {"--foo=[hello, world]"}), none);
CAF_CHECK_EQUAL(get<string_list>(cfg, "foo"),
string_list({"hello", "world"}));
}
}
CAF_TEST_FIXTURE_SCOPE_END()
......@@ -18,6 +18,8 @@
#define CAF_SUITE config_value
#include "caf/config_value.hpp"
#include "core-test.hpp"
#include <list>
......@@ -32,6 +34,7 @@
#include "caf/actor_system_config.hpp"
#include "caf/deep_to_string.hpp"
#include "caf/detail/bounds_checker.hpp"
#include "caf/make_config_option.hpp"
#include "caf/none.hpp"
#include "caf/pec.hpp"
#include "caf/string_view.hpp"
......@@ -252,6 +255,83 @@ CAF_TEST(successful parsing) {
CAF_CHECK_EQUAL(get<di>(parse("{a=1,b=2}")), di({{"a", 1}, {"b", 2}}));
}
#define CHECK_CLI_PARSE(type, str, ...) \
do { \
/* Note: parse_impl from make_config_option.hpp internally dispatches */ \
/* to parse_cli. No need to replicate that wrapping code here. */ \
if (auto res = caf::detail::parse_impl<type>(nullptr, str)) { \
type expected_res{__VA_ARGS__}; \
if (auto unboxed = ::caf::get_if<type>(std::addressof(*res))) { \
if (*unboxed == expected_res) \
CAF_CHECK_PASSED("parse(" << str << ") == " << expected_res); \
else \
CAF_CHECK_FAILED(*unboxed << " != " << expected_res); \
} else { \
CAF_CHECK_FAILED(*res << " != " << expected_res); \
} \
} else { \
CAF_CHECK_FAILED("parse(" << str << ") -> " << res.error()); \
} \
} while (false)
#define CHECK_CLI_PARSE_FAILS(type, str) \
do { \
if (auto res = caf::detail::parse_impl<type>(nullptr, str)) { \
CAF_CHECK_FAILED("unexpected parser result: " << *res); \
} else { \
CAF_CHECK_PASSED("parse(" << str << ") == " << res.error()); \
} \
} while (false)
CAF_TEST(parsing via parse_cli enables shortcut syntax for some types) {
using ls = std::vector<string>; // List-of-strings.
using li = std::vector<int>; // List-of-integers.
using lli = std::vector<li>; // List-of-list-of-integers.
CAF_MESSAGE("lists can omit square brackets");
CHECK_CLI_PARSE(int, "123", 123);
CHECK_CLI_PARSE(li, "[ 1,2 , 3 ,]", 1, 2, 3);
CHECK_CLI_PARSE(li, "[ 1,2 , 3 ]", 1, 2, 3);
CHECK_CLI_PARSE(li, " 1,2 , 3 ,", 1, 2, 3);
CHECK_CLI_PARSE(li, " 1,2 , 3 ", 1, 2, 3);
CHECK_CLI_PARSE(li, " [ ] ", li{});
CHECK_CLI_PARSE(li, " ", li{});
CHECK_CLI_PARSE(li, "", li{});
CHECK_CLI_PARSE(li, "[123]", 123);
CHECK_CLI_PARSE(li, "123", 123);
CAF_MESSAGE("brackets must have matching opening/closing brackets");
CHECK_CLI_PARSE_FAILS(li, " 1,2 , 3 ,]");
CHECK_CLI_PARSE_FAILS(li, " 1,2 , 3 ]");
CHECK_CLI_PARSE_FAILS(li, "123]");
CHECK_CLI_PARSE_FAILS(li, "[ 1,2 , 3 ,");
CHECK_CLI_PARSE_FAILS(li, "[ 1,2 , 3 ");
CHECK_CLI_PARSE_FAILS(li, "[123");
CAF_MESSAGE("string lists can omit quotation marks");
CHECK_CLI_PARSE(string, R"_("123")_", "123");
CHECK_CLI_PARSE(string, R"_(123)_", "123");
CHECK_CLI_PARSE(ls, R"_([ "1 ","2" , "3" ,])_", "1 ", "2", "3");
CHECK_CLI_PARSE(ls, R"_([ 1,2 , 3 ,])_", "1", "2", "3");
CHECK_CLI_PARSE(ls, R"_([ 1,2 , 3 ])_", "1", "2", "3");
CHECK_CLI_PARSE(ls, R"_( 1,2 , 3 ,)_", "1", "2", "3");
CHECK_CLI_PARSE(ls, R"_( 1,2 , 3 )_", "1", "2", "3");
CHECK_CLI_PARSE(ls, R"_( [ ] )_", ls{});
CHECK_CLI_PARSE(ls, R"_( )_", ls{});
CHECK_CLI_PARSE(ls, R"_(["abc"])_", "abc");
CHECK_CLI_PARSE(ls, R"_([abc])_", "abc");
CHECK_CLI_PARSE(ls, R"_("abc")_", "abc");
CHECK_CLI_PARSE(ls, R"_(abc)_", "abc");
CAF_MESSAGE("nested lists can omit the outer square brackets");
CHECK_CLI_PARSE(lli, "[[1, 2, 3, ], ]", li({1, 2, 3}));
CHECK_CLI_PARSE(lli, "[[1, 2, 3]]", li({1, 2, 3}));
CHECK_CLI_PARSE(lli, "[1, 2, 3, ]", li({1, 2, 3}));
CHECK_CLI_PARSE(lli, "[1, 2, 3]", li({1, 2, 3}));
CHECK_CLI_PARSE(lli, "[[1], [2]]", li({1}), li({2}));
CHECK_CLI_PARSE(lli, "[1], [2]", li({1}), li({2}));
CHECK_CLI_PARSE_FAILS(lli, "1");
CHECK_CLI_PARSE_FAILS(lli, "1, 2");
CHECK_CLI_PARSE_FAILS(lli, "[1, 2]]");
CHECK_CLI_PARSE_FAILS(lli, "[[1, 2]");
}
CAF_TEST(unsuccessful parsing) {
auto parse = [](const string& str) {
auto x = config_value::parse(str);
......
......@@ -139,7 +139,7 @@ struct fixture {
CAF_CHECK(!foo_field.set(x, config_value(-1)));
string_view input = "123";
string_parser_state ps{input.begin(), input.end()};
foo_field.parse_cli(ps, x);
foo_field.parse_cli(ps, x, false);
CAF_CHECK_EQUAL(ps.code, pec::success);
CAF_CHECK_EQUAL(foo_field.get(x), config_value(123));
}
......
......@@ -523,6 +523,28 @@ using caf_test_case_auto_fixture = caf::test::dummy_fixture;
::caf::test::engine::last_check_line(__LINE__); \
} while (false)
#define CAF_CHECK_PASSED(msg) \
do { \
auto out = ::caf::test::logger::instance().massive(); \
out << term::green << "** " << term::blue << __FILE__ << term::yellow \
<< ":" << term::blue << __LINE__ \
<< ::caf::test::detail::fill(__LINE__) << term::reset << msg << '\n'; \
::caf::test::engine::current_test()->pass(); \
::caf::test::engine::last_check_file(__FILE__); \
::caf::test::engine::last_check_line(__LINE__); \
} while (false)
#define CAF_CHECK_FAILED(msg) \
do { \
auto out = ::caf::test::logger::instance().massive(); \
out << term::red << "!! " << term::blue << __FILE__ << term::yellow << ":" \
<< term::blue << __LINE__ << ::caf::test::detail::fill(__LINE__) \
<< term::reset << msg << '\n'; \
::caf::test::engine::current_test()->fail(false); \
::caf::test::engine::last_check_file(__FILE__); \
::caf::test::engine::last_check_line(__LINE__); \
} while (false)
#define CAF_CHECK(...) \
do { \
static_cast<void>(::caf::test::detail::check( \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment