micro-test-plus 3.2.2
The µTest++ Testing Framework
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
test-reporter.h
Go to the documentation of this file.
1/*
2 * This file is part of the µOS++ project (https://micro-os-plus.github.io/).
3 * Copyright (c) 2021 Liviu Ionescu. All rights reserved.
4 *
5 * Permission to use, copy, modify, and/or distribute this software
6 * for any purpose is hereby granted, under the terms of the MIT license.
7 *
8 * If a copy of the license was not distributed with this file, it can
9 * be obtained from https://opensource.org/licenses/mit.
10 *
11 * Major parts of the code are inspired from v1.1.8 of the Boost UT project,
12 * released under the terms of the Boost Version 1.0 Software License,
13 * which can be obtained from https://www.boost.org/LICENSE_1_0.txt.
14 */
15
16#ifndef MICRO_TEST_PLUS_TEST_REPORTER_H_
17#define MICRO_TEST_PLUS_TEST_REPORTER_H_
18
19// ----------------------------------------------------------------------------
20
21#ifdef __cplusplus
22
23// ----------------------------------------------------------------------------
24
25// #include <functional>
26#include <string_view>
27#include <string>
28
29#include "type-traits.h"
30#include "test-suite.h"
31#include "detail.h"
32
33// ----------------------------------------------------------------------------
34
35#if defined(__GNUC__)
36#pragma GCC diagnostic push
37#pragma GCC diagnostic ignored "-Wpadded"
38#pragma GCC diagnostic ignored "-Waggregate-return"
39#if defined(__clang__)
40#pragma clang diagnostic ignored "-Wc++98-compat"
41#pragma clang diagnostic ignored "-Wc++98-compat-pedantic"
42#endif
43#endif
44
46{
47 // --------------------------------------------------------------------------
48
53 struct colors
54 {
55 const char* none = "\033[0m";
56 const char* pass = "\033[32m";
57 const char* fail = "\033[31m";
58 };
59
64 enum class verbosity
65 {
66 silent = 0, // Nothing, only return the exit code
67 quiet = 1, // Test suites results
68 normal = 2, // Test suites results and failed test cases
69 verbose = 3 // All, including passed checks
70 };
71
73
74 class test_reporter;
75
77 endl (test_reporter& stream);
78
79 // Requires events::assertion_* for and detailed operators.
80
87 {
88 public:
89 test_reporter () = default;
90
91 [[nodiscard]] inline auto
92 color (const bool cond)
93 {
94 return cond ? colors_.pass : colors_.fail;
95 }
96
98 operator<< (std::string_view sv);
99
101 operator<< (char c);
102
104 operator<< (const char* s);
105
107 operator<< (char* s);
108
110 operator<< (bool v);
111
112 test_reporter& operator<< (std::nullptr_t);
113
115 operator<< (signed char c);
116
118 operator<< (unsigned char c);
119
121 operator<< (signed short c);
122
124 operator<< (unsigned short c);
125
127 operator<< (signed int v);
128
130 operator<< (unsigned int v);
131
133 operator<< (signed long v);
134
136 operator<< (unsigned long v);
137
139 operator<< (signed long long v);
140
142 operator<< (unsigned long long v);
143
145 operator<< (float v);
146
148 operator<< (double v);
149
151 operator<< (long double v);
152
156 template <typename T>
158 operator<< (T* v);
159
165
166 // ------------------------------------------------------------------------
167 // Specific operators.
168
172 template <class T>
174 operator<< (const T& t);
175
180 template <class T>
183
187 template <class T,
190 = 0>
192 operator<< (T&& t);
193
197 template <class Lhs_T, class Rhs_T>
200
204 template <class Lhs_T, class Rhs_T>
207
211 template <class Lhs_T, class Rhs_T>
214
218 template <class Lhs_T, class Rhs_T>
221
225 template <class Lhs_T, class Rhs_T>
228
232 template <class Lhs_T, class Rhs_T>
235
239 template <class Lhs_T, class Rhs_T>
242
246 template <class Lhs_T, class Rhs_T>
249
253 template <class T>
255 operator<< (const detail::not_<T>& op);
256
257#if defined(__cpp_exceptions)
258 template <class Expr_T, class Exception_T>
261
262 template <class Expr_T>
265
266 template <class Expr_T>
269#endif
270
271 void
272 endline (void);
273
274 // ------------------------------------------------------------------------
275
279 template <class Expr_T>
280 void
281 pass (Expr_T& expr, std::string& message);
282
286 template <class Expr_T>
287 void
288 fail (Expr_T& expr, bool abort, std::string& message,
289 const reflection::source_location& location);
290
291 void
292 begin_test_case (const char* name);
293
294 void
295 end_test_case (const char* name);
296
297 void
298 begin_test_suite (const char* name);
299
300 void
302
306 void
307 flush (void);
308
309 void
310 output (void);
311
312 // Used to nicely format the output, without empty lines
313 // between successful test cases.
314 bool add_empty_line{ true };
315
317
318 protected:
319 // The prefix/suffix methods help shorten the code
320 // generated by the template methods.
321
322 void
323 output_pass_prefix_ (std::string& message);
324
325 void
326 output_pass_suffix_ (void);
327
328 void
329 output_fail_prefix_ (std::string& message,
330 const reflection::source_location& location);
331
332 void
333 output_fail_suffix_ (bool abort);
334
336 std::string out_{};
337
338 bool is_in_test_case_ = false;
339 };
340
341 // --------------------------------------------------------------------------
342} // namespace micro_os_plus::micro_test_plus
343
344#if defined(__GNUC__)
345#pragma GCC diagnostic pop
346#endif
347
348// ----------------------------------------------------------------------------
349
350#endif // __cplusplus
351
352// ----------------------------------------------------------------------------
353
354#endif // MICRO_TEST_PLUS_TEST_REPORTER_H_
355
356// ----------------------------------------------------------------------------
Local implementation of the std::source_location.
Definition reflection.h:57
Reporter to display the test results. For failed tests it prints the actual values of the operands,...
void pass(Expr_T &expr, std::string &message)
Report a passed condition.
void flush(void)
Flush the current buffered content.
void fail(Expr_T &expr, bool abort, std::string &message, const reflection::source_location &location)
Report a failed condition.
test_reporter & operator<<(std::string_view sv)
void output_fail_prefix_(std::string &message, const reflection::source_location &location)
Base class for all test suites.
Definition test-suite.h:50
typename requires_< Cond >::type requires_t
verbosity
The verbosity levels.
test_reporter & endl(test_reporter &stream)
Colours used to highlight pass vs. fail.
Greater than or equal comparator.
Definition detail.h:321
Less than or equal comparator.
Definition detail.h:438
Operator to check if the expression does not throw any exception.
Definition detail.h:665
Operator to check if the expression throws a specific exception.
Definition detail.h:599