blob: a771716a24dfef27ac42f28bad1a59fefb1625c1 [file] [log] [blame]
halcanarya096d7a2015-03-27 12:16:53 -07001/*
2 * Copyright 2015 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 "SkMD5.h"
12#include "Test.h"
13
14static SkStreamAsset* resource(const char path[]) {
15 SkString fullPath = GetResourcePath(path);
16 return SkStream::NewFromFile(fullPath.c_str());
17}
18
19static void md5(const SkBitmap& bm, SkMD5::Digest* digest) {
20 SkAutoLockPixels autoLockPixels(bm);
21 SkASSERT(bm.getPixels());
22 SkMD5 md5;
23 size_t rowLen = bm.info().bytesPerPixel() * bm.width();
24 for (int y = 0; y < bm.height(); ++y) {
25 md5.update(static_cast<uint8_t*>(bm.getAddr(0, y)), rowLen);
26 }
27 md5.finish(*digest);
28}
29
30static void check(skiatest::Reporter* r,
31 const char path[],
32 SkISize size,
scroggo58421542015-04-01 11:25:20 -070033 bool supportsScanlineDecoding) {
halcanarya096d7a2015-03-27 12:16:53 -070034 SkAutoTDelete<SkStream> stream(resource(path));
35 if (!stream) {
36 SkDebugf("Missing resource '%s'\n", path);
37 return;
38 }
scroggo58421542015-04-01 11:25:20 -070039 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromStream(stream.detach()));
40 if (!codec) {
halcanarya096d7a2015-03-27 12:16:53 -070041 ERRORF(r, "Unable to decode '%s'", path);
42 return;
43 }
msarett438b2ad2015-04-09 12:43:10 -070044
45 // This test is used primarily to verify rewinding works properly. Using kN32 allows
46 // us to test this without the added overhead of creating different bitmaps depending
47 // on the color type (ex: building a color table for kIndex8). DM is where we test
48 // decodes to all possible destination color types.
49 SkImageInfo info = codec->getInfo().makeColorType(kN32_SkColorType);
halcanarya096d7a2015-03-27 12:16:53 -070050 REPORTER_ASSERT(r, info.dimensions() == size);
51 SkBitmap bm;
52 bm.allocPixels(info);
53 SkAutoLockPixels autoLockPixels(bm);
54 SkImageGenerator::Result result =
scroggo58421542015-04-01 11:25:20 -070055 codec->getPixels(info, bm.getPixels(), bm.rowBytes(), NULL, NULL, NULL);
halcanarya096d7a2015-03-27 12:16:53 -070056 REPORTER_ASSERT(r, result == SkImageGenerator::kSuccess);
57
58 SkMD5::Digest digest1, digest2;
59 md5(bm, &digest1);
60
61 bm.eraseColor(SK_ColorYELLOW);
62
63 result =
scroggo58421542015-04-01 11:25:20 -070064 codec->getPixels(info, bm.getPixels(), bm.rowBytes(), NULL, NULL, NULL);
halcanarya096d7a2015-03-27 12:16:53 -070065
scroggo58421542015-04-01 11:25:20 -070066 REPORTER_ASSERT(r, result == SkImageGenerator::kSuccess);
67 // verify that re-decoding gives the same result.
68 md5(bm, &digest2);
69 REPORTER_ASSERT(r, digest1 == digest2);
70
71 SkScanlineDecoder* scanlineDecoder = codec->getScanlineDecoder(info);
72 if (supportsScanlineDecoding) {
73 bm.eraseColor(SK_ColorYELLOW);
74 REPORTER_ASSERT(r, scanlineDecoder);
75 for (int y = 0; y < info.height(); y++) {
76 result = scanlineDecoder->getScanlines(bm.getAddr(0, y), 1, 0);
77 REPORTER_ASSERT(r, result == SkImageGenerator::kSuccess);
78 }
79 // verify that scanline decoding gives the same result.
80 SkMD5::Digest digest3;
81 md5(bm, &digest3);
82 REPORTER_ASSERT(r, digest3 == digest1);
83 } else {
84 REPORTER_ASSERT(r, !scanlineDecoder);
halcanarya096d7a2015-03-27 12:16:53 -070085 }
86}
87
88DEF_TEST(Codec, r) {
89 // WBMP
scroggo58421542015-04-01 11:25:20 -070090 check(r, "mandrill.wbmp", SkISize::Make(512, 512), false);
halcanarya096d7a2015-03-27 12:16:53 -070091
92 // BMP
scroggo58421542015-04-01 11:25:20 -070093 check(r, "randPixels.bmp", SkISize::Make(8, 8), false);
halcanarya096d7a2015-03-27 12:16:53 -070094
95 // ICO
msarett68b204e2015-04-01 12:09:21 -070096 // These two tests examine interestingly different behavior:
97 // Decodes an embedded BMP image
scroggo58421542015-04-01 11:25:20 -070098 check(r, "color_wheel.ico", SkISize::Make(128, 128), false);
msarett68b204e2015-04-01 12:09:21 -070099 // Decodes an embedded PNG image
100 check(r, "google_chrome.ico", SkISize::Make(256, 256), false);
halcanarya096d7a2015-03-27 12:16:53 -0700101
msarett438b2ad2015-04-09 12:43:10 -0700102 // GIF
103 check(r, "box.gif", SkISize::Make(200, 55), false);
104 check(r, "color_wheel.gif", SkISize::Make(128, 128), false);
105 check(r, "randPixels.gif", SkISize::Make(8, 8), false);
106
halcanarya096d7a2015-03-27 12:16:53 -0700107 // PNG
scroggo3eada2a2015-04-01 09:33:23 -0700108 check(r, "arrow.png", SkISize::Make(187, 312), true);
109 check(r, "baby_tux.png", SkISize::Make(240, 246), true);
110 check(r, "color_wheel.png", SkISize::Make(128, 128), true);
111 check(r, "half-transparent-white-pixel.png", SkISize::Make(1, 1), true);
112 check(r, "mandrill_128.png", SkISize::Make(128, 128), true);
113 check(r, "mandrill_16.png", SkISize::Make(16, 16), true);
114 check(r, "mandrill_256.png", SkISize::Make(256, 256), true);
115 check(r, "mandrill_32.png", SkISize::Make(32, 32), true);
116 check(r, "mandrill_512.png", SkISize::Make(512, 512), true);
117 check(r, "mandrill_64.png", SkISize::Make(64, 64), true);
118 check(r, "plane.png", SkISize::Make(250, 126), true);
119 check(r, "randPixels.png", SkISize::Make(8, 8), true);
120 check(r, "yellow_rose.png", SkISize::Make(400, 301), true);
halcanarya096d7a2015-03-27 12:16:53 -0700121}
scroggo0a7e69c2015-04-03 07:22:22 -0700122
123static void test_invalid_stream(skiatest::Reporter* r, const void* stream, size_t len) {
124 SkCodec* codec = SkCodec::NewFromStream(new SkMemoryStream(stream, len, false));
125 // We should not have gotten a codec. Bots should catch us if we leaked anything.
126 REPORTER_ASSERT(r, !codec);
127}
128
129// Ensure that SkCodec::NewFromStream handles freeing the passed in SkStream,
130// even on failure. Test some bad streams.
131DEF_TEST(Codec_leaks, r) {
132 // No codec should claim this as their format, so this tests SkCodec::NewFromStream.
133 const char nonSupportedStream[] = "hello world";
134 // The other strings should look like the beginning of a file type, so we'll call some
135 // internal version of NewFromStream, which must also delete the stream on failure.
136 const unsigned char emptyPng[] = { 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a };
137 const unsigned char emptyJpeg[] = { 0xFF, 0xD8, 0xFF };
138 const char emptyWebp[] = "RIFF1234WEBPVP";
139 const char emptyBmp[] = { 'B', 'M' };
140 const char emptyIco[] = { '\x00', '\x00', '\x01', '\x00' };
141 const char emptyGif[] = "GIFVER";
142
143 test_invalid_stream(r, nonSupportedStream, sizeof(nonSupportedStream));
144 test_invalid_stream(r, emptyPng, sizeof(emptyPng));
145 test_invalid_stream(r, emptyJpeg, sizeof(emptyJpeg));
146 test_invalid_stream(r, emptyWebp, sizeof(emptyWebp));
147 test_invalid_stream(r, emptyBmp, sizeof(emptyBmp));
148 test_invalid_stream(r, emptyIco, sizeof(emptyIco));
149 test_invalid_stream(r, emptyGif, sizeof(emptyGif));
150}