Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: tests/BadIcoTest.cpp

Issue 712123002: Add tests (and fix!) for known bad ICO files. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/images/SkImageDecoder_libico.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/BadIcoTest.cpp
diff --git a/tests/BadIcoTest.cpp b/tests/BadIcoTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..566f3d68a25bb259185ea32231d45fb60c85a4de
--- /dev/null
+++ b/tests/BadIcoTest.cpp
@@ -0,0 +1,33 @@
+/*
+ * 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(BadIco, reporter) {
+ const char* const badIcos [] = {
+ "sigabort_favicon.ico",
+ "sigsegv_favicon.ico",
+ "sigsegv_favicon_2.ico",
+ };
+
+ const char* badIcoFolder = "invalid_images";
+
+ SkString resourcePath = GetResourcePath(badIcoFolder);
+
+ SkBitmap bm;
+ for (size_t i = 0; i < SK_ARRAY_COUNT(badIcos); ++i) {
+ SkString fullPath = SkOSPath::Join(resourcePath.c_str(), badIcos[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);
+ }
+}
« no previous file with comments | « src/images/SkImageDecoder_libico.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698