Skip to content

Commit 74fd1f3

Browse files
committed
test: handlebars basic spec
1 parent 5fa524d commit 74fd1f3

File tree

10 files changed

+2197
-436
lines changed

10 files changed

+2197
-436
lines changed

include/mrdox/Support/Handlebars.hpp

+246-101
Large diffs are not rendered by default.

src/lib/Support/Handlebars.cpp

+506-314
Large diffs are not rendered by default.

src/test/lib/Support/Handlebars.cpp

+564-4
Large diffs are not rendered by default.

src/test_suite/detail/decomposer.hpp

+8
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ namespace test_suite::detail
4747
format_value(T const& value)
4848
{
4949
std::string out;
50+
if constexpr (std::is_convertible_v<std::decay_t<T>, std::string_view>)
51+
{
52+
out += '\"';
53+
}
5054
#ifdef MRDOX_TEST_HAS_FMT
5155
if constexpr (fmt::has_formatter<T, fmt::format_context>::value) {
5256
out += fmt::format("{}", value);
@@ -59,6 +63,10 @@ namespace test_suite::detail
5963
} else {
6064
out += demangle<T>();
6165
}
66+
if constexpr (std::is_convertible_v<std::decay_t<T>, std::string_view>)
67+
{
68+
out += '\"';
69+
}
6270
return out;
6371
}
6472

src/test_suite/diff.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,7 @@ BOOST_TEST_DIFF(
277277
else
278278
{
279279
// Compare rendered template with reference
280-
auto success_contents = expected_contents;
281-
DiffStringsResult diff = diffStrings(success_contents, rendered_contents);
280+
DiffStringsResult diff = diffStrings(expected_contents, rendered_contents);
282281
if (diff.added > 0 || diff.removed > 0)
283282
{
284283
std::ofstream out((std::string(error_output_path)));
@@ -292,8 +291,8 @@ BOOST_TEST_DIFF(
292291
BOOST_TEST(diff.added == 0);
293292
BOOST_TEST(diff.removed == 0);
294293
}
295-
BOOST_TEST(rendered_contents.size() == success_contents.size());
296-
BOOST_TEST(rendered_contents == success_contents);
294+
BOOST_TEST(rendered_contents.size() == expected_contents.size());
295+
BOOST_TEST((rendered_contents == expected_contents));
297296
}
298297
}
299298

src/test_suite/test_suite.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -459,10 +459,10 @@ test(
459459
(void)func;
460460
log_ <<
461461
"#" << id << " " <<
462-
file << "(" << line << ") "
463-
"failed: " << expr <<
462+
file << "(" << line << ")\n"
463+
"failed:\n " << expr <<
464464
//" in " << func <<
465-
"\n";
465+
"\n\n";
466466
log_.flush();
467467
return false;
468468
}

src/test_suite/test_suite.hpp

+25-8
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ constexpr detail::log_type log{};
251251
{ \
252252
DETAIL_START_WARNINGS_SUPPRESSION \
253253
std::string d = DETAIL_STRINGIFY(__VA_ARGS__); \
254-
d += " ("; \
254+
d += "\n ("; \
255255
DETAIL_SUPPRESS_PARENTHESES_WARNINGS \
256256
d += (test_suite::detail::decomposer() <= __VA_ARGS__).format(); \
257257
DETAIL_STOP_WARNINGS_SUPPRESSION \
@@ -304,27 +304,42 @@ constexpr detail::log_type log{};
304304
#define BOOST_TEST_NOT(expr) BOOST_TEST(!(expr))
305305

306306
#ifndef BOOST_NO_EXCEPTIONS
307+
# define BOOST_TEST_THROW_WITH( expr, ex, msg ) \
308+
try { \
309+
(void)(expr); \
310+
::test_suite::detail::throw_failed_impl( \
311+
#expr, #ex, "@anon", \
312+
__FILE__, __LINE__); \
313+
} \
314+
catch(ex const& e) { \
315+
BOOST_TEST(std::string_view(e.what()) == std::string_view(msg)); \
316+
} \
317+
catch(...) { \
318+
::test_suite::detail::throw_failed_impl( \
319+
#expr, #ex, "@anon", \
320+
__FILE__, __LINE__); \
321+
} \
322+
(void) 0
323+
//
324+
307325
# define BOOST_TEST_THROWS( expr, ex ) \
308326
try { \
309327
(void)(expr); \
310328
::test_suite::detail::throw_failed_impl( \
311329
#expr, #ex, "@anon", \
312330
__FILE__, __LINE__); \
313331
} \
314-
catch(ex const&) { \
332+
catch(ex const&) { \
315333
BOOST_TEST_PASS(); \
316334
} \
317335
catch(...) { \
318336
::test_suite::detail::throw_failed_impl( \
319337
#expr, #ex, "@anon", \
320338
__FILE__, __LINE__); \
321-
}
339+
} \
340+
(void) 0
322341
//
323-
#else
324-
#define BOOST_TEST_THROWS( expr, ex )
325-
#endif
326342

327-
#ifndef BOOST_NO_EXCEPTIONS
328343
# define BOOST_TEST_NO_THROW( expr ) \
329344
try { \
330345
(void)(expr); \
@@ -340,7 +355,9 @@ constexpr detail::log_type log{};
340355
}
341356
//
342357
#else
343-
# define BOOST_TEST_NO_THROW( expr ) ( [&]{ expr; return true; }() )
358+
#define BOOST_TEST_THROWS( expr, ex )
359+
#define BOOST_TEST_THROW_WITH( expr, ex, msg )
360+
#define BOOST_TEST_NO_THROW( expr ) ( [&]{ expr; return true; }() )
344361
#endif
345362

346363
#define TEST_SUITE(type, name) \

0 commit comments

Comments
 (0)