2008-07-01 20:59:13 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2008, Arvid Norberg
|
|
|
|
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 author 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2005-08-11 13:06:52 +02:00
|
|
|
#ifndef TEST_HPP
|
|
|
|
#define TEST_HPP
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#include "libtorrent/address.hpp"
|
|
|
|
#include "libtorrent/socket.hpp"
|
|
|
|
|
2009-12-15 14:11:07 +01:00
|
|
|
#include <boost/config.hpp>
|
|
|
|
#include <exception>
|
|
|
|
#include <sstream>
|
2015-05-30 06:31:23 +02:00
|
|
|
#include <vector>
|
2016-10-10 02:09:44 +02:00
|
|
|
#include <cstdio> // for std::snprintf
|
2016-05-17 15:24:06 +02:00
|
|
|
#include <cinttypes> // for PRId64 et.al.
|
|
|
|
|
2015-05-30 06:31:23 +02:00
|
|
|
#include <boost/preprocessor/cat.hpp>
|
2009-12-15 14:11:07 +01:00
|
|
|
|
2013-06-23 22:37:03 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
|
|
|
|
2015-08-08 08:33:54 +02:00
|
|
|
// tests are expected to even test deprecated functionality. There is no point
|
|
|
|
// in warning about deprecated use in any of the tests.
|
2018-03-23 23:54:17 +01:00
|
|
|
// the unreachable code warnings are disabled since the test macros may
|
|
|
|
// sometimes have conditions that are known at compile time
|
2015-08-08 08:33:54 +02:00
|
|
|
#if defined __clang__
|
|
|
|
#pragma clang diagnostic ignored "-Wdeprecated"
|
|
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
2018-03-23 23:54:17 +01:00
|
|
|
#pragma clang diagnostic ignored "-Wunreachable-code"
|
2015-08-08 08:33:54 +02:00
|
|
|
|
|
|
|
#elif defined __GNUC__
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated"
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
2018-03-23 23:54:17 +01:00
|
|
|
#pragma GCC diagnostic ignored "-Wunreachable-code"
|
2015-08-08 08:33:54 +02:00
|
|
|
|
|
|
|
#elif defined _MSC_VER
|
|
|
|
#pragma warning(disable : 4996)
|
|
|
|
#endif
|
|
|
|
|
2013-09-18 10:42:30 +02:00
|
|
|
#if defined TORRENT_BUILDING_TEST_SHARED
|
2013-06-23 22:37:03 +02:00
|
|
|
#define EXPORT BOOST_SYMBOL_EXPORT
|
2013-09-18 10:42:30 +02:00
|
|
|
#elif defined TORRENT_LINK_TEST_SHARED
|
2013-06-23 22:37:03 +02:00
|
|
|
#define EXPORT BOOST_SYMBOL_IMPORT
|
2013-09-18 10:42:30 +02:00
|
|
|
#else
|
|
|
|
#define EXPORT
|
2013-06-23 22:37:03 +02:00
|
|
|
#endif
|
|
|
|
|
2013-06-23 23:25:38 +02:00
|
|
|
void EXPORT report_failure(char const* err, char const* file, int line);
|
2013-08-28 04:40:38 +02:00
|
|
|
int EXPORT print_failures();
|
2015-08-09 06:56:37 +02:00
|
|
|
int EXPORT test_counter();
|
2017-11-08 23:48:51 +01:00
|
|
|
void EXPORT reset_output();
|
2013-06-23 23:25:38 +02:00
|
|
|
|
2018-03-22 17:01:38 +01:00
|
|
|
using unit_test_fun_t = void (*)();
|
2015-05-30 06:31:23 +02:00
|
|
|
|
|
|
|
struct unit_test_t
|
|
|
|
{
|
|
|
|
unit_test_fun_t fun;
|
|
|
|
char const* name;
|
|
|
|
int num_failures;
|
|
|
|
bool run;
|
|
|
|
FILE* output;
|
|
|
|
};
|
|
|
|
|
2015-05-31 14:21:16 +02:00
|
|
|
extern unit_test_t EXPORT _g_unit_tests[1024];
|
|
|
|
extern int EXPORT _g_num_unit_tests;
|
|
|
|
extern int EXPORT _g_test_failures;
|
2017-04-02 20:22:17 +02:00
|
|
|
extern int _g_test_idx;
|
2015-05-30 06:31:23 +02:00
|
|
|
|
|
|
|
#define TORRENT_TEST(test_name) \
|
2015-05-31 18:14:46 +02:00
|
|
|
static void BOOST_PP_CAT(unit_test_, test_name)(); \
|
2015-08-11 05:05:16 +02:00
|
|
|
static struct BOOST_PP_CAT(register_class_, test_name) { \
|
|
|
|
BOOST_PP_CAT(register_class_, test_name) () { \
|
2015-05-30 06:31:23 +02:00
|
|
|
unit_test_t& t = _g_unit_tests[_g_num_unit_tests]; \
|
|
|
|
t.fun = &BOOST_PP_CAT(unit_test_, test_name); \
|
2015-05-31 14:21:16 +02:00
|
|
|
t.name = __FILE__ "." #test_name; \
|
2015-05-30 06:31:23 +02:00
|
|
|
t.num_failures = 0; \
|
|
|
|
t.run = false; \
|
2018-03-22 17:01:38 +01:00
|
|
|
t.output = nullptr; \
|
2015-05-30 06:31:23 +02:00
|
|
|
_g_num_unit_tests++; \
|
|
|
|
} \
|
2015-08-11 05:05:16 +02:00
|
|
|
} BOOST_PP_CAT(_static_registrar_, test_name); \
|
2015-05-31 14:21:16 +02:00
|
|
|
static void BOOST_PP_CAT(unit_test_, test_name)()
|
2005-08-11 13:06:52 +02:00
|
|
|
|
|
|
|
#define TEST_REPORT_AUX(x, line, file) \
|
|
|
|
report_failure(x, line, file)
|
|
|
|
|
2009-12-15 14:11:07 +01:00
|
|
|
#ifdef BOOST_NO_EXCEPTIONS
|
|
|
|
#define TEST_CHECK(x) \
|
2019-09-23 08:32:14 +02:00
|
|
|
do if (!(x)) { \
|
2016-07-15 20:35:57 +02:00
|
|
|
TEST_REPORT_AUX("TEST_ERROR: check failed: \"" #x "\"", __FILE__, __LINE__);
|
2019-09-23 08:32:14 +02:00
|
|
|
} while (false)
|
2009-12-15 14:11:07 +01:00
|
|
|
#define TEST_EQUAL(x, y) \
|
2019-09-23 08:32:14 +02:00
|
|
|
do if ((x) != (y)) { \
|
2010-10-30 19:23:30 +02:00
|
|
|
std::stringstream s__; \
|
2016-07-15 20:35:57 +02:00
|
|
|
s__ << "TEST_ERROR: equal check failed:\n" #x ": " << (x) << "\nexpected: " << (y); \
|
2010-10-30 19:23:30 +02:00
|
|
|
TEST_REPORT_AUX(s__.str().c_str(), __FILE__, __LINE__); \
|
2019-09-23 08:32:14 +02:00
|
|
|
} while (false)
|
2016-08-07 22:05:20 +02:00
|
|
|
#define TEST_NE(x, y) \
|
2019-09-23 08:32:14 +02:00
|
|
|
do if ((x) == (y)) { \
|
2016-08-07 22:05:20 +02:00
|
|
|
std::stringstream s__; \
|
|
|
|
s__ << "TEST_ERROR: not equal check failed:\n" #x ": " << (x) << "\nexpected not equal to: " << (y); \
|
|
|
|
TEST_REPORT_AUX(s__.str().c_str(), __FILE__, __LINE__); \
|
2019-09-23 08:32:14 +02:00
|
|
|
} while (false)
|
2009-12-15 14:11:07 +01:00
|
|
|
#else
|
2005-08-11 13:06:52 +02:00
|
|
|
#define TEST_CHECK(x) \
|
2019-09-23 08:32:14 +02:00
|
|
|
do try \
|
2009-01-19 10:30:38 +01:00
|
|
|
{ \
|
|
|
|
if (!(x)) \
|
2016-07-15 20:35:57 +02:00
|
|
|
TEST_REPORT_AUX("TEST_ERROR: check failed: \"" #x "\"", __FILE__, __LINE__); \
|
2009-01-19 10:30:38 +01:00
|
|
|
} \
|
2016-09-25 15:50:48 +02:00
|
|
|
catch (std::exception const& e) \
|
2009-01-19 10:30:38 +01:00
|
|
|
{ \
|
2016-07-15 20:35:57 +02:00
|
|
|
TEST_ERROR("TEST_ERROR: Exception thrown: " #x " :" + std::string(e.what())); \
|
2009-01-19 10:30:38 +01:00
|
|
|
} \
|
|
|
|
catch (...) \
|
|
|
|
{ \
|
2016-07-15 20:35:57 +02:00
|
|
|
TEST_ERROR("TEST_ERROR: Exception thrown: " #x); \
|
2019-09-23 08:32:14 +02:00
|
|
|
} while (false)
|
2005-08-11 13:06:52 +02:00
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
#define TEST_EQUAL(x, y) \
|
2019-09-23 08:32:14 +02:00
|
|
|
do try { \
|
2014-09-04 10:55:24 +02:00
|
|
|
if ((x) != (y)) { \
|
2010-10-30 19:23:30 +02:00
|
|
|
std::stringstream s__; \
|
2016-07-15 20:35:57 +02:00
|
|
|
s__ << "TEST_ERROR: " #x ": " << (x) << " expected: " << (y); \
|
2010-10-30 19:23:30 +02:00
|
|
|
TEST_REPORT_AUX(s__.str().c_str(), __FILE__, __LINE__); \
|
2009-10-26 02:29:39 +01:00
|
|
|
} \
|
|
|
|
} \
|
2016-09-25 15:50:48 +02:00
|
|
|
catch (std::exception const& e) \
|
2009-10-26 02:29:39 +01:00
|
|
|
{ \
|
2016-07-15 20:35:57 +02:00
|
|
|
TEST_ERROR("TEST_ERROR: Exception thrown: " #x " :" + std::string(e.what())); \
|
2009-10-26 02:29:39 +01:00
|
|
|
} \
|
|
|
|
catch (...) \
|
|
|
|
{ \
|
2016-07-15 20:35:57 +02:00
|
|
|
TEST_ERROR("TEST_ERROR: Exception thrown: " #x); \
|
2019-09-23 08:32:14 +02:00
|
|
|
} while (false)
|
2016-08-07 22:05:20 +02:00
|
|
|
#define TEST_NE(x, y) \
|
2019-09-23 08:32:14 +02:00
|
|
|
do try { \
|
2016-08-07 22:05:20 +02:00
|
|
|
if ((x) == (y)) { \
|
|
|
|
std::stringstream s__; \
|
|
|
|
s__ << "TEST_ERROR: " #x ": " << (x) << " expected not equal to: " << (y); \
|
|
|
|
TEST_REPORT_AUX(s__.str().c_str(), __FILE__, __LINE__); \
|
|
|
|
} \
|
|
|
|
} \
|
2016-09-25 15:50:48 +02:00
|
|
|
catch (std::exception const& e) \
|
2016-08-07 22:05:20 +02:00
|
|
|
{ \
|
|
|
|
TEST_ERROR("TEST_ERROR: Exception thrown: " #x " :" + std::string(e.what())); \
|
|
|
|
} \
|
|
|
|
catch (...) \
|
|
|
|
{ \
|
|
|
|
TEST_ERROR("TEST_ERROR: Exception thrown: " #x); \
|
2019-09-23 08:32:14 +02:00
|
|
|
} while (false)
|
2009-12-15 14:11:07 +01:00
|
|
|
#endif
|
2009-10-26 02:29:39 +01:00
|
|
|
|
2005-08-11 13:06:52 +02:00
|
|
|
#define TEST_ERROR(x) \
|
2016-07-15 20:35:57 +02:00
|
|
|
TEST_REPORT_AUX((std::string("TEST_ERROR: \"") + (x) + "\"").c_str(), __FILE__, __LINE__)
|
2005-08-11 13:06:52 +02:00
|
|
|
|
|
|
|
#define TEST_NOTHROW(x) \
|
2019-09-23 08:32:14 +02:00
|
|
|
do try \
|
2005-08-11 13:06:52 +02:00
|
|
|
{ \
|
|
|
|
x; \
|
|
|
|
} \
|
|
|
|
catch (...) \
|
|
|
|
{ \
|
2016-07-15 20:35:57 +02:00
|
|
|
TEST_ERROR("TEST_ERROR: Exception thrown: " #x); \
|
2019-09-23 08:32:14 +02:00
|
|
|
} while (false)
|
2005-08-11 13:06:52 +02:00
|
|
|
|
2017-02-16 23:07:57 +01:00
|
|
|
#define TEST_THROW(x) \
|
2019-09-23 08:32:14 +02:00
|
|
|
do try \
|
2017-02-16 23:07:57 +01:00
|
|
|
{ \
|
|
|
|
x; \
|
|
|
|
TEST_ERROR("No exception thrown: " #x); \
|
|
|
|
} \
|
2019-09-23 08:32:14 +02:00
|
|
|
catch (...) {} while (false)
|
2017-02-16 23:07:57 +01:00
|
|
|
|
2005-08-11 13:06:52 +02:00
|
|
|
#endif // TEST_HPP
|
|
|
|
|