1 /*
2 * Copyright 2014 Google Inc.
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 "Resources.h"
9 #include "SkBitmap.h"
10 #include "SkCodec.h"
11 #include "SkOSPath.h"
12 #include "SkStream.h"
13 #include "SkString.h"
14 #include "SkTypes.h"
15 #include "Test.h"
16
17 #include <memory>
18 #include <utility>
19
DEF_TEST(BadImage,reporter)20 DEF_TEST(BadImage, reporter) {
21 const char* const badImages [] = {
22 "sigabort_favicon.ico",
23 "sigsegv_favicon.ico",
24 "sigsegv_favicon_2.ico",
25 "ico_leak01.ico",
26 "ico_fuzz0.ico",
27 "ico_fuzz1.ico",
28 "skbug3442.webp",
29 "skbug3429.webp",
30 "b38116746.ico",
31 };
32
33 const char* badImagesFolder = "invalid_images";
34
35 for (size_t i = 0; i < SK_ARRAY_COUNT(badImages); ++i) {
36 SkString resourcePath = SkOSPath::Join(badImagesFolder, badImages[i]);
37 std::unique_ptr<SkStream> stream(GetResourceAsStream(resourcePath.c_str()));
38 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream)));
39
40 // These images are corrupt. It's not important whether we succeed/fail in codec
41 // creation or decoding. We just want to make sure that we don't crash.
42 if (codec) {
43 SkBitmap bm;
44 bm.allocPixels(codec->getInfo());
45 codec->getPixels(codec->getInfo(), bm.getPixels(),
46 bm.rowBytes());
47 }
48 }
49 }
50