Coverage Report

Created: 2025-06-13 06:35

/src/firebase-ios-sdk/Firestore/fuzzing/fieldpath_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/field_path.h"
22
#include "Firestore/core/src/util/statusor.h"
23
24
using firebase::firestore::model::FieldPath;
25
using firebase::firestore::util::StatusOr;
26
27
1.92k
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
28
1.92k
  const char* str_ptr = reinterpret_cast<const char*>(data);
29
1.92k
  std::string str{str_ptr, size};
30
31
1.92k
  try {
32
1.92k
    StatusOr<FieldPath> fp = FieldPath::FromServerFormat(str);
33
1.92k
  } catch (...) {
34
    // Ignore caught exceptions.
35
111
  }
36
1.92k
  return 0;
37
1.92k
}