/root/bitcoin/src/test/fuzz/hex.cpp
Line | Count | Source (jump to first uncovered line) |
1 | | // Copyright (c) 2019-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 <core_io.h> |
6 | | #include <primitives/block.h> |
7 | | #include <pubkey.h> |
8 | | #include <rpc/util.h> |
9 | | #include <test/fuzz/fuzz.h> |
10 | | #include <uint256.h> |
11 | | #include <univalue.h> |
12 | | #include <util/strencodings.h> |
13 | | #include <util/transaction_identifier.h> |
14 | | |
15 | | #include <algorithm> |
16 | | #include <cassert> |
17 | | #include <cstdint> |
18 | | #include <string> |
19 | | #include <vector> |
20 | | |
21 | | FUZZ_TARGET(hex) |
22 | 0 | { |
23 | 0 | const std::string random_hex_string(buffer.begin(), buffer.end()); |
24 | 0 | const std::vector<unsigned char> data = ParseHex(random_hex_string); |
25 | 0 | const std::vector<std::byte> bytes{ParseHex<std::byte>(random_hex_string)}; |
26 | 0 | assert(std::ranges::equal(AsBytes(Span{data}), bytes)); |
27 | 0 | const std::string hex_data = HexStr(data); |
28 | 0 | if (IsHex(random_hex_string)) { |
29 | 0 | assert(ToLower(random_hex_string) == hex_data); |
30 | 0 | } |
31 | 0 | if (uint256::FromHex(random_hex_string)) { |
32 | 0 | assert(random_hex_string.length() == 64); |
33 | 0 | assert(Txid::FromHex(random_hex_string)); |
34 | 0 | assert(Wtxid::FromHex(random_hex_string)); |
35 | 0 | assert(uint256::FromUserHex(random_hex_string)); |
36 | 0 | } |
37 | 0 | if (const auto result{uint256::FromUserHex(random_hex_string)}) { |
38 | 0 | const auto result_string{result->ToString()}; // ToString() returns a fixed-length string without "0x" prefix |
39 | 0 | assert(result_string.length() == 64); |
40 | 0 | assert(IsHex(result_string)); |
41 | 0 | assert(TryParseHex(result_string)); |
42 | 0 | assert(Txid::FromHex(result_string)); |
43 | 0 | assert(Wtxid::FromHex(result_string)); |
44 | 0 | assert(uint256::FromHex(result_string)); |
45 | 0 | } |
46 | 0 | try { |
47 | 0 | (void)HexToPubKey(random_hex_string); |
48 | 0 | } catch (const UniValue&) { |
49 | 0 | } |
50 | 0 | CBlockHeader block_header; |
51 | 0 | (void)DecodeHexBlockHeader(block_header, random_hex_string); |
52 | 0 | CBlock block; |
53 | 0 | (void)DecodeHexBlk(block, random_hex_string); |
54 | 0 | } |