libreoffice-online/test/lokassert.hpp
Ashod Nakashian 7972ded44f wsd: test: log test assertions
Change-Id: Ibf9274b1812f70f54ccd4e7be991b08a11f36c86
Signed-off-by: Ashod Nakashian <ashod.nakashian@collabora.co.uk>
2020-12-28 12:04:53 -04:00

87 lines
5.4 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#pragma once
#include "testlog.hpp"
#include <assert.h>
#include <cppunit/extensions/HelperMacros.h>
inline std::ostream& operator<<(std::ostream& os, const std::vector<char>& v)
{
const std::size_t size = v.size();
if (size <= 32)
os << std::string(v.data(), size);
else
os << std::string(v.data(), 32) << "...";
return os;
}
#ifdef LOK_ABORT_ON_ASSERTION
#define LOK_ASSERT_IMPL(X) assert(X);
#else
#define LOK_ASSERT_IMPL(X)
#endif //LOK_ABORT_ON_ASSERTION
#define LOK_ASSERT(condition) \
do \
{ \
if (!(condition)) \
{ \
TST_LOG_NAME("unittest", "Assertion failure: " << (#condition)); \
LOK_ASSERT_IMPL(condition); \
CPPUNIT_ASSERT(condition); \
} \
} while (false)
#define LOK_ASSERT_EQUAL(expected, actual) \
do \
{ \
if (!((expected) == (actual))) \
{ \
TST_LOG_NAME("unittest", "Assertion failure: Expected [" \
<< (expected) << "] but got [" << (actual) << ']'); \
LOK_ASSERT_IMPL((expected) == (actual)); \
CPPUNIT_ASSERT_EQUAL((expected), (actual)); \
} \
} while (false)
#define LOK_ASSERT_EQUAL_MESSAGE(message, expected, actual) \
do \
{ \
if (!((expected) == (actual))) \
{ \
TST_LOG_NAME("unittest", "Assertion failure: " << (message) << ". Expected [" \
<< (expected) << "] but got [" \
<< (actual) << "]: "); \
LOK_ASSERT_IMPL((expected) == (actual)); \
CPPUNIT_ASSERT_EQUAL_MESSAGE((message), (expected), (actual)); \
} \
} while (false)
#define LOK_ASSERT_MESSAGE(message, condition) \
do \
{ \
if (!(condition)) \
{ \
TST_LOG_NAME("unittest", \
"Assertion failure: " << (message) << ". Condition: " << (#condition)); \
LOK_ASSERT_IMPL(condition); \
CPPUNIT_ASSERT_MESSAGE((message), (condition)); \
} \
} while (false)
#define LOK_ASSERT_FAIL(message) \
do \
{ \
TST_LOG_NAME("unittest", "Forced failure: " << (message)); \
LOK_ASSERT_IMPL(!"Forced failure"); \
CPPUNIT_FAIL((message)); \
} while (false)