/*
* Copyright 2018-2019, Intel Corporation
*
* 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 copyright holder 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 COPYRIGHT HOLDERS AND CONTRIBUTORS
* "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 THE COPYRIGHT
* OWNER OR CONTRIBUTORS 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 LIBPMEMOBJ_CPP_UNITTEST_HPP
#define LIBPMEMOBJ_CPP_UNITTEST_HPP
#include "../test_backtrace.h"
#include "../valgrind_internal.hpp"
#include "iterators_support.hpp"
#include <cstdarg>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <string>
#include <sys/stat.h>
#include <sys/types.h>
#include <type_traits>
#define START() \
do { \
test_register_sighandlers(); \
set_valgrind_internals(); \
} while (0)
#ifndef _WIN32
#define os_stat_t struct stat
#define os_stat stat
#else
#define os_stat_t struct _stat64
#define os_stat _stat64
#endif
static inline void
UT_OUT(const char *format, ...)
{
va_list args_list;
va_start(args_list, format);
std::vfprintf(stdout, format, args_list);
va_end(args_list);
fprintf(stdout, "\n");
}
static inline void
UT_EXCEPTION(std::exception &e)
{
std::cerr << e.what() << std::endl;
}
static inline void
UT_FATAL(const char *format, ...)
{
va_list args_list;
va_start(args_list, format);
std::vfprintf(stderr, format, args_list);
va_end(args_list);
fprintf(stderr, "\n");
abort();
}
#ifdef _WIN32
#include "unittest_windows.hpp"
#endif
/*
* ut_stat -- stat that never returns -1
*/
int
ut_stat(const char *file, int line, const char *func, const char *path,
os_stat_t *st)
{
int ret = os_stat(path, st);
if (ret < 0)
UT_FATAL("%s:%d %s - !stat: %s", file, line, func, path);
#ifdef _WIN32
/* clear unused bits to avoid confusion */
st->st_mode &= 0600;
#endif
return ret;
}
#define STAT(path, st) ut_stat(__FILE__, __LINE__, __func__, path, st)
/* assert a condition is true at runtime */
#define UT_ASSERT(cnd) \
((void)((cnd) || \
(UT_FATAL("%s:%d %s - assertion failure: %s", __FILE__, \
__LINE__, __func__, #cnd), \
0)))
/* assertion with exception related string printed */
#define UT_FATALexc(exception) \
((void)(UT_EXCEPTION(exception), \
(UT_FATAL("%s:%d %s - assertion failure", __FILE__, __LINE__, \
__func__), \
0)))
/* assertion with extra info printed if assertion fails at runtime */
#define UT_ASSERTinfo(cnd, info) \
((void)((cnd) || \
(UT_FATAL("%s:%d %s - assertion failure: %s (%s = %s)", \
__FILE__, __LINE__, __func__, #cnd, #info, info), \
0)))
/* assert two integer values are equal at runtime */
#define UT_ASSERTeq(lhs, rhs) \
((void)(((lhs) == (rhs)) || \
(UT_FATAL("%s:%d %s - assertion failure: %s (0x%llx) == %s " \
"(0x%llx)", \
__FILE__, __LINE__, __func__, #lhs, \
(unsigned long long)(lhs), #rhs, \
(unsigned long long)(rhs)), \
0)))
/* assert two integer values are not equal at runtime */
#define UT_ASSERTne(lhs, rhs) \
((void)(((lhs) != (rhs)) || \
(UT_FATAL("%s:%d %s - assertion failure: %s (0x%llx) != %s " \
"(0x%llx)", \
__FILE__, __LINE__, __func__, #lhs, \
(unsigned long long)(lhs), #rhs, \
(unsigned long long)(rhs)), \
0)))
#define UT_ASSERT_NOEXCEPT(...) \
static_assert(noexcept(__VA_ARGS__), "Operation must be noexcept")
#endif /* LIBPMEMOBJ_CPP_UNITTEST_HPP */