#include "remoting/base/protobuf_http_stream_parser.h"
#include <fuzzer/FuzzedDataProvider.h>
#include <stdint.h>
#include <memory>
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/test/bind.h"
#include "remoting/base/http_status.h"
class Environment {
public:
Environment() {
logging::SetMinLogLevel(logging::LOGGING_FATAL);
}
};
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
constexpr size_t kMaxInputSize = 100 * 1000;
static Environment env;
if (size > kMaxInputSize) {
return 0;
}
FuzzedDataProvider provider(data, size);
std::unique_ptr<remoting::ProtobufHttpStreamParser> parser;
auto on_stream_closed = [&](const remoting::HttpStatus&) { parser.reset(); };
parser = std::make_unique<remoting::ProtobufHttpStreamParser>(
base::DoNothing(),
base::BindLambdaForTesting(on_stream_closed));
while (parser && provider.remaining_bytes() > 0) {
parser->Append(provider.ConsumeRandomLengthString());
}
return 0;
}