diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2020-04-22 13:53:50 +0000 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2020-04-26 20:23:56 +0000 |
commit | 103b6ecce0f8e6d1366962c8748794067b2485fe (patch) | |
tree | d2e54e4d33b1e6af8b9d3c2f54438f204aab3c35 /src/test/fuzz | |
parent | dde508b8b03a4a144331cb1ff97f1349b491c402 (diff) |
tests: Add fuzzing coverage for TransactionErrorString(...)
Diffstat (limited to 'src/test/fuzz')
-rw-r--r-- | src/test/fuzz/kitchen_sink.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/fuzz/kitchen_sink.cpp b/src/test/fuzz/kitchen_sink.cpp new file mode 100644 index 0000000000..92c56ae58d --- /dev/null +++ b/src/test/fuzz/kitchen_sink.cpp @@ -0,0 +1,22 @@ +// Copyright (c) 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 <test/fuzz/util.h> +#include <util/error.h> + +#include <cstdint> +#include <vector> + +// The fuzzing kitchen sink: Fuzzing harness for functions that need to be +// fuzzed but a.) don't belong in any existing fuzzing harness file, and +// b.) are not important enough to warrant their own fuzzing harness file. +void test_one_input(const std::vector<uint8_t>& buffer) +{ + FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size()); + + const TransactionError transaction_error = fuzzed_data_provider.PickValueInArray<TransactionError>({TransactionError::OK, TransactionError::MISSING_INPUTS, TransactionError::ALREADY_IN_CHAIN, TransactionError::P2P_DISABLED, TransactionError::MEMPOOL_REJECTED, TransactionError::MEMPOOL_ERROR, TransactionError::INVALID_PSBT, TransactionError::PSBT_MISMATCH, TransactionError::SIGHASH_MISMATCH, TransactionError::MAX_FEE_EXCEEDED}); + (void)TransactionErrorString(transaction_error); +} |