LCOV - code coverage report
Current view: top level - src/test/fuzz - buffered_file.cpp (source / functions) Hit Total Coverage
Test: fuzz_coverage.info Lines: 42 42 100.0 %
Date: 2023-10-05 15:40:34 Functions: 9 9 100.0 %
Branches: 36 54 66.7 %

           Branch data     Line data    Source code
       1                 :            : // Copyright (c) 2020-2022 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 <streams.h>
       6                 :            : #include <test/fuzz/FuzzedDataProvider.h>
       7                 :            : #include <test/fuzz/fuzz.h>
       8                 :            : #include <test/fuzz/util.h>
       9                 :            : 
      10                 :            : #include <array>
      11                 :            : #include <cstdint>
      12                 :            : #include <iostream>
      13                 :            : #include <optional>
      14                 :            : #include <string>
      15                 :            : #include <vector>
      16                 :            : 
      17         [ -  + ]:        416 : FUZZ_TARGET(buffered_file)
      18                 :            : {
      19                 :         70 :     FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
      20                 :         70 :     FuzzedFileProvider fuzzed_file_provider = ConsumeFile(fuzzed_data_provider);
      21                 :         70 :     std::optional<BufferedFile> opt_buffered_file;
      22   [ +  -  -  + ]:         70 :     CAutoFile fuzzed_file{fuzzed_file_provider.open(), 0};
      23                 :            :     try {
      24   [ +  -  +  -  :         70 :         opt_buffered_file.emplace(fuzzed_file, fuzzed_data_provider.ConsumeIntegralInRange<uint64_t>(0, 4096), fuzzed_data_provider.ConsumeIntegralInRange<uint64_t>(0, 4096));
                   +  + ]
      25   [ +  -  +  - ]:        243 :     } catch (const std::ios_base::failure&) {
      26         [ +  - ]:          2 :     }
      27   [ +  +  +  -  :         70 :     if (opt_buffered_file && !fuzzed_file.IsNull()) {
                   +  + ]
      28                 :         67 :         bool setpos_fail = false;
      29   [ +  -  +  +  :      27971 :         LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 10000) {
                   +  + ]
      30         [ +  - ]:      27904 :             CallOneOf(
      31                 :            :                 fuzzed_data_provider,
      32                 :      29702 :                 [&] {
      33                 :       1798 :                     std::array<std::byte, 4096> arr{};
      34                 :            :                     try {
      35         [ +  + ]:       1798 :                         opt_buffered_file->read({arr.data(), fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 4096)});
      36         [ +  - ]:       1798 :                     } catch (const std::ios_base::failure&) {
      37                 :       1732 :                     }
      38                 :       3530 :                 },
      39                 :      27954 :                 [&] {
      40                 :         50 :                     opt_buffered_file->SetLimit(fuzzed_data_provider.ConsumeIntegralInRange<uint64_t>(0, 4096));
      41                 :         50 :                 },
      42                 :      31590 :                 [&] {
      43         [ +  + ]:       3686 :                     if (!opt_buffered_file->SetPos(fuzzed_data_provider.ConsumeIntegralInRange<uint64_t>(0, 4096))) {
      44                 :       3681 :                         setpos_fail = true;
      45                 :       3681 :                     }
      46                 :       3686 :                 },
      47                 :      28343 :                 [&] {
      48         [ +  + ]:        439 :                     if (setpos_fail) {
      49                 :            :                         // Calling FindByte(...) after a failed SetPos(...) call may result in an infinite loop.
      50                 :        397 :                         return;
      51                 :            :                     }
      52                 :            :                     try {
      53   [ +  -  +  + ]:         42 :                         opt_buffered_file->FindByte(std::byte(fuzzed_data_provider.ConsumeIntegral<uint8_t>()));
      54         [ +  - ]:         42 :                     } catch (const std::ios_base::failure&) {
      55                 :         41 :                     }
      56                 :        480 :                 },
      57                 :      49835 :                 [&] {
      58                 :      21931 :                     ReadFromStream(fuzzed_data_provider, *opt_buffered_file);
      59                 :      21931 :                 });
      60                 :      27904 :         }
      61   [ +  -  +  - ]:         67 :         opt_buffered_file->GetPos();
      62   [ +  -  +  - ]:         67 :         opt_buffered_file->GetVersion();
      63                 :         67 :     }
      64                 :         72 : }

Generated by: LCOV version 1.14