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 <uint256.h>
10 : :
11 : : #include <cassert>
12 : : #include <cstdint>
13 : : #include <optional>
14 : : #include <string>
15 : : #include <vector>
16 : :
17 [ + - ]: 580 : FUZZ_TARGET(rolling_bloom_filter)
18 : : {
19 : 168 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
20 : :
21 : 168 : CRollingBloomFilter rolling_bloom_filter{
22 : : fuzzed_data_provider.ConsumeIntegralInRange<unsigned int>(1, 1000),
23 : 168 : 0.999 / fuzzed_data_provider.ConsumeIntegralInRange<unsigned int>(1, std::numeric_limits<unsigned int>::max())};
24 [ + + + + ]: 129817 : LIMITED_WHILE(fuzzed_data_provider.remaining_bytes() > 0, 3000)
25 : : {
26 [ + - ]: 129649 : CallOneOf(
27 : : fuzzed_data_provider,
28 : 44419 : [&] {
29 : 44419 : const std::vector<unsigned char> b = ConsumeRandomLengthByteVector(fuzzed_data_provider);
30 [ + - ]: 44419 : (void)rolling_bloom_filter.contains(b);
31 [ + - ]: 44419 : rolling_bloom_filter.insert(b);
32 [ + - ]: 44419 : const bool present = rolling_bloom_filter.contains(b);
33 [ - + ]: 44419 : assert(present);
34 : 44419 : },
35 : 11389 : [&] {
36 : 11389 : const uint256 u256{ConsumeUInt256(fuzzed_data_provider)};
37 : 11389 : (void)rolling_bloom_filter.contains(u256);
38 : 11389 : rolling_bloom_filter.insert(u256);
39 : 11389 : const bool present = rolling_bloom_filter.contains(u256);
40 [ - + ]: 11389 : assert(present);
41 : 11389 : },
42 : 73841 : [&] {
43 : 73841 : rolling_bloom_filter.reset();
44 : 73841 : });
45 : : }
46 : 168 : }
|