Branch data Line data Source code
1 : : // Copyright (c) 2009-present 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 <test/fuzz/FuzzedDataProvider.h>
6 : : #include <test/fuzz/fuzz.h>
7 : : #include <test/fuzz/util.h>
8 : : #include <util/bip32.h>
9 : :
10 : : #include <cassert>
11 : : #include <cstdint>
12 : : #include <vector>
13 : :
14 [ + - ]: 616 : FUZZ_TARGET(parse_hd_keypath)
15 : : {
16 [ + - ]: 140 : const std::string keypath_str(buffer.begin(), buffer.end());
17 : 140 : std::vector<uint32_t> keypath;
18 [ + - ]: 140 : (void)ParseHDKeypath(keypath_str, keypath);
19 : :
20 : 140 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
21 : 140 : const std::vector<uint32_t> random_keypath = ConsumeRandomLengthIntegralVector<uint32_t>(fuzzed_data_provider);
22 : :
23 : : // Roundtrip WriteHDKeypath() and ParseHDKeypath()
24 [ + + ]: 420 : for (const bool apostrophe : {false, true}) {
25 : 280 : std::vector<uint32_t> roundtrip;
26 [ + - ]: 280 : const std::string written{WriteHDKeypath(random_keypath, apostrophe)};
27 [ + - - + ]: 280 : assert(ParseHDKeypath(written, roundtrip));
28 [ - + ]: 280 : assert(roundtrip == random_keypath);
29 : 280 : }
30 : 140 : }
|