blob: 9543d4b2f5fcc1cb21c207f9fdbacb6cd049abf6 [file] [log] [blame]
scroggob61e2062014-11-10 13:12:25 -08001/*
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 "Test.h"
10#include "SkBitmap.h"
11#include "SkImageDecoder.h"
12#include "SkOSFile.h"
13
14DEF_TEST(BadIco, reporter) {
15 const char* const badIcos [] = {
16 "sigabort_favicon.ico",
17 "sigsegv_favicon.ico",
18 "sigsegv_favicon_2.ico",
msarett6e8f9032015-03-13 08:07:01 -070019 "ico_leak01.ico",
20 "ico_fuzz0.ico",
21 "ico_fuzz1.ico"
scroggob61e2062014-11-10 13:12:25 -080022 };
23
24 const char* badIcoFolder = "invalid_images";
25
26 SkString resourcePath = GetResourcePath(badIcoFolder);
27
28 SkBitmap bm;
29 for (size_t i = 0; i < SK_ARRAY_COUNT(badIcos); ++i) {
30 SkString fullPath = SkOSPath::Join(resourcePath.c_str(), badIcos[i]);
31 bool success = SkImageDecoder::DecodeFile(fullPath.c_str(), &bm);
32 // These files are invalid, and should not decode. More importantly,
33 // though, we reached here without crashing.
34 REPORTER_ASSERT(reporter, !success);
35 }
36}