Coverage Report

Created: 2025-06-13 06:35

/src/firebase-ios-sdk/Firestore/fuzzing/resourcepath_fuzzer.cc
Line
Count
Source
1
/*
2
 * Copyright 2018 Google
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *      http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
17
#include <cstddef>
18
#include <cstdint>
19
#include <string>
20
21
#include "Firestore/core/src/model/resource_path.h"
22
23
using firebase::firestore::model::ResourcePath;
24
25
1.92k
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
26
1.92k
  const char* str_ptr = reinterpret_cast<const char*>(data);
27
1.92k
  std::string str{str_ptr, size};
28
29
1.92k
  try {
30
1.92k
    ResourcePath rp = ResourcePath::FromString(str);
31
1.92k
  } catch (...) {
32
    // Ignore caught errors and assertions.
33
111
  }
34
35
1.92k
  return 0;
36
1.92k
}