blob: f1427989aaa65a937e82a8cd0e29f917a97c59e4 [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <cstddef>
#include <cstdint>
#include <base/logging.h>
#include <fuzzer/FuzzedDataProvider.h>
#include "shill/http_url.h"
namespace shill {
class Environment {
public:
Environment() { logging::SetMinLogLevel(logging::LOGGING_FATAL); }
};
class HttpUrlFuzz {
public:
static void Run(const uint8_t* data, size_t size) {
const std::string fuzzed_str(reinterpret_cast<const char*>(data), size);
HttpUrl url_;
url_.ParseFromString(fuzzed_str);
}
};
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
static Environment env;
HttpUrlFuzz::Run(data, size);
return 0;
}
} // namespace shill