1 #ifndef WREPORT_TESTS_H
2 #define WREPORT_TESTS_H
70 std::string local_info;
73 : file(file), line(line), call(call)
78 : file(file), line(line), call(call), local_info(local_info.str())
82 std::string format()
const;
84 void format(std::ostream& out)
const;
87 struct TestStack :
public std::vector<TestStackFrame>
109 template<
typename ...Args>
110 TestFailed(
const std::exception& e, Args&&... args)
113 add_stack_info(std::forward<Args>(args)...);
116 TestFailed(
const std::string& message) : message(message) {}
118 template<
typename ...Args>
119 TestFailed(
const std::string& message, Args&&... args)
122 add_stack_info(std::forward<Args>(args)...);
125 const char* what()
const noexcept
override {
return message.c_str(); }
127 template<
typename ...Args>
128 void add_stack_info(Args&&... args) { stack.emplace_back(std::forward<Args>(args)...); }
146 #define WREPORT_TEST_INFO(name) \
147 wreport::tests::LocationInfo wreport_test_location_info; \
148 wreport::tests::LocationInfo& name = wreport_test_location_info
160 void assert_true(
const A& actual)
163 std::stringstream ss;
164 ss <<
"actual value " << actual <<
" is not true";
168 void assert_true(std::nullptr_t actual);
172 void assert_false(
const A& actual)
175 std::stringstream ss;
176 ss <<
"actual value " << actual <<
" is not false";
177 throw TestFailed(ss.str());
180 void assert_false(std::nullptr_t actual);
182 template<
typename LIST>
183 static inline void _format_list(std::ostream& o,
const LIST& list) {
186 for (
const auto& v: list)
198 void assert_equal(
const std::vector<T>& actual,
const std::vector<T>& expected)
200 if (actual == expected)
return;
201 std::stringstream ss;
203 _format_list(ss, actual);
204 ss <<
" is different than the expected ";
205 _format_list(ss, expected);
206 throw TestFailed(ss.str());
210 void assert_equal(
const std::vector<T>& actual,
const std::initializer_list<T>& expected)
212 if (actual == expected)
return;
213 std::stringstream ss;
215 _format_list(ss, actual);
216 ss <<
" is different than the expected ";
217 _format_list(ss, expected);
218 throw TestFailed(ss.str());
225 template<
typename A,
typename E>
226 void assert_equal(
const A& actual,
const E& expected)
228 if (actual == expected)
return;
229 std::stringstream ss;
230 ss <<
"value '" << actual <<
"' is different than the expected '" << expected <<
"'";
231 throw TestFailed(ss.str());
238 template<
typename A,
typename E>
239 void assert_not_equal(
const A& actual,
const E& expected)
241 if (actual != expected)
return;
242 std::stringstream ss;
243 ss <<
"value '" << actual <<
"' is not different than the expected '" << expected <<
"'";
244 throw TestFailed(ss.str());
248 template<
typename A,
typename E>
249 void assert_less(
const A& actual,
const E& expected)
251 if (actual < expected)
return;
252 std::stringstream ss;
253 ss <<
"value '" << actual <<
"' is not less than the expected '" << expected <<
"'";
254 throw TestFailed(ss.str());
258 template<
typename A,
typename E>
259 void assert_less_equal(
const A& actual,
const E& expected)
261 if (actual <= expected)
return;
262 std::stringstream ss;
263 ss <<
"value '" << actual <<
"' is not less than or equals to the expected '" << expected <<
"'";
264 throw TestFailed(ss.str());
268 template<
typename A,
typename E>
269 void assert_greater(
const A& actual,
const E& expected)
271 if (actual > expected)
return;
272 std::stringstream ss;
273 ss <<
"value '" << actual <<
"' is not greater than the expected '" << expected <<
"'";
274 throw TestFailed(ss.str());
278 template<
typename A,
typename E>
279 void assert_greater_equal(
const A& actual,
const E& expected)
281 if (actual >= expected)
return;
282 std::stringstream ss;
283 ss <<
"value '" << actual <<
"' is not greater than or equals to the expected '" << expected <<
"'";
284 throw TestFailed(ss.str());
288 void assert_startswith(
const std::string& actual,
const std::string& expected);
291 void assert_endswith(
const std::string& actual,
const std::string& expected);
294 void assert_contains(
const std::string& actual,
const std::string& expected);
297 void assert_not_contains(
const std::string& actual,
const std::string& expected);
305 void assert_re_matches(
const std::string& actual,
const std::string& expected);
313 void assert_not_re_matches(
const std::string& actual,
const std::string& expected);
320 Actual(
const A& actual) : _actual(actual) {}
323 void istrue()
const { assert_true(_actual); }
324 void isfalse()
const { assert_false(_actual); }
325 template<
typename E>
void operator==(
const E& expected)
const { assert_equal(_actual, expected); }
326 template<
typename E>
void operator!=(
const E& expected)
const { assert_not_equal(_actual, expected); }
327 template<
typename E>
void operator<(
const E& expected)
const {
return assert_less(_actual, expected); }
328 template<
typename E>
void operator<=(
const E& expected)
const {
return assert_less_equal(_actual, expected); }
329 template<
typename E>
void operator>(
const E& expected)
const {
return assert_greater(_actual, expected); }
330 template<
typename E>
void operator>=(
const E& expected)
const {
return assert_greater_equal(_actual, expected); }
338 void istrue()
const {
return assert_true(_actual); }
339 void isfalse()
const {
return assert_false(_actual); }
340 void operator==(
const char* expected)
const;
341 void operator==(
const std::string& expected)
const;
342 void operator!=(
const char* expected)
const;
343 void operator!=(
const std::string& expected)
const;
344 void operator<(
const std::string& expected)
const;
345 void operator<=(
const std::string& expected)
const;
346 void operator>(
const std::string& expected)
const;
347 void operator>=(
const std::string& expected)
const;
348 void startswith(
const std::string& expected)
const;
349 void endswith(
const std::string& expected)
const;
350 void contains(
const std::string& expected)
const;
351 void not_contains(
const std::string& expected)
const;
352 void matches(
const std::string& re)
const;
353 void not_matches(
const std::string& re)
const;
361 void operator==(
const std::vector<uint8_t>& expected)
const;
363 void operator!=(
const std::vector<uint8_t>& expected)
const;
364 void startswith(
const std::string& expected)
const;
365 void endswith(
const std::string& expected)
const;
366 void contains(
const std::string& expected)
const;
367 void not_contains(
const std::string& expected)
const;
368 void matches(
const std::string& re)
const;
369 void not_matches(
const std::string& re)
const;
374 using Actual::Actual;
376 void almost_equal(
double expected,
unsigned places)
const;
377 void not_almost_equal(
double expected,
unsigned places)
const;
382 inline ActualCString actual(
const char* actual) {
return ActualCString(actual); }
383 inline ActualCString actual(
char* actual) {
return ActualCString(actual); }
384 inline ActualStdString actual(
const std::string& actual) {
return ActualStdString(actual); }
385 inline ActualStdString actual(
const std::vector<uint8_t>& actual) {
return ActualStdString(std::string(actual.begin(), actual.end())); }
386 inline ActualDouble actual(
double actual) {
return ActualDouble(actual); }
390 using Actual::Actual;
392 void throws(
const std::string& what_match)
const;
399 using Actual::Actual;
402 void not_exists()
const;
403 void startswith(
const std::string& data)
const;
405 void not_empty()
const;
406 void contents_equal(
const std::string& data)
const;
407 void contents_equal(
const std::vector<uint8_t>& data)
const;
408 void contents_equal(
const std::initializer_list<std::string>& lines)
const;
409 void contents_match(
const std::string& data_re)
const;
410 void contents_match(
const std::initializer_list<std::string>& lines_re)
const;
422 #define wassert(...) \
425 } catch (wreport::tests::TestFailed& e) { \
426 e.add_stack_info(__FILE__, __LINE__, #__VA_ARGS__, wreport_test_location_info); \
428 } catch (std::exception& e) { \
429 throw wreport::tests::TestFailed(e, __FILE__, __LINE__, #__VA_ARGS__, wreport_test_location_info); \
433 #define wassert_true(...) wassert(actual(__VA_ARGS__).istrue())
436 #define wassert_false(...) wassert(actual(__VA_ARGS__).isfalse())
443 #define wassert_throws(exc, ...) \
446 wfail_test(#__VA_ARGS__ " did not throw " #exc); \
447 } catch (TestFailed& e) { \
451 } catch (std::exception& e) { \
452 std::string msg(#__VA_ARGS__ " did not throw " #exc " but threw "); \
453 msg += typeid(e).name(); \
465 #define wcallchecked(func) \
468 } catch (wreport::tests::TestFailed& e) { \
469 e.add_stack_info(__FILE__, __LINE__, #func, wreport_test_location_info); \
471 } catch (std::exception& e) { \
472 throw wreport::tests::TestFailed(e, __FILE__, __LINE__, #func, wreport_test_location_info); \
478 #define wfail_test(msg) wassert(throw wreport::tests::TestFailed((msg)))
481 struct TestController;
483 struct TestCaseResult;
485 struct TestMethodResult;
603 template<
typename ...Args>
613 template<
typename ...Args>
639 void test_teardown() {}
642 template<
typename Fixture,
typename... Args>
643 static inline Fixture* fixture_factory(Args... args)
651 template<
typename FIXTURE>
655 typedef FIXTURE Fixture;
657 Fixture* fixture =
nullptr;
658 std::function<Fixture*()> make_fixture;
660 template<
typename... Args>
664 make_fixture = std::bind(fixture_factory<FIXTURE, Args...>, args...);
670 fixture = make_fixture();
683 if (fixture) fixture->test_setup();
688 if (fixture) fixture->test_teardown();
696 template<
typename ...Args>
706 template<
typename ...Args>
Test case collecting several test methods, and self-registering with the singleton instance of TestRe...
Definition: utils/tests.h:519
Exception thrown when a test assertion fails, normally by Location::fail_test.
Definition: utils/tests.h:103
virtual TestCaseResult run_tests(TestController &controller)
Call setup(), run all the tests that have been registered, then call teardown().
Definition: utils/tests.h:318
TestMethod & add_method(const std::string &name, const std::string &doc, std::function< void()> test_function)
Register a new test method, including documentation.
Definition: utils/tests.h:614
virtual void method_setup(TestMethodResult &)
Set up before the test method is run.
Definition: utils/tests.h:560
Add information to the test backtrace for the tests run in the current scope.
Definition: utils/tests.h:54
Definition: utils/tests.h:334
void setup() override
Set up the test case before it is run.
Definition: utils/tests.h:667
virtual TestMethodResult run_test(TestController &controller, TestMethod &method)
Run a test method.
Definition: utils/tests.h:357
Base class for test fixtures.
Definition: utils/tests.h:634
std::string name
Name of the test case.
Definition: utils/tests.h:521
virtual void setup()
Set up the test case before it is run.
Definition: utils/tests.h:550
Information about one stack frame in the test execution stack.
Definition: utils/tests.h:66
Abstract interface for the objects that supervise test execution.
Definition: testrunner.h:159
std::function< void()> test_function
Main body of the test method.
Definition: utils/tests.h:504
Definition: utils/tests.h:398
void register_tests_once()
Idempotent wrapper for register_tests()
bool tests_registered
Set to true the first time register_tests_once is run.
Definition: utils/tests.h:527
Definition: utils/tests.h:373
Definition: utils/tests.h:389
TestMethod & add_method(const std::string &name, std::function< void()> test_function)
Register a new test method.
Definition: utils/tests.h:604
TestMethod & add_method(const std::string &name)
Register a new test method, with the actual test function to be added later.
Definition: utils/tests.h:594
Exception thrown when a test or a test case needs to be skipped.
Definition: utils/tests.h:135
std::string name
Name of the test method.
Definition: utils/tests.h:494
std::vector< TestMethod > methods
All registered test methods.
Definition: utils/tests.h:524
virtual void register_tests()=0
This will be called before running the test case, to populate it with its test methods.
std::string backtrace() const
Return the formatted backtrace for this location.
void teardown() override
Clean up after the test case is run.
Definition: utils/tests.h:673
Definition: utils/tests.h:88
TestMethod & add_method(const std::string &name, std::function< void(FIXTURE &)> test_function)
Register a new test method that takes a reference to the fixture as argument.
Definition: utils/tests.h:697
std::string doc
Documentation attached to this test method.
Definition: utils/tests.h:497
void method_setup(TestMethodResult &mr) override
Set up before the test method is run.
Definition: utils/tests.h:680
void backtrace(std::ostream &out) const
Write the formatted backtrace for this location to out.
Test method information.
Definition: utils/tests.h:492
Test case that includes a fixture.
Definition: utils/tests.h:653
std::ostream & operator()()
Clear the current information and return the output stream to which new information can be sent.
virtual void teardown()
Clean up after the test case is run.
Definition: utils/tests.h:555
Result of running a test method.
Definition: testrunner.h:27
Result of running a whole test case.
Definition: testrunner.h:97
void method_teardown(TestMethodResult &mr) override
Clean up after the test method is run.
Definition: utils/tests.h:686
String functions.
Definition: benchmark.h:13
virtual void method_teardown(TestMethodResult &)
Clean up after the test method is run.
Definition: utils/tests.h:565
TestMethod & add_method(const std::string &name, const std::string &doc, std::function< void(FIXTURE &)> test_function)
Register a new test method that takes a reference to the fixture as argument, including documentation...
Definition: utils/tests.h:707