micro-test-plus 3.2.2
The µTest++ Testing Framework
Loading...
Searching...
No Matches
test-reporter-inlines.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_INLINES_H_
17#define MICRO_TEST_PLUS_TEST_REPORTER_INLINES_H_
18
19// ----------------------------------------------------------------------------
20
21#ifdef __cplusplus
22
23// ----------------------------------------------------------------------------
24
25#include <stdio.h>
26#include <cstring>
27
28// ----------------------------------------------------------------------------
29
30#if defined(__GNUC__)
31#pragma GCC diagnostic push
32#pragma GCC diagnostic ignored "-Waggregate-return"
33#if defined(__clang__)
34#pragma clang diagnostic ignored "-Wc++98-compat"
35#pragma clang diagnostic ignored "-Wc++98-compat-pedantic"
36#endif
37#endif
38
40{
41 // --------------------------------------------------------------------------
42
43 template <typename T>
46 {
47 char buff[20];
48 snprintf (buff, sizeof (buff), "%p", reinterpret_cast<void*> (v));
49 out_.append (buff);
50
51 return *this;
52 }
53
54#if 0
55 template <class T>
58 {
59 *this << detail::get (t);
60 return *this;
61 }
62#endif
63
64 template <class T>
67 {
68 out_.append (std::to_string (static_cast<long long> (v.get ())));
69 return *this;
70 }
71
72 template <class T,
77 {
78 *this << '{';
79 auto first = true;
80 for (const auto& arg : t)
81 {
82 *this << (first ? "" : ", ") << arg;
83 first = false;
84 }
85 *this << '}';
86 return *this;
87 }
88
89 template <class Lhs_T, class Rhs_T>
92 {
93 return (*this << color (op) << op.lhs () << " == " << op.rhs ()
94 << colors_.none);
95 }
96
97 template <class Lhs_T, class Rhs_T>
100 {
101 return (*this << color (op) << op.lhs () << " != " << op.rhs ()
102 << colors_.none);
103 }
104
105 template <class Lhs_T, class Rhs_T>
108 {
109 return (*this << color (op) << op.lhs () << " > " << op.rhs ()
110 << colors_.none);
111 }
112
113 template <class Lhs_T, class Rhs_T>
116 {
117 return (*this << color (op) << op.lhs () << " >= " << op.rhs ()
118 << colors_.none);
119 }
120
121 template <class Lhs_T, class Rhs_T>
124 {
125 return (*this << color (op) << op.lhs () << " < " << op.rhs ()
126 << colors_.none);
127 }
128
129 template <class Lhs_T, class Rhs_T>
132 {
133 return (*this << color (op) << op.lhs () << " <= " << op.rhs ()
134 << colors_.none);
135 }
136
137 template <class Lhs_T, class Rhs_T>
140 {
141 return (*this << '(' << op.lhs () << color (op) << " and " << colors_.none
142 << op.rhs () << ')');
143 }
144
145 template <class Lhs_T, class Rhs_T>
148 {
149 return (*this << '(' << op.lhs () << color (op) << " or " << colors_.none
150 << op.rhs () << ')');
151 }
152
153 template <class T>
156 {
157 return (*this << color (op) << "not " << op.value () << colors_.none);
158 }
159
160#if defined(__cpp_exceptions)
161 template <class Expr_T, class Exception_T>
164 {
165 return (*this << color (op) << "throws<"
167 << colors_.none);
168 }
169
170 template <class Expr_T>
173 {
174 return (*this << color (op) << "throws" << colors_.none);
175 }
176
177 template <class Expr_T>
180 {
181 return (*this << color (op) << "nothrow" << colors_.none);
182 }
183#endif
184
185 template <class Expr_T>
186 void
187 test_reporter::pass (Expr_T& expr, std::string& message)
188 {
189 output_pass_prefix_ (message);
190
191 if (message.empty ())
192 {
193 // If there is no message, display the evaluated expression.
194 *this << expr;
195 }
196
198 }
199
200 template <class Expr_T>
201 void
202 test_reporter::fail (Expr_T& expr, bool abort, std::string& message,
203 const reflection::source_location& location)
204 {
205 output_fail_prefix_ (message, location);
206
207 if constexpr (type_traits::is_op_v<Expr_T>)
208 {
209 *this << ", " << expr;
210 }
211
212 output_fail_suffix_ (abort);
213 }
214
215 // --------------------------------------------------------------------------
216} // namespace micro_os_plus::micro_test_plus
217
218#if defined(__GNUC__)
219#pragma GCC diagnostic pop
220#endif
221
222// ----------------------------------------------------------------------------
223
224#endif // __cplusplus
225
226// ----------------------------------------------------------------------------
227
228#endif // MICRO_TEST_PLUS_TEST_REPORTER_INLINES_H_
229
230// ----------------------------------------------------------------------------
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 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)
constexpr auto get(const T &t)
Generic getter, calling the getter implementation.
Definition detail.h:88
constexpr auto type_name() -> std::string_view
Parse the PRETTY_FUNCTION macro to extract the type name.
Definition reflection.h:104
typename requires_< Cond >::type requires_t
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