| // Copyright 2021 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #include <fuzzer/FuzzedDataProvider.h> |
| #include "base/at_exit.h" |
| #include "base/i18n/icu_util.h" |
| #include "extensions/common/url_pattern.h" |
| Environment() { CHECK(base::i18n::InitializeICU()); } |
| // Initialize the "at exit manager" singleton used by the tested code. |
| base::AtExitManager at_exit_manager; |
| extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { |
| FuzzedDataProvider fuzzed_data_provider(data, size); |
| /*valid_schemes=*/fuzzed_data_provider.ConsumeIntegral<int>()); |
| if (url_pattern.Parse(fuzzed_data_provider.ConsumeRandomLengthString()) != |
| URLPattern::ParseResult::kSuccess) { |
| GURL url(fuzzed_data_provider.ConsumeRandomLengthString()); |
| url_pattern.MatchesURL(url); |
| } // namespace extensions |