mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-15 14:22:37 -03:00
fa0074e2d8
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT-
30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
// Copyright (c) 2019-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <test/fuzz/FuzzedDataProvider.h>
|
|
#include <test/fuzz/fuzz.h>
|
|
#include <util/spanparsing.h>
|
|
|
|
FUZZ_TARGET(spanparsing)
|
|
{
|
|
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
|
const size_t query_size = fuzzed_data_provider.ConsumeIntegral<size_t>();
|
|
const std::string query = fuzzed_data_provider.ConsumeBytesAsString(std::min<size_t>(query_size, 1024 * 1024));
|
|
const std::string span_str = fuzzed_data_provider.ConsumeRemainingBytesAsString();
|
|
const Span<const char> const_span{span_str};
|
|
|
|
Span<const char> mut_span = const_span;
|
|
(void)spanparsing::Const(query, mut_span);
|
|
|
|
mut_span = const_span;
|
|
(void)spanparsing::Func(query, mut_span);
|
|
|
|
mut_span = const_span;
|
|
(void)spanparsing::Expr(mut_span);
|
|
|
|
if (!query.empty()) {
|
|
mut_span = const_span;
|
|
(void)spanparsing::Split(mut_span, query.front());
|
|
}
|
|
}
|