LCOV - code coverage report
Current view: top level - src/test/fuzz - rolling_bloom_filter.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 100.0 % 25 25
Test Date: 2025-01-22 04:09:46 Functions: 100.0 % 4 4
Branches: 61.1 % 18 11

             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 <common/bloom.h>
       6                 :             : #include <test/fuzz/FuzzedDataProvider.h>
       7                 :             : #include <test/fuzz/fuzz.h>
       8                 :             : #include <test/fuzz/util.h>
       9                 :             : #include <test/util/random.h>
      10                 :             : #include <uint256.h>
      11                 :             : 
      12                 :             : #include <cassert>
      13                 :             : #include <cstdint>
      14                 :             : #include <optional>
      15                 :             : #include <string>
      16                 :             : #include <vector>
      17                 :             : 
      18         [ +  - ]:         740 : FUZZ_TARGET(rolling_bloom_filter)
      19                 :             : {
      20                 :         326 :     SeedRandomStateForTest(SeedRand::ZEROS);
      21                 :         326 :     FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
      22                 :             : 
      23                 :         326 :     CRollingBloomFilter rolling_bloom_filter{
      24                 :             :         fuzzed_data_provider.ConsumeIntegralInRange<unsigned int>(1, 1000),
      25                 :         326 :         0.999 / fuzzed_data_provider.ConsumeIntegralInRange<unsigned int>(1, std::numeric_limits<unsigned int>::max())};
      26   [ +  +  +  + ]:      506117 :     LIMITED_WHILE(fuzzed_data_provider.remaining_bytes() > 0, 3000)
      27                 :             :     {
      28         [ +  - ]:      505791 :         CallOneOf(
      29                 :             :             fuzzed_data_provider,
      30                 :       77395 :             [&] {
      31                 :       77395 :                 const std::vector<unsigned char> b = ConsumeRandomLengthByteVector(fuzzed_data_provider);
      32         [ +  - ]:       77395 :                 (void)rolling_bloom_filter.contains(b);
      33         [ +  - ]:       77395 :                 rolling_bloom_filter.insert(b);
      34         [ +  - ]:       77395 :                 const bool present = rolling_bloom_filter.contains(b);
      35         [ -  + ]:       77395 :                 assert(present);
      36                 :       77395 :             },
      37                 :       17464 :             [&] {
      38                 :       17464 :                 const uint256 u256{ConsumeUInt256(fuzzed_data_provider)};
      39                 :       17464 :                 (void)rolling_bloom_filter.contains(u256);
      40                 :       17464 :                 rolling_bloom_filter.insert(u256);
      41                 :       17464 :                 const bool present = rolling_bloom_filter.contains(u256);
      42         [ -  + ]:       17464 :                 assert(present);
      43                 :       17464 :             },
      44                 :      410932 :             [&] {
      45                 :      410932 :                 rolling_bloom_filter.reset();
      46                 :      410932 :             });
      47                 :             :     }
      48                 :         326 : }
        

Generated by: LCOV version 2.0-1