3aa0fb4d80
DEPS: Update to pull v0.4.3 of libwebp from upstream gyp/libwebp.gyp: Add new files, as referenced by the gyp file used by Chromium. resource/tests: Add regression tests for particular images. BUG=skia:3442 BUG=skia:3315 BUG=skia:3429 Review URL: https://codereview.chromium.org/1178013008
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "Resources.h"
|
|
#include "Test.h"
|
|
#include "SkBitmap.h"
|
|
#include "SkImageDecoder.h"
|
|
#include "SkOSFile.h"
|
|
|
|
DEF_TEST(BadImage, reporter) {
|
|
const char* const badImages [] = {
|
|
"sigabort_favicon.ico",
|
|
"sigsegv_favicon.ico",
|
|
"sigsegv_favicon_2.ico",
|
|
"ico_leak01.ico",
|
|
"ico_fuzz0.ico",
|
|
"ico_fuzz1.ico",
|
|
"skbug3442.webp",
|
|
"skbug3429.webp",
|
|
};
|
|
|
|
const char* badImagesFolder = "invalid_images";
|
|
|
|
SkString resourcePath = GetResourcePath(badImagesFolder);
|
|
|
|
SkBitmap bm;
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(badImages); ++i) {
|
|
SkString fullPath = SkOSPath::Join(resourcePath.c_str(), badImages[i]);
|
|
bool success = SkImageDecoder::DecodeFile(fullPath.c_str(), &bm);
|
|
// These files are invalid, and should not decode. More importantly,
|
|
// though, we reached here without crashing.
|
|
REPORTER_ASSERT(reporter, !success);
|
|
}
|
|
}
|