LCOV - code coverage report
Current view: top level - src/test/fuzz - cuckoocache.cpp (source / functions) Hit Total Coverage
Test: fuzz_coverage.info Lines: 22 22 100.0 %
Date: 2023-10-05 15:40:34 Functions: 12 12 100.0 %
Branches: 30 52 57.7 %

           Branch data     Line data    Source code
       1                 :            : // Copyright (c) 2020-2021 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 <cuckoocache.h>
       6                 :            : #include <script/sigcache.h>
       7                 :            : #include <test/fuzz/FuzzedDataProvider.h>
       8                 :            : #include <test/fuzz/fuzz.h>
       9                 :            : #include <test/fuzz/util.h>
      10                 :            : #include <test/util/setup_common.h>
      11                 :            : 
      12                 :            : #include <cstdint>
      13                 :            : #include <string>
      14                 :            : #include <vector>
      15                 :            : 
      16                 :            : namespace {
      17                 :            : FuzzedDataProvider* fuzzed_data_provider_ptr = nullptr;
      18                 :            : 
      19                 :            : struct RandomHasher {
      20                 :            :     template <uint8_t>
      21                 :     781248 :     uint32_t operator()(const bool& /* unused */) const
      22                 :            :     {
      23   [ +  -  +  -  :     781248 :         assert(fuzzed_data_provider_ptr != nullptr);
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
      24                 :     781248 :         return fuzzed_data_provider_ptr->ConsumeIntegral<uint32_t>();
      25         [ +  - ]:        173 :     }
      26                 :            : };
      27                 :            : } // namespace
      28                 :            : 
      29         [ -  + ]:        477 : FUZZ_TARGET(cuckoocache)
      30                 :            : {
      31                 :        131 :     FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
      32                 :        131 :     fuzzed_data_provider_ptr = &fuzzed_data_provider;
      33                 :        131 :     CuckooCache::cache<int, RandomHasher> cuckoo_cache{};
      34   [ +  -  +  + ]:        131 :     if (fuzzed_data_provider.ConsumeBool()) {
      35         [ +  - ]:         40 :         const size_t megabytes = fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 16);
      36         [ +  - ]:         40 :         cuckoo_cache.setup_bytes(megabytes << 20);
      37                 :         40 :     } else {
      38   [ +  -  +  - ]:         91 :         cuckoo_cache.setup(fuzzed_data_provider.ConsumeIntegralInRange<uint32_t>(0, 4096));
      39                 :            :     }
      40   [ +  -  +  +  :      88524 :     LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 10000) {
                   +  + ]
      41   [ +  -  +  + ]:      88393 :         if (fuzzed_data_provider.ConsumeBool()) {
      42   [ +  -  +  - ]:      85268 :             cuckoo_cache.insert(fuzzed_data_provider.ConsumeBool());
      43                 :      85268 :         } else {
      44   [ +  -  +  -  :       3125 :             cuckoo_cache.contains(fuzzed_data_provider.ConsumeBool(), fuzzed_data_provider.ConsumeBool());
                   +  - ]
      45                 :            :         }
      46                 :      88393 :     }
      47                 :        131 :     fuzzed_data_provider_ptr = nullptr;
      48                 :        131 : }

Generated by: LCOV version 1.14