/usr/include/CppUTest/UtestMacros.h is in libcpputest-dev 3.4-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | /*
* Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef D_UTestMacros_h
#define D_UTestMacros_h
/*! \brief Define a group of tests
*
* All tests in a TEST_GROUP share the same setup()
* and teardown(). setup() is run before the opening
* curly brace of each TEST and teardown() is
* called after the closing curly brace of TEST.
*
*/
#define TEST_GROUP_BASE(testGroup, baseclass) \
extern int externTestGroup##testGroup; \
int externTestGroup##testGroup = 0; \
struct TEST_GROUP_##CppUTestGroup##testGroup : public baseclass
#define TEST_BASE(testBaseClass) \
struct testBaseClass : public Utest
#define TEST_GROUP(testGroup) \
TEST_GROUP_BASE(testGroup, Utest)
#define TEST_SETUP() \
virtual void setup()
#define TEST_TEARDOWN() \
virtual void teardown()
#define TEST(testGroup, testName) \
/* External declarations for strict compilers */ \
class TEST_##testGroup##_##testName##_TestShell; \
extern TEST_##testGroup##_##testName##_TestShell TEST_##testGroup##_##testName##_TestShell_instance; \
\
class TEST_##testGroup##_##testName##_Test : public TEST_GROUP_##CppUTestGroup##testGroup \
{ public: TEST_##testGroup##_##testName##_Test () : TEST_GROUP_##CppUTestGroup##testGroup () {} \
void testBody(); }; \
class TEST_##testGroup##_##testName##_TestShell : public UtestShell { \
virtual Utest* createTest() { return new TEST_##testGroup##_##testName##_Test; } \
} TEST_##testGroup##_##testName##_TestShell_instance; \
static TestInstaller TEST_##testGroup##_##testName##_Installer(TEST_##testGroup##_##testName##_TestShell_instance, #testGroup, #testName, __FILE__,__LINE__); \
void TEST_##testGroup##_##testName##_Test::testBody()
#define IGNORE_TEST(testGroup, testName)\
/* External declarations for strict compilers */ \
class IGNORE##testGroup##_##testName##_TestShell; \
extern IGNORE##testGroup##_##testName##_TestShell IGNORE##testGroup##_##testName##_TestShell_instance; \
\
class IGNORE##testGroup##_##testName##_Test : public TEST_GROUP_##CppUTestGroup##testGroup \
{ public: IGNORE##testGroup##_##testName##_Test () : TEST_GROUP_##CppUTestGroup##testGroup () {} \
public: void testBodyThatNeverRuns (); }; \
class IGNORE##testGroup##_##testName##_TestShell : public IgnoredUtestShell { \
virtual Utest* createTest() { return new IGNORE##testGroup##_##testName##_Test; } \
} IGNORE##testGroup##_##testName##_TestShell_instance; \
static TestInstaller TEST_##testGroup##testName##_Installer(IGNORE##testGroup##_##testName##_TestShell_instance, #testGroup, #testName, __FILE__,__LINE__); \
void IGNORE##testGroup##_##testName##_Test::testBodyThatNeverRuns ()
#define IMPORT_TEST_GROUP(testGroup) \
extern int externTestGroup##testGroup;\
extern int* p##testGroup; \
int* p##testGroup = &externTestGroup##testGroup
// Different checking macros
#define CHECK(condition)\
CHECK_LOCATION_TRUE(condition, "CHECK", #condition, __FILE__, __LINE__)
#define CHECK_TEXT(condition, text) \
CHECK_LOCATION_TEXT(condition, "CHECK", #condition, text, __FILE__, __LINE__)
#define CHECK_TRUE(condition)\
CHECK_LOCATION_TRUE(condition, "CHECK_TRUE", #condition, __FILE__, __LINE__)
#define CHECK_FALSE(condition)\
CHECK_LOCATION_FALSE(condition, "CHECK_FALSE", #condition, __FILE__, __LINE__)
#define CHECK_LOCATION_TEXT(condition, checkString, conditionString, text, file, line) \
{ UtestShell::getCurrent()->assertTrueText((condition) != 0, checkString, conditionString, text, file, line); }
#define CHECK_LOCATION_TRUE(condition, checkString, conditionString, file, line)\
{ UtestShell::getCurrent()->assertTrue((condition) != 0, checkString, conditionString, file, line); }
#define CHECK_LOCATION_FALSE(condition, checkString, conditionString, file, line)\
{ UtestShell::getCurrent()->assertTrue((condition) == 0, checkString, conditionString, file, line); }
//This check needs the operator!=(), and a StringFrom(YourType) function
#define CHECK_EQUAL(expected,actual)\
CHECK_EQUAL_LOCATION(expected, actual, __FILE__, __LINE__)
#define CHECK_EQUAL_LOCATION(expected,actual, file, line)\
if ((expected) != (actual))\
{\
{ \
UtestShell::getTestResult()->countCheck();\
CheckEqualFailure _f(UtestShell::getCurrent(), file, line, StringFrom(expected), StringFrom(actual)); \
UtestShell::getTestResult()->addFailure(_f);\
} \
UtestShell::getCurrent()->exitCurrentTest(); \
}\
else\
UtestShell::getTestResult()->countCheck();
//This check checks for char* string equality using strcmp.
//This makes up for the fact that CHECK_EQUAL only compares the pointers to char*'s
#define STRCMP_EQUAL(expected,actual)\
STRCMP_EQUAL_LOCATION(expected, actual, __FILE__, __LINE__)
#define STRCMP_EQUAL_LOCATION(expected,actual, file, line)\
{ UtestShell::getCurrent()->assertCstrEqual(expected, actual, file, line); }
#define STRCMP_NOCASE_EQUAL(expected,actual)\
STRCMP_NOCASE_EQUAL_LOCATION(expected, actual, __FILE__, __LINE__)
#define STRCMP_NOCASE_EQUAL_LOCATION(expected,actual, file, line)\
{ UtestShell::getCurrent()->assertCstrNoCaseEqual(expected, actual, file, line); }
#define STRCMP_CONTAINS(expected,actual)\
STRCMP_CONTAINS_LOCATION(expected, actual, __FILE__, __LINE__)
#define STRCMP_CONTAINS_LOCATION(expected,actual, file, line)\
{ UtestShell::getCurrent()->assertCstrContains(expected, actual, file, line); }
#define STRCMP_NOCASE_CONTAINS(expected,actual)\
STRCMP_NOCASE_CONTAINS_LOCATION(expected, actual, __FILE__, __LINE__)
#define STRCMP_NOCASE_CONTAINS_LOCATION(expected,actual, file, line)\
{ UtestShell::getCurrent()->assertCstrNoCaseContains(expected, actual, file, line); }
//Check two long integers for equality
#define LONGS_EQUAL(expected,actual)\
LONGS_EQUAL_LOCATION(expected,actual,__FILE__, __LINE__)
#define LONGS_EQUAL_LOCATION(expected,actual,file,line)\
{ UtestShell::getCurrent()->assertLongsEqual((long)expected, (long)actual, file, line); }
#define BYTES_EQUAL(expected, actual)\
LONGS_EQUAL((expected) & 0xff,(actual) & 0xff)
#define POINTERS_EQUAL(expected, actual)\
POINTERS_EQUAL_LOCATION((expected),(actual), __FILE__, __LINE__)
#define POINTERS_EQUAL_LOCATION(expected,actual,file,line)\
{ UtestShell::getCurrent()->assertPointersEqual((void *)expected, (void *)actual, file, line); }
//Check two doubles for equality within a tolerance threshold
#define DOUBLES_EQUAL(expected,actual,threshold)\
DOUBLES_EQUAL_LOCATION(expected,actual,threshold,__FILE__,__LINE__)
#define DOUBLES_EQUAL_LOCATION(expected,actual,threshold,file,line)\
{ UtestShell::getCurrent()->assertDoublesEqual(expected, actual, threshold, file, line); }
//Fail if you get to this macro
//The macro FAIL may already be taken, so allow FAIL_TEST too
#ifndef FAIL
#define FAIL(text)\
FAIL_LOCATION(text, __FILE__,__LINE__)
#define FAIL_LOCATION(text, file, line)\
{ UtestShell::getCurrent()->fail(text, file, line); }
#endif
#define FAIL_TEST(text)\
FAIL_TEST_LOCATION(text, __FILE__,__LINE__)
#define FAIL_TEST_LOCATION(text, file,line)\
{ UtestShell::getCurrent()->fail(text, file, line); }
#define UT_PRINT_LOCATION(text, file, line) \
{ UtestShell::getCurrent()->print(text, file, line); }
#define UT_PRINT(text) \
UT_PRINT_LOCATION(text, __FILE__, __LINE__)
#if CPPUTEST_USE_STD_CPP_LIB
#define CHECK_THROWS(expected, expression) \
{ \
SimpleString msg("expected to throw "#expected "\nbut threw nothing"); \
bool caught_expected = false; \
try { \
(expression); \
} catch(const expected &) { \
caught_expected = true; \
} catch(...) { \
msg = "expected to throw " #expected "\nbut threw a different type"; \
} \
if (!caught_expected) { \
UtestShell::getCurrent()->fail(msg.asCharString(), __FILE__, __LINE__); \
} \
}
#endif /* CPPUTEST_USE_STD_CPP_LIB */
#define UT_CRASH() { UtestShell::crash(); }
#define RUN_ALL_TESTS(ac, av) CommandLineTestRunner::RunAllTests(ac, av)
#endif /*D_UTestMacros_h*/
|