aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/GifTest.cpp
diff options
context:
space:
mode:
authorGravatar Leon Scroggins III <scroggo@google.com>2017-07-18 16:22:52 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-07-19 14:43:26 +0000
commite726e7ca0c99c75f447e6c22b7d341ce921c4e50 (patch)
tree209aa6a36236ab395c38810f1378c50e8a260b29 /tests/GifTest.cpp
parentd81977f51b865de191a859309055b8992f25698b (diff)
Report first GIF frame after knowing its meta data
Previously, we reported the first image as soon as it was available. As a result, in crrev.com/2565323003, InitializeNewFrame might be called before the metadata is known, meaning it would read the wrong metadata. Instead of looking at the imagesCount(), SkGifCodec::NewFromStream looks at frameContext(0), which may still exist even if it's not yet counted in imagesCount(). Add a test that confirms the desired behavior. Change-Id: Ib392721ecd2218ba0fcd35aaa64117c0ba3e4ea6 Reviewed-on: https://skia-review.googlesource.com/24405 Reviewed-by: Derek Sollenberger <djsollen@google.com> Commit-Queue: Leon Scroggins <scroggo@google.com>
Diffstat (limited to 'tests/GifTest.cpp')
-rw-r--r--tests/GifTest.cpp27
1 files changed, 25 insertions, 2 deletions
diff --git a/tests/GifTest.cpp b/tests/GifTest.cpp
index 7728d27dcb..5749df1be5 100644
--- a/tests/GifTest.cpp
+++ b/tests/GifTest.cpp
@@ -251,11 +251,34 @@ DEF_TEST(Gif_Sampled, r) {
// If a GIF file is truncated before the header for the first image is defined,
// we should not create an SkCodec.
DEF_TEST(Codec_GifTruncated, r) {
- SkString path = GetResourcePath("test640x479.gif");
- sk_sp<SkData> data(SkData::MakeFromFileName(path.c_str()));
+ sk_sp<SkData> data(GetResourceAsData("test640x479.gif"));
+ if (!data) {
+ return;
+ }
// This is right before the header for the first image.
data = SkData::MakeSubset(data.get(), 0, 446);
std::unique_ptr<SkCodec> codec(SkCodec::NewFromData(data));
REPORTER_ASSERT(r, !codec);
}
+
+DEF_TEST(Codec_GifTruncated2, r) {
+ sk_sp<SkData> data(GetResourceAsData("box.gif"));
+ if (!data) {
+ return;
+ }
+
+ // This is after the header, but before the color table.
+ data = SkData::MakeSubset(data.get(), 0, 23);
+ std::unique_ptr<SkCodec> codec(SkCodec::NewFromData(data));
+ if (!codec) {
+ ERRORF(r, "Failed to create codec with partial data");
+ return;
+ }
+
+ // Although we correctly created a codec, no frame is
+ // complete enough that it has its metadata. Returning 0
+ // ensures that Chromium will not try to create a frame
+ // too early.
+ REPORTER_ASSERT(r, codec->getFrameCount() == 0);
+}