LCOV - code coverage report
Current view: top level - src/test - raii_event_tests.cpp (source / functions) Hit Total Coverage
Test: coverage.lcov Lines: 48 48 100.0 %
Date: 2022-04-21 14:51:19 Functions: 4 4 100.0 %
Legend: Modified by patch:
Lines: hit not hit | Branches: + taken - not taken # not executed

Not modified by patch:
Lines: hit not hit | Branches: + taken - not taken # not executed
Branches: 1 2 50.0 %

           Branch data     Line data    Source code
#       1                 :            : // Copyright (c) 2016-2020 The Bitcoin Core developers
#       2                 :            : // Distributed under the MIT software license, see the accompanying
#       3                 :            : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#       4                 :            : 
#       5                 :            : #include <event2/event.h>
#       6                 :            : 
#       7                 :            : #include <map>
#       8                 :            : #include <stdlib.h>
#       9                 :            : 
#      10                 :            : #include <support/events.h>
#      11                 :            : 
#      12                 :            : #include <test/util/setup_common.h>
#      13                 :            : 
#      14                 :            : #include <boost/test/unit_test.hpp>
#      15                 :            : 
#      16                 :            : BOOST_FIXTURE_TEST_SUITE(raii_event_tests, BasicTestingSetup)
#      17                 :            : 
#      18                 :            : #ifdef EVENT_SET_MEM_FUNCTIONS_IMPLEMENTED
#      19                 :            : 
#      20                 :            : static std::map<void*, short> tags;
#      21                 :            : static std::map<void*, uint16_t> orders;
#      22                 :            : static uint16_t tagSequence = 0;
#      23                 :            : 
#      24                 :         40 : static void* tag_malloc(size_t sz) {
#      25                 :         40 :     void* mem = malloc(sz);
#      26         [ -  + ]:         40 :     if (!mem) return mem;
#      27                 :         40 :     tags[mem]++;
#      28                 :         40 :     orders[mem] = tagSequence++;
#      29                 :         40 :     return mem;
#      30                 :         40 : }
#      31                 :            : 
#      32                 :         40 : static void tag_free(void* mem) {
#      33                 :         40 :     tags[mem]--;
#      34                 :         40 :     orders[mem] = tagSequence++;
#      35                 :         40 :     free(mem);
#      36                 :         40 : }
#      37                 :            : 
#      38                 :            : BOOST_AUTO_TEST_CASE(raii_event_creation)
#      39                 :          2 : {
#      40                 :          2 :     event_set_mem_functions(tag_malloc, realloc, tag_free);
#      41                 :            : 
#      42                 :          2 :     void* base_ptr = nullptr;
#      43                 :          2 :     {
#      44                 :          2 :         auto base = obtain_event_base();
#      45                 :          2 :         base_ptr = (void*)base.get();
#      46                 :          2 :         BOOST_CHECK(tags[base_ptr] == 1);
#      47                 :          2 :     }
#      48                 :          2 :     BOOST_CHECK(tags[base_ptr] == 0);
#      49                 :            : 
#      50                 :          2 :     void* event_ptr = nullptr;
#      51                 :          2 :     {
#      52                 :          2 :         auto base = obtain_event_base();
#      53                 :          2 :         auto event = obtain_event(base.get(), -1, 0, nullptr, nullptr);
#      54                 :            : 
#      55                 :          2 :         base_ptr = (void*)base.get();
#      56                 :          2 :         event_ptr = (void*)event.get();
#      57                 :            : 
#      58                 :          2 :         BOOST_CHECK(tags[base_ptr] == 1);
#      59                 :          2 :         BOOST_CHECK(tags[event_ptr] == 1);
#      60                 :          2 :     }
#      61                 :          2 :     BOOST_CHECK(tags[base_ptr] == 0);
#      62                 :          2 :     BOOST_CHECK(tags[event_ptr] == 0);
#      63                 :            : 
#      64                 :          2 :     event_set_mem_functions(malloc, realloc, free);
#      65                 :          2 : }
#      66                 :            : 
#      67                 :            : BOOST_AUTO_TEST_CASE(raii_event_order)
#      68                 :          2 : {
#      69                 :          2 :     event_set_mem_functions(tag_malloc, realloc, tag_free);
#      70                 :            : 
#      71                 :          2 :     void* base_ptr = nullptr;
#      72                 :          2 :     void* event_ptr = nullptr;
#      73                 :          2 :     {
#      74                 :          2 :         auto base = obtain_event_base();
#      75                 :          2 :         auto event = obtain_event(base.get(), -1, 0, nullptr, nullptr);
#      76                 :            : 
#      77                 :          2 :         base_ptr = (void*)base.get();
#      78                 :          2 :         event_ptr = (void*)event.get();
#      79                 :            : 
#      80                 :            :         // base should have allocated before event
#      81                 :          2 :         BOOST_CHECK(orders[base_ptr] < orders[event_ptr]);
#      82                 :          2 :     }
#      83                 :            :     // base should be freed after event
#      84                 :          2 :     BOOST_CHECK(orders[base_ptr] > orders[event_ptr]);
#      85                 :            : 
#      86                 :          2 :     event_set_mem_functions(malloc, realloc, free);
#      87                 :          2 : }
#      88                 :            : 
#      89                 :            : #else
#      90                 :            : 
#      91                 :            : BOOST_AUTO_TEST_CASE(raii_event_tests_SKIPPED)
#      92                 :            : {
#      93                 :            :     // 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)
#      94                 :            :     BOOST_TEST_MESSAGE("Skipping raii_event_tess: libevent doesn't support event_set_mem_functions");
#      95                 :            : }
#      96                 :            : 
#      97                 :            : #endif  // EVENT_SET_MEM_FUNCTIONS_IMPLEMENTED
#      98                 :            : 
#      99                 :            : BOOST_AUTO_TEST_SUITE_END()

Generated by: LCOV version 0-eol-96201-ge66f56f4af6a