LCOV - code coverage report
Current view: top level - src/test/fuzz - script_interpreter.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 100.0 % 20 20
Test Date: 2024-09-01 05:20:30 Functions: 100.0 % 2 2
Branches: 59.4 % 32 19

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2020 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 <primitives/transaction.h>
       6                 :             : #include <script/interpreter.h>
       7                 :             : #include <test/fuzz/FuzzedDataProvider.h>
       8                 :             : #include <test/fuzz/fuzz.h>
       9                 :             : #include <test/fuzz/util.h>
      10                 :             : 
      11                 :             : #include <cstdint>
      12                 :             : #include <optional>
      13                 :             : #include <string>
      14                 :             : #include <vector>
      15                 :             : 
      16                 :             : bool CastToBool(const std::vector<unsigned char>& vch);
      17                 :             : 
      18   [ +  -  +  - ]:         777 : FUZZ_TARGET(script_interpreter)
      19                 :             : {
      20                 :         774 :     FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
      21                 :             :     {
      22                 :         774 :         const CScript script_code = ConsumeScript(fuzzed_data_provider);
      23                 :         774 :         const std::optional<CMutableTransaction> mtx = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider, TX_WITH_WITNESS);
      24         [ +  + ]:         774 :         if (mtx) {
      25         [ +  - ]:         478 :             const CTransaction tx_to{*mtx};
      26         [ +  - ]:         478 :             const unsigned int in = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
      27         [ +  + ]:         478 :             if (in < tx_to.vin.size()) {
      28   [ +  -  +  -  :         447 :                 (void)SignatureHash(script_code, tx_to, in, fuzzed_data_provider.ConsumeIntegral<int>(), ConsumeMoney(fuzzed_data_provider), fuzzed_data_provider.PickValueInArray({SigVersion::BASE, SigVersion::WITNESS_V0}), nullptr);
                   +  - ]
      29                 :         447 :                 const std::optional<CMutableTransaction> mtx_precomputed = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider, TX_WITH_WITNESS);
      30         [ +  + ]:         447 :                 if (mtx_precomputed) {
      31         [ +  - ]:         227 :                     const CTransaction tx_precomputed{*mtx_precomputed};
      32         [ +  - ]:         227 :                     const PrecomputedTransactionData precomputed_transaction_data{tx_precomputed};
      33   [ +  -  +  -  :         227 :                     (void)SignatureHash(script_code, tx_to, in, fuzzed_data_provider.ConsumeIntegral<int>(), ConsumeMoney(fuzzed_data_provider), fuzzed_data_provider.PickValueInArray({SigVersion::BASE, SigVersion::WITNESS_V0}), &precomputed_transaction_data);
                   +  - ]
      34                 :         227 :                 }
      35                 :         447 :             }
      36                 :         478 :         }
      37                 :         774 :     }
      38                 :             :     {
      39         [ +  - ]:         774 :         (void)CastToBool(ConsumeRandomLengthByteVector(fuzzed_data_provider));
      40                 :             :     }
      41                 :         774 : }
        

Generated by: LCOV version 2.0-1