blob: 54acf02f400b66a4290d9195f280e1615d51706a [file] [log] [blame]
jbroman16071562014-12-12 11:28:16 -08001/*
2 * Copyright 2013 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 "SkBitmap.h"
9#include "SkCanvas.h"
10#include "SkDocument.h"
11#include "SkImageInfo.h"
12#include "SkPixelRef.h"
13#include "SkRefCnt.h"
14#include "SkStream.h"
15
16#include "Test.h"
17
18namespace {
19
20// SkPixelRef which fails to lock, as a lazy pixel ref might if its pixels
21// cannot be generated.
22class InvalidPixelRef : public SkPixelRef {
23public:
24 InvalidPixelRef(const SkImageInfo& info) : SkPixelRef(info) {}
25private:
mtklein36352bf2015-03-25 18:17:31 -070026 bool onNewLockPixels(LockRec*) override { return false; }
27 void onUnlockPixels() override {
jbroman16071562014-12-12 11:28:16 -080028 SkDEBUGFAIL("InvalidPixelRef can't be locked");
29 }
30};
31
32SkBitmap make_invalid_bitmap(const SkImageInfo& imageInfo) {
33 SkBitmap bitmap;
34 bitmap.setInfo(imageInfo);
Hal Canary1b3387b2016-12-12 13:48:12 -050035 bitmap.setPixelRef(sk_make_sp<InvalidPixelRef>(imageInfo), 0 ,0);
jbroman16071562014-12-12 11:28:16 -080036 return bitmap;
37}
38
39SkBitmap make_invalid_bitmap(SkColorType colorType) {
40 return make_invalid_bitmap(
41 SkImageInfo::Make(100, 100, colorType, kPremul_SkAlphaType));
42}
43
44} // namespace
45
halcanary57f744e2016-09-09 11:41:59 -070046DEF_TEST(SkPDF_InvalidBitmap, reporter) {
jbroman16071562014-12-12 11:28:16 -080047 SkDynamicMemoryWStream stream;
halcanary4b656662016-04-27 07:45:18 -070048 sk_sp<SkDocument> document(SkDocument::MakePDF(&stream));
halcanary57f744e2016-09-09 11:41:59 -070049 if (!document) {
50 return;
51 }
jbroman16071562014-12-12 11:28:16 -080052 SkCanvas* canvas = document->beginPage(100, 100);
53
54 canvas->drawBitmap(SkBitmap(), 0, 0);
55 canvas->drawBitmap(make_invalid_bitmap(SkImageInfo()), 0, 0);
56 canvas->drawBitmap(make_invalid_bitmap(kN32_SkColorType), 0, 0);
57 canvas->drawBitmap(make_invalid_bitmap(kIndex_8_SkColorType), 0, 0);
58 canvas->drawBitmap(make_invalid_bitmap(kARGB_4444_SkColorType), 0, 0);
59 canvas->drawBitmap(make_invalid_bitmap(kRGB_565_SkColorType), 0, 0);
60 canvas->drawBitmap(make_invalid_bitmap(kAlpha_8_SkColorType), 0, 0);
61
62 // This test passes if it does not crash.
63}