mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-29 20:47:31 -03:00
091cc4b94e
9a19c9ada5
Always define the raii_event_tests test suite (Craig Andrews) Pull request description: The test suite must always be defined (even when EVENT_SET_MEM_FUNCTIONS_IMPLEMENTED is not defined) so that the test harness doesn't fail due to not being able to find the raii_event_tests test. This improves upon95f97f4
actually fixing https://github.com/bitcoin/bitcoin/issues/9493 ACKs for top commit: MarcoFalke: ACK9a19c9ada5
🎹 Tree-SHA512: 3c42f17a9b5d56c8841f3aa9ac19da91c10aff210026266f31f7eb98a62528740d7c518c121452b68e8f801d6c80ecfb627d137ec6ed533289fa3beb08b4f176
99 lines
2.6 KiB
C++
99 lines
2.6 KiB
C++
// Copyright (c) 2016-2019 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <event2/event.h>
|
|
|
|
#include <map>
|
|
#include <stdlib.h>
|
|
|
|
#include <support/events.h>
|
|
|
|
#include <test/util/setup_common.h>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(raii_event_tests, BasicTestingSetup)
|
|
|
|
#ifdef EVENT_SET_MEM_FUNCTIONS_IMPLEMENTED
|
|
|
|
static std::map<void*, short> tags;
|
|
static std::map<void*, uint16_t> orders;
|
|
static uint16_t tagSequence = 0;
|
|
|
|
static void* tag_malloc(size_t sz) {
|
|
void* mem = malloc(sz);
|
|
if (!mem) return mem;
|
|
tags[mem]++;
|
|
orders[mem] = tagSequence++;
|
|
return mem;
|
|
}
|
|
|
|
static void tag_free(void* mem) {
|
|
tags[mem]--;
|
|
orders[mem] = tagSequence++;
|
|
free(mem);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(raii_event_creation)
|
|
{
|
|
event_set_mem_functions(tag_malloc, realloc, tag_free);
|
|
|
|
void* base_ptr = nullptr;
|
|
{
|
|
auto base = obtain_event_base();
|
|
base_ptr = (void*)base.get();
|
|
BOOST_CHECK(tags[base_ptr] == 1);
|
|
}
|
|
BOOST_CHECK(tags[base_ptr] == 0);
|
|
|
|
void* event_ptr = nullptr;
|
|
{
|
|
auto base = obtain_event_base();
|
|
auto event = obtain_event(base.get(), -1, 0, nullptr, nullptr);
|
|
|
|
base_ptr = (void*)base.get();
|
|
event_ptr = (void*)event.get();
|
|
|
|
BOOST_CHECK(tags[base_ptr] == 1);
|
|
BOOST_CHECK(tags[event_ptr] == 1);
|
|
}
|
|
BOOST_CHECK(tags[base_ptr] == 0);
|
|
BOOST_CHECK(tags[event_ptr] == 0);
|
|
|
|
event_set_mem_functions(malloc, realloc, free);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(raii_event_order)
|
|
{
|
|
event_set_mem_functions(tag_malloc, realloc, tag_free);
|
|
|
|
void* base_ptr = nullptr;
|
|
void* event_ptr = nullptr;
|
|
{
|
|
auto base = obtain_event_base();
|
|
auto event = obtain_event(base.get(), -1, 0, nullptr, nullptr);
|
|
|
|
base_ptr = (void*)base.get();
|
|
event_ptr = (void*)event.get();
|
|
|
|
// base should have allocated before event
|
|
BOOST_CHECK(orders[base_ptr] < orders[event_ptr]);
|
|
}
|
|
// base should be freed after event
|
|
BOOST_CHECK(orders[base_ptr] > orders[event_ptr]);
|
|
|
|
event_set_mem_functions(malloc, realloc, free);
|
|
}
|
|
|
|
#else
|
|
|
|
BOOST_AUTO_TEST_CASE(raii_event_tests_SKIPPED)
|
|
{
|
|
// It would probably be ideal to report skipped, but boost::test doesn't seem to make that practical (at least not in versions available with common distros)
|
|
BOOST_TEST_MESSAGE("Skipping raii_event_tess: libevent doesn't support event_set_mem_functions");
|
|
}
|
|
|
|
#endif // EVENT_SET_MEM_FUNCTIONS_IMPLEMENTED
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|