2 * Copyright 2013 Google Inc.
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
10 #include "SkDocument.h"
11 #include "SkImageInfo.h"
12 #include "SkPixelRef.h"
20 // SkPixelRef which fails to lock, as a lazy pixel ref might if its pixels
21 // cannot be generated.
22 class InvalidPixelRef : public SkPixelRef {
24 InvalidPixelRef(const SkImageInfo& info) : SkPixelRef(info) {}
26 bool onNewLockPixels(LockRec*) SK_OVERRIDE { return false; }
27 void onUnlockPixels() SK_OVERRIDE {
28 SkDEBUGFAIL("InvalidPixelRef can't be locked");
32 SkBitmap make_invalid_bitmap(const SkImageInfo& imageInfo) {
34 bitmap.setInfo(imageInfo);
35 bitmap.setPixelRef(SkNEW_ARGS(InvalidPixelRef, (imageInfo)))->unref();
39 SkBitmap make_invalid_bitmap(SkColorType colorType) {
40 return make_invalid_bitmap(
41 SkImageInfo::Make(100, 100, colorType, kPremul_SkAlphaType));
46 DEF_TEST(PDFInvalidBitmap, reporter) {
47 SkDynamicMemoryWStream stream;
48 SkAutoTUnref<SkDocument> document(SkDocument::CreatePDF(&stream));
49 SkCanvas* canvas = document->beginPage(100, 100);
51 canvas->drawBitmap(SkBitmap(), 0, 0);
52 canvas->drawBitmap(make_invalid_bitmap(SkImageInfo()), 0, 0);
53 canvas->drawBitmap(make_invalid_bitmap(kN32_SkColorType), 0, 0);
54 canvas->drawBitmap(make_invalid_bitmap(kIndex_8_SkColorType), 0, 0);
55 canvas->drawBitmap(make_invalid_bitmap(kARGB_4444_SkColorType), 0, 0);
56 canvas->drawBitmap(make_invalid_bitmap(kRGB_565_SkColorType), 0, 0);
57 canvas->drawBitmap(make_invalid_bitmap(kAlpha_8_SkColorType), 0, 0);
59 // This test passes if it does not crash.