This commit was done specially since it interfaces heavily with Lua. First it was diffed out in a standard cuberite repo so we can tell what was changed, and we apply this diff to a basic cuberite repo right before the commit was made. I then promptly reverted lua changes that would conflict with applying the patch. I also had to remove whole sections from the patchfile afterwards but it was made easier having the actual repo with the patches applied able to remake the diff as needed before i removed the bigger sections. Somehow it all worked out.
274 lines
6.0 KiB
C++
274 lines
6.0 KiB
C++
|
|
/*
|
|
* Copyright 2011-2022 Cuberite Contributors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
// Helper macros for writing exception-based tests
|
|
|
|
/*
|
|
The tests are supposed to be contained in small static functions that get called from a main function provided by this framework:
|
|
static void test1()
|
|
{
|
|
// Perform the test
|
|
}
|
|
|
|
...
|
|
|
|
IMPLEMENT_TEST_MAIN("TestName",
|
|
test1();
|
|
...
|
|
)
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/** The exception that is thrown if a test fails.
|
|
It doesn't inherit from any type so that it is not possible to catch it by a mistake,
|
|
it needs to be caught explicitly (used in the TEST_THROWS).
|
|
It bears a single message that is to be displayed to stderr. */
|
|
class TestException
|
|
{
|
|
public:
|
|
TestException(const AString & aFileName, int aLineNumber, const AString & aFunctionName, const AString & aMessage):
|
|
mFileName(aFileName),
|
|
mLineNumber(aLineNumber),
|
|
mFunctionName(aFunctionName),
|
|
mMessage(aMessage)
|
|
{
|
|
}
|
|
|
|
AString mFileName;
|
|
int mLineNumber;
|
|
AString mFunctionName;
|
|
AString mMessage;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks that the two values are equal; if not, throws a TestException. */
|
|
#define TEST_EQUAL(VAL1, VAL2) \
|
|
do { \
|
|
if (VAL1 != VAL2) \
|
|
{ \
|
|
throw TestException( \
|
|
__FILE__, __LINE__, __FUNCTION__, \
|
|
fmt::format(FMT_STRING("Equality test failed: {} != {}"), #VAL1, #VAL2) \
|
|
); \
|
|
} \
|
|
} while (false)
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks that the two values are equal; if not, throws a TestException, includes the specified message. */
|
|
#define TEST_EQUAL_MSG(VAL1, VAL2, MSG) \
|
|
do { \
|
|
if (VAL1 != VAL2) \
|
|
{ \
|
|
throw TestException( \
|
|
__FILE__, __LINE__, __FUNCTION__, \
|
|
fmt::format(FMT_STRING("Equality test failed: {} != {} ({})"), #VAL1, #VAL2, MSG) \
|
|
); \
|
|
} \
|
|
} while (false)
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks that the two values are not equal; if they are, throws a TestException. */
|
|
#define TEST_NOTEQUAL(VAL1, VAL2) \
|
|
do { \
|
|
if (VAL1 == VAL2) \
|
|
{ \
|
|
throw TestException( \
|
|
__FILE__, __LINE__, __FUNCTION__, \
|
|
fmt::format(FMT_STRING("Inequality test failed: {} == {}"), #VAL1, #VAL2) \
|
|
); \
|
|
} \
|
|
} while (false)
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks that the statement evaluates to true. */
|
|
#define TEST_TRUE(X) TEST_EQUAL(X, true)
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks that the statement evaluates to false. */
|
|
#define TEST_FALSE(X) TEST_EQUAL(X, false)
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks that the statement returns a value greater than or equal to the specified value. */
|
|
#define TEST_GREATER_THAN_OR_EQUAL(Stmt, Val) \
|
|
do { \
|
|
if (Stmt < Val) \
|
|
{ \
|
|
throw TestException(__FILE__, __LINE__, __FUNCTION__, fmt::format(FMT_STRING("Comparison failed: {} < {}"), #Stmt, #Val)); \
|
|
} \
|
|
} while (false)
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks that the statement returns a value less than or equal to the specified value. */
|
|
#define TEST_LESS_THAN_OR_EQUAL(Stmt, Val) \
|
|
do { \
|
|
if (Stmt > Val) \
|
|
{ \
|
|
throw TestException(__FILE__, __LINE__, __FUNCTION__, fmt::format(FMT_STRING("Comparison failed: {} > {}"), #Stmt, #Val)); \
|
|
} \
|
|
} while (false)
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks that the statement throws an exception of the specified class. */
|
|
#define TEST_THROWS(Stmt, ExcClass) \
|
|
do { \
|
|
try \
|
|
{ \
|
|
Stmt; \
|
|
throw TestException( \
|
|
__FILE__, __LINE__, __FUNCTION__, \
|
|
fmt::format(FMT_STRING("Failed to throw an exception of type {}"), #ExcClass) \
|
|
); \
|
|
} \
|
|
catch (const ExcClass &) \
|
|
{ \
|
|
/* This is the expected case. */ \
|
|
} \
|
|
catch (const std::exception & exc) \
|
|
{ \
|
|
throw TestException( \
|
|
__FILE__, __LINE__, __FUNCTION__, \
|
|
fmt::format( \
|
|
FMT_STRING("An unexpected std::exception descendant was thrown, was expecting type {}. Message is: {}"), \
|
|
#ExcClass, exc.what() \
|
|
) \
|
|
); \
|
|
} \
|
|
catch (...)\
|
|
{ \
|
|
throw TestException( \
|
|
__FILE__, __LINE__, __FUNCTION__, \
|
|
fmt::format(FMT_STRING("An unexpected unknown exception object was thrown, was expecting type {}"), #ExcClass) \
|
|
); \
|
|
} \
|
|
} while (false)
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks that the statement throws an exception of any type. */
|
|
#define TEST_THROWS_ANY(Stmt) \
|
|
do { \
|
|
try \
|
|
{ \
|
|
Stmt; \
|
|
throw TestException( \
|
|
__FILE__, __LINE__, __FUNCTION__, \
|
|
"Failed to throw an exception of any type" \
|
|
); \
|
|
} \
|
|
catch (const TestException & exc) \
|
|
{ \
|
|
throw exc; \
|
|
} \
|
|
catch (...)\
|
|
{ \
|
|
/* This is the expected case */ \
|
|
} \
|
|
} while (false)
|
|
|
|
|
|
|
|
|
|
|
|
/** Fails the test unconditionally, with the specified message. */
|
|
#define TEST_FAIL(MSG) \
|
|
throw TestException(__FILE__, __LINE__, __FUNCTION__, MSG)
|
|
|
|
|
|
|
|
|
|
|
|
/** Checks that the statement causes an ASSERT trigger. */
|
|
#ifdef NDEBUG
|
|
#define TEST_ASSERTS(Stmt) LOG("Skipped, cannot test in Release mode: TEST_ASSERT(%s); (%s:%d)", #Stmt, __FILE__, __LINE__)
|
|
#else
|
|
#define TEST_ASSERTS(Stmt) TEST_THROWS(Stmt, cAssertFailure)
|
|
#endif // else NDEBUG
|
|
|
|
|
|
|
|
|
|
|
|
/** Used to implement the main() function for tests. */
|
|
#define IMPLEMENT_TEST_MAIN(TestName, TestCode) \
|
|
int main() \
|
|
{ \
|
|
LOG("Test started: %s", TestName); \
|
|
\
|
|
try \
|
|
{ \
|
|
TestCode; \
|
|
} \
|
|
catch (const TestException & exc) \
|
|
{ \
|
|
LOGERROR("Test has failed at file %s, line %d, function %s: %s", \
|
|
exc.mFileName.c_str(), \
|
|
exc.mLineNumber, \
|
|
exc.mFunctionName.c_str(), \
|
|
exc.mMessage.c_str() \
|
|
); \
|
|
return 1; \
|
|
} \
|
|
catch (const std::exception & exc) \
|
|
{ \
|
|
LOGERROR("Test has failed, an exception was thrown: %s", exc.what()); \
|
|
return 1; \
|
|
} \
|
|
catch (const cAssertFailure & exc) \
|
|
{ \
|
|
LOGERROR("Test has failed, an unexpected ASSERT was triggered at %s:%d: %s", \
|
|
exc.fileName().c_str(), exc.lineNumber(), exc.expression().c_str() \
|
|
); \
|
|
return 1; \
|
|
} \
|
|
catch (...) \
|
|
{ \
|
|
LOGERROR("Test has failed, an unhandled exception was thrown."); \
|
|
return 1; \
|
|
} \
|
|
\
|
|
LOG("Test finished"); \
|
|
return 0; \
|
|
}
|