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 <blockfilter.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 : :
11 : : #include <cstdint>
12 : : #include <optional>
13 : : #include <string>
14 : : #include <vector>
15 : :
16 [ + - ]: 1099 : FUZZ_TARGET(blockfilter)
17 : : {
18 : 685 : SeedRandomStateForTest(SeedRand::ZEROS);
19 : 685 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
20 : 685 : const std::optional<BlockFilter> block_filter = ConsumeDeserializable<BlockFilter>(fuzzed_data_provider);
21 [ + + ]: 685 : if (!block_filter) {
22 : 56 : return;
23 : : }
24 : 629 : {
25 [ + - ]: 629 : (void)block_filter->ComputeHeader(ConsumeUInt256(fuzzed_data_provider));
26 [ + - ]: 629 : (void)block_filter->GetBlockHash();
27 [ + - ]: 629 : (void)block_filter->GetEncodedFilter();
28 [ + - ]: 629 : (void)block_filter->GetHash();
29 : : }
30 : 629 : {
31 [ + - ]: 629 : const BlockFilterType block_filter_type = block_filter->GetFilterType();
32 [ + - ]: 629 : (void)BlockFilterTypeName(block_filter_type);
33 : : }
34 : 629 : {
35 [ + - ]: 629 : const GCSFilter gcs_filter = block_filter->GetFilter();
36 : 629 : (void)gcs_filter.GetN();
37 : 629 : (void)gcs_filter.GetParams();
38 : 629 : (void)gcs_filter.GetEncoded();
39 [ + - ]: 629 : (void)gcs_filter.Match(ConsumeRandomLengthByteVector(fuzzed_data_provider));
40 [ + - ]: 629 : GCSFilter::ElementSet element_set;
41 [ + + + + ]: 1017000 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 30000)
42 : : {
43 [ + - ]: 1016371 : element_set.insert(ConsumeRandomLengthByteVector(fuzzed_data_provider));
44 : : }
45 [ + - ]: 629 : gcs_filter.MatchAny(element_set);
46 : 629 : }
47 : 685 : }
|