Coverage Report

Created: 2024-09-14 07:19

/src/skia/modules/skottie/fuzz/FuzzSkottieJSON.cpp
Line
Count
Source
1
/*
2
 * Copyright 2018 Google, LLC
3
 *
4
 * Use of this source code is governed by a BSD-style license that can be
5
 * found in the LICENSE file.
6
 */
7
8
#include "include/core/SkStream.h"
9
#include "modules/skottie/include/Skottie.h"
10
#include "tools/fonts/FontToolUtils.h"
11
12
9.92k
void FuzzSkottieJSON(const uint8_t *data, size_t size) {
13
9.92k
    SkMemoryStream stream(data, size);
14
9.92k
    auto animation = skottie::Animation::Make(&stream);
15
9.92k
    if (!animation) {
16
862
        return;
17
862
    }
18
9.06k
    animation->seek(0.1337f); // A "nothing up my sleeve" number
19
9.06k
}
20
21
#if defined(SK_BUILD_FOR_LIBFUZZER)
22
22.0k
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
23
22.0k
    ToolUtils::UsePortableFontMgr();
24
22.0k
    FuzzSkottieJSON(data, size);
25
22.0k
    return 0;
26
22.0k
}
27
#endif