blob: 0d5c86236075e6609f6f0a2705022566eb706f7f [file] [log] [blame]
reed@google.com37f3ae02011-11-28 16:06:04 +00001/*
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +00002 * Copyright 2012 Google Inc.
reed@google.com37f3ae02011-11-28 16:06:04 +00003 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +00007
8/* Description:
9 * This test defines a series of elementatry test steps that perform
10 * a single or a small group of canvas API calls. Each test step is
11 * used in several test cases that verify that different types of SkCanvas
12 * flavors and derivatives pass it and yield consistent behavior. The
13 * test cases analyse results that are queryable through the API. They do
14 * not look at rendering results.
15 *
16 * Adding test stepss:
17 * The general pattern for creating a new test step is to write a test
18 * function of the form:
19 *
rmistry@google.comd6176b02012-08-23 18:14:13 +000020 * static void MyTestStepFunction(SkCanvas* canvas,
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +000021 * skiatest::Reporter* reporter,
22 * CanvasTestStep* testStep)
23 * {
24 * canvas->someCanvasAPImethod();
25 * (...)
26 * REPORTER_ASSERT_MESSAGE(reporter, (...), \
27 * testStep->assertMessage());
28 * }
29 *
30 * The definition of the test step function should be followed by an
31 * invocation of the TEST_STEP macro, which generates a class and
32 * instance for the test step:
33 *
34 * TEST_STEP(MyTestStep, MyTestStepFunction)
35 *
36 * There are also short hand macros for defining simple test steps
37 * in a single line of code. A simple test step is a one that is made
38 * of a single canvas API call.
39 *
40 * SIMPLE_TEST_STEP(MytestStep, someCanvasAPIMethod());
41 *
42 * There is another macro called SIMPLE_TEST_STEP_WITH_ASSERT that
43 * works the same way as SIMPLE_TEST_STEP, and additionally verifies
44 * that the invoked method returns a non-zero value.
45 */
reed@google.com37f3ae02011-11-28 16:06:04 +000046#include "SkBitmap.h"
47#include "SkCanvas.h"
reed687fa1c2015-04-07 08:00:56 -070048#include "SkClipStack.h"
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +000049#include "SkDeferredCanvas.h"
50#include "SkDevice.h"
halcanary3d32d502015-03-01 06:55:20 -080051#include "SkDocument.h"
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +000052#include "SkMatrix.h"
53#include "SkNWayCanvas.h"
54#include "SkPaint.h"
55#include "SkPath.h"
56#include "SkPicture.h"
57#include "SkPictureRecord.h"
robertphillips@google.com770963f2014-04-18 18:04:41 +000058#include "SkPictureRecorder.h"
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +000059#include "SkRect.h"
60#include "SkRegion.h"
61#include "SkShader.h"
62#include "SkStream.h"
reed@google.com28183b42014-02-04 15:34:10 +000063#include "SkSurface.h"
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +000064#include "SkTDArray.h"
65#include "Test.h"
reed@google.com37f3ae02011-11-28 16:06:04 +000066
piotaixrf05f5a72014-10-03 13:26:55 -070067static const int kWidth = 2, kHeight = 2;
68
69static void createBitmap(SkBitmap* bm, SkColor color) {
70 bm->allocN32Pixels(kWidth, kHeight);
71 bm->eraseColor(color);
72}
73
74static SkSurface* createSurface(SkColor color) {
reed3054be12014-12-10 07:24:28 -080075 SkSurface* surface = SkSurface::NewRasterN32Premul(kWidth, kHeight);
piotaixrf05f5a72014-10-03 13:26:55 -070076 surface->getCanvas()->clear(color);
77 return surface;
78}
79
80///////////////////////////////////////////////////////////////////////////////
81// Constants used by test steps
82const SkPoint kTestPoints[] = {
83 {SkIntToScalar(0), SkIntToScalar(0)},
84 {SkIntToScalar(2), SkIntToScalar(1)},
85 {SkIntToScalar(0), SkIntToScalar(2)}
86};
87const SkPoint kTestPoints2[] = {
88 { SkIntToScalar(0), SkIntToScalar(1) },
89 { SkIntToScalar(1), SkIntToScalar(1) },
90 { SkIntToScalar(2), SkIntToScalar(1) },
91 { SkIntToScalar(3), SkIntToScalar(1) },
92 { SkIntToScalar(4), SkIntToScalar(1) },
93 { SkIntToScalar(5), SkIntToScalar(1) },
94 { SkIntToScalar(6), SkIntToScalar(1) },
95 { SkIntToScalar(7), SkIntToScalar(1) },
96 { SkIntToScalar(8), SkIntToScalar(1) },
97 { SkIntToScalar(9), SkIntToScalar(1) },
98 { SkIntToScalar(10), SkIntToScalar(1) }
99};
100
101struct TestData {
102public:
103 TestData()
104 : fRect(SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
105 SkIntToScalar(2), SkIntToScalar(1)))
106 , fMatrix(TestMatrix())
107 , fPath(TestPath())
108 , fNearlyZeroLengthPath(TestNearlyZeroLengthPath())
109 , fIRect(SkIRect::MakeXYWH(0, 0, 2, 1))
110 , fRegion(TestRegion())
111 , fColor(0x01020304)
112 , fPoints(kTestPoints)
113 , fPointCount(3)
114 , fWidth(2)
115 , fHeight(2)
116 , fText("Hello World")
117 , fPoints2(kTestPoints2)
118 , fBitmap(TestBitmap())
119 { }
120
121 SkRect fRect;
tfarina567ff2f2015-04-27 07:01:44 -0700122 SkMatrix fMatrix;
piotaixrf05f5a72014-10-03 13:26:55 -0700123 SkPath fPath;
124 SkPath fNearlyZeroLengthPath;
125 SkIRect fIRect;
126 SkRegion fRegion;
127 SkColor fColor;
128 SkPaint fPaint;
129 const SkPoint* fPoints;
130 size_t fPointCount;
131 int fWidth;
132 int fHeight;
133 SkString fText;
134 const SkPoint* fPoints2;
135 SkBitmap fBitmap;
136
137private:
138 static SkMatrix TestMatrix() {
139 SkMatrix matrix;
140 matrix.reset();
141 matrix.setScale(SkIntToScalar(2), SkIntToScalar(3));
142
143 return matrix;
144 }
145 static SkPath TestPath() {
146 SkPath path;
147 path.addRect(SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
148 SkIntToScalar(2), SkIntToScalar(1)));
149 return path;
150 }
151 static SkPath TestNearlyZeroLengthPath() {
152 SkPath path;
153 SkPoint pt1 = { 0, 0 };
154 SkPoint pt2 = { 0, SK_ScalarNearlyZero };
155 SkPoint pt3 = { SkIntToScalar(1), 0 };
156 SkPoint pt4 = { SkIntToScalar(1), SK_ScalarNearlyZero/2 };
157 path.moveTo(pt1);
158 path.lineTo(pt2);
159 path.lineTo(pt3);
160 path.lineTo(pt4);
161 return path;
162 }
163 static SkRegion TestRegion() {
164 SkRegion region;
165 SkIRect rect = SkIRect::MakeXYWH(0, 0, 2, 1);
166 region.setRect(rect);
167 return region;
168 }
169 static SkBitmap TestBitmap() {
170 SkBitmap bitmap;
171 createBitmap(&bitmap, 0x05060708);
172 return bitmap;
173 }
174};
175
commit-bot@chromium.org5c70cdc2014-03-08 03:57:19 +0000176static bool equal_clips(const SkCanvas& a, const SkCanvas& b) {
177 if (a.isClipEmpty()) {
178 return b.isClipEmpty();
179 }
180 if (!a.isClipRect()) {
181 // this is liberally true, since we don't expose a way to know this exactly (for non-rects)
182 return !b.isClipRect();
183 }
184 SkIRect ar, br;
185 a.getClipDeviceBounds(&ar);
186 b.getClipDeviceBounds(&br);
187 return ar == br;
188}
189
reed@google.com90c07ea2012-04-13 13:50:27 +0000190class Canvas2CanvasClipVisitor : public SkCanvas::ClipVisitor {
191public:
192 Canvas2CanvasClipVisitor(SkCanvas* target) : fTarget(target) {}
193
mtklein36352bf2015-03-25 18:17:31 -0700194 void clipRect(const SkRect& r, SkRegion::Op op, bool aa) override {
reed@google.com90c07ea2012-04-13 13:50:27 +0000195 fTarget->clipRect(r, op, aa);
196 }
mtklein36352bf2015-03-25 18:17:31 -0700197 void clipRRect(const SkRRect& r, SkRegion::Op op, bool aa) override {
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000198 fTarget->clipRRect(r, op, aa);
199 }
mtklein36352bf2015-03-25 18:17:31 -0700200 void clipPath(const SkPath& p, SkRegion::Op op, bool aa) override {
reed@google.com90c07ea2012-04-13 13:50:27 +0000201 fTarget->clipPath(p, op, aa);
202 }
203
204private:
205 SkCanvas* fTarget;
206};
207
208static void test_clipVisitor(skiatest::Reporter* reporter, SkCanvas* canvas) {
209 SkISize size = canvas->getDeviceSize();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000210
reed@google.com90c07ea2012-04-13 13:50:27 +0000211 SkBitmap bm;
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +0000212 bm.setInfo(SkImageInfo::MakeN32Premul(size.width(), size.height()));
reed@google.com90c07ea2012-04-13 13:50:27 +0000213 SkCanvas c(bm);
214
215 Canvas2CanvasClipVisitor visitor(&c);
216 canvas->replayClips(&visitor);
217
commit-bot@chromium.org5c70cdc2014-03-08 03:57:19 +0000218 REPORTER_ASSERT(reporter, equal_clips(c, *canvas));
reed@google.com90c07ea2012-04-13 13:50:27 +0000219}
220
reed687fa1c2015-04-07 08:00:56 -0700221static void test_clipstack(skiatest::Reporter* reporter) {
222 // The clipstack is refcounted, and needs to be able to out-live the canvas if a client has
223 // ref'd it.
224 const SkClipStack* cs = NULL;
225 {
226 SkCanvas canvas(10, 10);
227 cs = SkRef(canvas.getClipStack());
228 }
229 REPORTER_ASSERT(reporter, cs->unique());
230 cs->unref();
231}
232
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000233// Format strings that describe the test context. The %s token is where
234// the name of the test step is inserted. The context is required for
235// disambiguating the error in the case of failures that are reported in
236// functions that are called multiple times in different contexts (test
237// cases and test steps).
238static const char* const kDefaultAssertMessageFormat = "%s";
rmistry@google.comd6176b02012-08-23 18:14:13 +0000239static const char* const kCanvasDrawAssertMessageFormat =
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000240 "Drawing test step %s with SkCanvas";
rmistry@google.comd6176b02012-08-23 18:14:13 +0000241static const char* const kDeferredDrawAssertMessageFormat =
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000242 "Drawing test step %s with SkDeferredCanvas";
rmistry@google.comd6176b02012-08-23 18:14:13 +0000243static const char* const kNWayDrawAssertMessageFormat =
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000244 "Drawing test step %s with SkNWayCanvas";
rmistry@google.comd6176b02012-08-23 18:14:13 +0000245static const char* const kDeferredPreFlushAssertMessageFormat =
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000246 "test step %s, SkDeferredCanvas state consistency before flush";
junov@chromium.orgcff01c52012-07-18 21:50:26 +0000247static const char* const kDeferredPostFlushPlaybackAssertMessageFormat =
248 "test step %s, SkDeferredCanvas playback canvas state consistency after flush";
junov@chromium.orgfb103892012-09-20 19:35:43 +0000249static const char* const kDeferredPostSilentFlushPlaybackAssertMessageFormat =
250 "test step %s, SkDeferredCanvas playback canvas state consistency after silent flush";
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000251static const char* const kNWayStateAssertMessageFormat =
252 "test step %s, SkNWayCanvas state consistency";
253static const char* const kNWayIndirect1StateAssertMessageFormat =
254 "test step %s, SkNWayCanvas indirect canvas 1 state consistency";
255static const char* const kNWayIndirect2StateAssertMessageFormat =
256 "test step %s, SkNWayCanvas indirect canvas 2 state consistency";
edisonn@google.com77909122012-10-18 15:58:23 +0000257static const char* const kPdfAssertMessageFormat =
258 "PDF sanity check failed %s";
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000259
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000260class CanvasTestStep;
261static SkTDArray<CanvasTestStep*>& testStepArray() {
262 static SkTDArray<CanvasTestStep*> theTests;
263 return theTests;
264}
265
266class CanvasTestStep {
267public:
edisonn@google.com77909122012-10-18 15:58:23 +0000268 CanvasTestStep(bool fEnablePdfTesting = true) {
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000269 *testStepArray().append() = this;
270 fAssertMessageFormat = kDefaultAssertMessageFormat;
edisonn@google.com77909122012-10-18 15:58:23 +0000271 this->fEnablePdfTesting = fEnablePdfTesting;
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000272 }
djsollen@google.come63793a2012-03-21 15:39:03 +0000273 virtual ~CanvasTestStep() { }
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000274
piotaixrf05f5a72014-10-03 13:26:55 -0700275 virtual void draw(SkCanvas*, const TestData&, skiatest::Reporter*) = 0;
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000276 virtual const char* name() const = 0;
277
278 const char* assertMessage() {
279 fAssertMessage.printf(fAssertMessageFormat, name());
280 return fAssertMessage.c_str();
281 }
282
283 void setAssertMessageFormat(const char* format) {
284 fAssertMessageFormat = format;
285 }
286
edisonn@google.com77909122012-10-18 15:58:23 +0000287 bool enablePdfTesting() { return fEnablePdfTesting; }
288
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000289private:
290 SkString fAssertMessage;
291 const char* fAssertMessageFormat;
edisonn@google.com77909122012-10-18 15:58:23 +0000292 bool fEnablePdfTesting;
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000293};
294
295///////////////////////////////////////////////////////////////////////////////
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000296// Macros for defining test steps
297
298#define TEST_STEP(NAME, FUNCTION) \
299class NAME##_TestStep : public CanvasTestStep{ \
300public: \
piotaixrf05f5a72014-10-03 13:26:55 -0700301 virtual void draw(SkCanvas* canvas, const TestData& d, \
302 skiatest::Reporter* reporter) { \
303 FUNCTION (canvas, d, reporter, this); \
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000304 } \
305 virtual const char* name() const {return #NAME ;} \
306}; \
307static NAME##_TestStep NAME##_TestStepInstance;
308
piotaixrf05f5a72014-10-03 13:26:55 -0700309#define TEST_STEP_NO_PDF(NAME, FUNCTION) \
edisonn@google.com77909122012-10-18 15:58:23 +0000310class NAME##_TestStep : public CanvasTestStep{ \
311public: \
312 NAME##_TestStep() : CanvasTestStep(false) {} \
piotaixrf05f5a72014-10-03 13:26:55 -0700313 virtual void draw(SkCanvas* canvas, const TestData& d, \
314 skiatest::Reporter* reporter) { \
315 FUNCTION (canvas, d, reporter, this); \
edisonn@google.com77909122012-10-18 15:58:23 +0000316 } \
317 virtual const char* name() const {return #NAME ;} \
318}; \
319static NAME##_TestStep NAME##_TestStepInstance;
320
piotaixrf05f5a72014-10-03 13:26:55 -0700321#define SIMPLE_TEST_STEP(NAME, CALL) \
322static void NAME##TestStep(SkCanvas* canvas, const TestData& d, \
323 skiatest::Reporter*, CanvasTestStep*) { \
324 canvas-> CALL ; \
325} \
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000326TEST_STEP(NAME, NAME##TestStep )
327
328#define SIMPLE_TEST_STEP_WITH_ASSERT(NAME, CALL) \
piotaixrf05f5a72014-10-03 13:26:55 -0700329static void NAME##TestStep(SkCanvas* canvas, const TestData& d, \
330 skiatest::Reporter*, CanvasTestStep* testStep) { \
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000331 REPORTER_ASSERT_MESSAGE(reporter, canvas-> CALL , \
332 testStep->assertMessage()); \
333} \
334TEST_STEP(NAME, NAME##TestStep )
335
336
337///////////////////////////////////////////////////////////////////////////////
rmistry@google.comd6176b02012-08-23 18:14:13 +0000338// Basic test steps for most virtual methods in SkCanvas that draw or affect
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000339// the state of the canvas.
340
commit-bot@chromium.org92362382014-03-18 12:51:48 +0000341SIMPLE_TEST_STEP(Translate, translate(SkIntToScalar(1), SkIntToScalar(2)));
342SIMPLE_TEST_STEP(Scale, scale(SkIntToScalar(1), SkIntToScalar(2)));
343SIMPLE_TEST_STEP(Rotate, rotate(SkIntToScalar(1)));
344SIMPLE_TEST_STEP(Skew, skew(SkIntToScalar(1), SkIntToScalar(2)));
piotaixrf05f5a72014-10-03 13:26:55 -0700345SIMPLE_TEST_STEP(Concat, concat(d.fMatrix));
346SIMPLE_TEST_STEP(SetMatrix, setMatrix(d.fMatrix));
347SIMPLE_TEST_STEP(ClipRect, clipRect(d.fRect));
348SIMPLE_TEST_STEP(ClipPath, clipPath(d.fPath));
349SIMPLE_TEST_STEP(ClipRegion, clipRegion(d.fRegion, SkRegion::kReplace_Op));
350SIMPLE_TEST_STEP(Clear, clear(d.fColor));
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000351
352///////////////////////////////////////////////////////////////////////////////
353// Complex test steps
354
piotaixrf05f5a72014-10-03 13:26:55 -0700355static void SaveMatrixClipStep(SkCanvas* canvas, const TestData& d,
356 skiatest::Reporter* reporter, CanvasTestStep* testStep) {
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000357 int saveCount = canvas->getSaveCount();
Florin Malita5f6102d2014-06-30 10:13:28 -0400358 canvas->save();
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000359 canvas->translate(SkIntToScalar(1), SkIntToScalar(2));
piotaixrf05f5a72014-10-03 13:26:55 -0700360 canvas->clipRegion(d.fRegion);
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000361 canvas->restore();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000362 REPORTER_ASSERT_MESSAGE(reporter, canvas->getSaveCount() == saveCount,
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000363 testStep->assertMessage());
rmistry@google.comd6176b02012-08-23 18:14:13 +0000364 REPORTER_ASSERT_MESSAGE(reporter, canvas->getTotalMatrix().isIdentity(),
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000365 testStep->assertMessage());
commit-bot@chromium.org5c70cdc2014-03-08 03:57:19 +0000366// REPORTER_ASSERT_MESSAGE(reporter, canvas->getTotalClip() != kTestRegion, testStep->assertMessage());
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000367}
368TEST_STEP(SaveMatrixClip, SaveMatrixClipStep);
369
piotaixrf05f5a72014-10-03 13:26:55 -0700370static void SaveLayerStep(SkCanvas* canvas, const TestData& d,
371 skiatest::Reporter* reporter, CanvasTestStep* testStep) {
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000372 int saveCount = canvas->getSaveCount();
373 canvas->saveLayer(NULL, NULL);
374 canvas->restore();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000375 REPORTER_ASSERT_MESSAGE(reporter, canvas->getSaveCount() == saveCount,
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000376 testStep->assertMessage());
377}
378TEST_STEP(SaveLayer, SaveLayerStep);
379
piotaixrf05f5a72014-10-03 13:26:55 -0700380static void BoundedSaveLayerStep(SkCanvas* canvas, const TestData& d,
381 skiatest::Reporter* reporter, CanvasTestStep* testStep) {
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000382 int saveCount = canvas->getSaveCount();
piotaixrf05f5a72014-10-03 13:26:55 -0700383 canvas->saveLayer(&d.fRect, NULL);
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000384 canvas->restore();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000385 REPORTER_ASSERT_MESSAGE(reporter, canvas->getSaveCount() == saveCount,
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000386 testStep->assertMessage());
387}
388TEST_STEP(BoundedSaveLayer, BoundedSaveLayerStep);
389
piotaixrf05f5a72014-10-03 13:26:55 -0700390static void PaintSaveLayerStep(SkCanvas* canvas, const TestData& d,
391 skiatest::Reporter* reporter, CanvasTestStep* testStep) {
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000392 int saveCount = canvas->getSaveCount();
piotaixrf05f5a72014-10-03 13:26:55 -0700393 canvas->saveLayer(NULL, &d.fPaint);
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000394 canvas->restore();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000395 REPORTER_ASSERT_MESSAGE(reporter, canvas->getSaveCount() == saveCount,
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000396 testStep->assertMessage());
397}
398TEST_STEP(PaintSaveLayer, PaintSaveLayerStep);
399
piotaixrf05f5a72014-10-03 13:26:55 -0700400static void TwoClipOpsStep(SkCanvas* canvas, const TestData& d,
401 skiatest::Reporter*, CanvasTestStep*) {
junov@chromium.orga6c9e0e2012-07-12 17:47:34 +0000402 // This test exercises a functionality in SkPicture that leads to the
rmistry@google.comd6176b02012-08-23 18:14:13 +0000403 // recording of restore offset placeholders. This test will trigger an
junov@chromium.orga6c9e0e2012-07-12 17:47:34 +0000404 // assertion at playback time if the placeholders are not properly
405 // filled when the recording ends.
piotaixrf05f5a72014-10-03 13:26:55 -0700406 canvas->clipRect(d.fRect);
407 canvas->clipRegion(d.fRegion);
junov@chromium.orga6c9e0e2012-07-12 17:47:34 +0000408}
409TEST_STEP(TwoClipOps, TwoClipOpsStep);
410
epoger@google.com94fa43c2012-04-11 17:51:01 +0000411// exercise fix for http://code.google.com/p/skia/issues/detail?id=560
412// ('SkPathStroker::lineTo() fails for line with length SK_ScalarNearlyZero')
piotaixrf05f5a72014-10-03 13:26:55 -0700413static void DrawNearlyZeroLengthPathTestStep(SkCanvas* canvas, const TestData& d,
414 skiatest::Reporter*, CanvasTestStep*) {
epoger@google.com94fa43c2012-04-11 17:51:01 +0000415 SkPaint paint;
416 paint.setStrokeWidth(SkIntToScalar(1));
417 paint.setStyle(SkPaint::kStroke_Style);
418
piotaixrf05f5a72014-10-03 13:26:55 -0700419 canvas->drawPath(d.fNearlyZeroLengthPath, paint);
epoger@google.com94fa43c2012-04-11 17:51:01 +0000420}
421TEST_STEP(DrawNearlyZeroLengthPath, DrawNearlyZeroLengthPathTestStep);
422
piotaixrf05f5a72014-10-03 13:26:55 -0700423static void DrawVerticesShaderTestStep(SkCanvas* canvas, const TestData& d,
424 skiatest::Reporter*, CanvasTestStep*) {
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000425 SkPoint pts[4];
426 pts[0].set(0, 0);
piotaixrf05f5a72014-10-03 13:26:55 -0700427 pts[1].set(SkIntToScalar(d.fWidth), 0);
428 pts[2].set(SkIntToScalar(d.fWidth), SkIntToScalar(d.fHeight));
429 pts[3].set(0, SkIntToScalar(d.fHeight));
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000430 SkPaint paint;
piotaixrf05f5a72014-10-03 13:26:55 -0700431 SkShader* shader = SkShader::CreateBitmapShader(d.fBitmap,
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000432 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode);
433 paint.setShader(shader)->unref();
434 canvas->drawVertices(SkCanvas::kTriangleFan_VertexMode, 4, pts, pts,
435 NULL, NULL, NULL, 0, paint);
436}
edisonn@google.com77909122012-10-18 15:58:23 +0000437// NYI: issue 240.
438TEST_STEP_NO_PDF(DrawVerticesShader, DrawVerticesShaderTestStep);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000439
piotaixrf05f5a72014-10-03 13:26:55 -0700440static void DrawPictureTestStep(SkCanvas* canvas, const TestData& d,
441 skiatest::Reporter*, CanvasTestStep*) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000442 SkPictureRecorder recorder;
piotaixrf05f5a72014-10-03 13:26:55 -0700443 SkCanvas* testCanvas = recorder.beginRecording(SkIntToScalar(d.fWidth), SkIntToScalar(d.fHeight),
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700444 NULL, 0);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000445 testCanvas->scale(SkIntToScalar(2), SkIntToScalar(1));
piotaixrf05f5a72014-10-03 13:26:55 -0700446 testCanvas->clipRect(d.fRect);
447 testCanvas->drawRect(d.fRect, d.fPaint);
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000448 SkAutoTUnref<SkPicture> testPicture(recorder.endRecording());
449
robertphillips9b14f262014-06-04 05:40:44 -0700450 canvas->drawPicture(testPicture);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000451}
452TEST_STEP(DrawPicture, DrawPictureTestStep);
453
piotaixrf05f5a72014-10-03 13:26:55 -0700454static void SaveRestoreTestStep(SkCanvas* canvas, const TestData& d,
455 skiatest::Reporter* reporter, CanvasTestStep* testStep) {
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000456 int baseSaveCount = canvas->getSaveCount();
tomhudson@google.com8afae612012-08-14 15:03:35 +0000457 int n = canvas->save();
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000458 REPORTER_ASSERT_MESSAGE(reporter, baseSaveCount == n, testStep->assertMessage());
459 REPORTER_ASSERT_MESSAGE(reporter, baseSaveCount + 1 == canvas->getSaveCount(),
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000460 testStep->assertMessage());
461 canvas->save();
462 canvas->save();
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000463 REPORTER_ASSERT_MESSAGE(reporter, baseSaveCount + 3 == canvas->getSaveCount(),
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000464 testStep->assertMessage());
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000465 canvas->restoreToCount(baseSaveCount + 1);
466 REPORTER_ASSERT_MESSAGE(reporter, baseSaveCount + 1 == canvas->getSaveCount(),
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000467 testStep->assertMessage());
468
469 // should this pin to 1, or be a no-op, or crash?
470 canvas->restoreToCount(0);
471 REPORTER_ASSERT_MESSAGE(reporter, 1 == canvas->getSaveCount(),
472 testStep->assertMessage());
473}
474TEST_STEP(SaveRestore, SaveRestoreTestStep);
475
piotaixrf05f5a72014-10-03 13:26:55 -0700476static void NestedSaveRestoreWithSolidPaintTestStep(SkCanvas* canvas, const TestData& d,
477 skiatest::Reporter*, CanvasTestStep*) {
reed@google.com3b3e8952012-08-16 20:53:31 +0000478 // This test step challenges the TestDeferredCanvasStateConsistency
479 // test cases because the opaque paint can trigger an optimization
480 // that discards previously recorded commands. The challenge is to maintain
481 // correct clip and matrix stack state.
482 canvas->resetMatrix();
483 canvas->rotate(SkIntToScalar(30));
484 canvas->save();
485 canvas->translate(SkIntToScalar(2), SkIntToScalar(1));
486 canvas->save();
487 canvas->scale(SkIntToScalar(3), SkIntToScalar(3));
488 SkPaint paint;
489 paint.setColor(0xFFFFFFFF);
490 canvas->drawPaint(paint);
491 canvas->restore();
492 canvas->restore();
493}
494TEST_STEP(NestedSaveRestoreWithSolidPaint, \
495 NestedSaveRestoreWithSolidPaintTestStep);
496
piotaixrf05f5a72014-10-03 13:26:55 -0700497static void NestedSaveRestoreWithFlushTestStep(SkCanvas* canvas, const TestData& d,
498 skiatest::Reporter*, CanvasTestStep*) {
reed@google.com3b3e8952012-08-16 20:53:31 +0000499 // This test step challenges the TestDeferredCanvasStateConsistency
500 // test case because the canvas flush on a deferred canvas will
501 // reset the recording session. The challenge is to maintain correct
502 // clip and matrix stack state on the playback canvas.
503 canvas->resetMatrix();
504 canvas->rotate(SkIntToScalar(30));
505 canvas->save();
506 canvas->translate(SkIntToScalar(2), SkIntToScalar(1));
507 canvas->save();
508 canvas->scale(SkIntToScalar(3), SkIntToScalar(3));
piotaixrf05f5a72014-10-03 13:26:55 -0700509 canvas->drawRect(d.fRect,d.fPaint);
reed@google.com3b3e8952012-08-16 20:53:31 +0000510 canvas->flush();
511 canvas->restore();
512 canvas->restore();
513}
piotaixrf05f5a72014-10-03 13:26:55 -0700514TEST_STEP(NestedSaveRestoreWithFlush, NestedSaveRestoreWithFlushTestStep);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000515
piotaixrf05f5a72014-10-03 13:26:55 -0700516static void AssertCanvasStatesEqual(skiatest::Reporter* reporter, const TestData& d,
517 const SkCanvas* canvas1, const SkCanvas* canvas2,
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000518 CanvasTestStep* testStep) {
519 REPORTER_ASSERT_MESSAGE(reporter, canvas1->getDeviceSize() ==
520 canvas2->getDeviceSize(), testStep->assertMessage());
521 REPORTER_ASSERT_MESSAGE(reporter, canvas1->getSaveCount() ==
522 canvas2->getSaveCount(), testStep->assertMessage());
reed@google.com3b3e8952012-08-16 20:53:31 +0000523
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000524 SkRect bounds1, bounds2;
525 REPORTER_ASSERT_MESSAGE(reporter,
reed@google.com3b3e8952012-08-16 20:53:31 +0000526 canvas1->getClipBounds(&bounds1) == canvas2->getClipBounds(&bounds2),
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000527 testStep->assertMessage());
528 REPORTER_ASSERT_MESSAGE(reporter, bounds1 == bounds2,
reed@google.com3b3e8952012-08-16 20:53:31 +0000529 testStep->assertMessage());
530
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000531 REPORTER_ASSERT_MESSAGE(reporter, canvas1->getDrawFilter() ==
532 canvas2->getDrawFilter(), testStep->assertMessage());
533 SkIRect deviceBounds1, deviceBounds2;
534 REPORTER_ASSERT_MESSAGE(reporter,
535 canvas1->getClipDeviceBounds(&deviceBounds1) ==
536 canvas2->getClipDeviceBounds(&deviceBounds2),
537 testStep->assertMessage());
reed868074b2014-06-03 10:53:59 -0700538 REPORTER_ASSERT_MESSAGE(reporter, deviceBounds1 == deviceBounds2, testStep->assertMessage());
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000539 REPORTER_ASSERT_MESSAGE(reporter, canvas1->getTotalMatrix() ==
540 canvas2->getTotalMatrix(), testStep->assertMessage());
commit-bot@chromium.org5c70cdc2014-03-08 03:57:19 +0000541 REPORTER_ASSERT_MESSAGE(reporter, equal_clips(*canvas1, *canvas2), testStep->assertMessage());
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000542
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000543 SkCanvas::LayerIter layerIter1(const_cast<SkCanvas*>(canvas1), false);
544 SkCanvas::LayerIter layerIter2(const_cast<SkCanvas*>(canvas2), false);
545 while (!layerIter1.done() && !layerIter2.done()) {
546 REPORTER_ASSERT_MESSAGE(reporter, layerIter1.matrix() ==
547 layerIter2.matrix(), testStep->assertMessage());
548 REPORTER_ASSERT_MESSAGE(reporter, layerIter1.clip() ==
549 layerIter2.clip(), testStep->assertMessage());
550 REPORTER_ASSERT_MESSAGE(reporter, layerIter1.paint() ==
551 layerIter2.paint(), testStep->assertMessage());
552 REPORTER_ASSERT_MESSAGE(reporter, layerIter1.x() ==
553 layerIter2.x(), testStep->assertMessage());
554 REPORTER_ASSERT_MESSAGE(reporter, layerIter1.y() ==
555 layerIter2.y(), testStep->assertMessage());
556 layerIter1.next();
557 layerIter2.next();
558 }
559 REPORTER_ASSERT_MESSAGE(reporter, layerIter1.done(),
560 testStep->assertMessage());
561 REPORTER_ASSERT_MESSAGE(reporter, layerIter2.done(),
562 testStep->assertMessage());
piotaixr76993ed2014-10-27 15:31:34 -0700563
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000564}
565
edisonn@google.com77909122012-10-18 15:58:23 +0000566static void TestPdfDevice(skiatest::Reporter* reporter,
piotaixrf05f5a72014-10-03 13:26:55 -0700567 const TestData& d,
edisonn@google.com77909122012-10-18 15:58:23 +0000568 CanvasTestStep* testStep) {
halcanary3d32d502015-03-01 06:55:20 -0800569 SkDynamicMemoryWStream outStream;
570 SkAutoTUnref<SkDocument> doc(SkDocument::CreatePDF(&outStream));
halcanary8ee06f22015-08-11 10:30:12 -0700571#if SK_SUPPORT_PDF
572 REPORTER_ASSERT(reporter, doc);
halcanary2ccdb632015-08-11 13:35:12 -0700573#else
574 REPORTER_ASSERT(reporter, !doc);
575#endif // SK_SUPPORT_PDF
576 if (!doc) {
577 return;
578 }
halcanary3d32d502015-03-01 06:55:20 -0800579 SkCanvas* canvas = doc->beginPage(SkIntToScalar(d.fWidth),
580 SkIntToScalar(d.fHeight));
581 REPORTER_ASSERT(reporter, canvas);
edisonn@google.com77909122012-10-18 15:58:23 +0000582 testStep->setAssertMessageFormat(kPdfAssertMessageFormat);
halcanary3d32d502015-03-01 06:55:20 -0800583 testStep->draw(canvas, d, reporter);
584
585 REPORTER_ASSERT(reporter, doc->close());
edisonn@google.com77909122012-10-18 15:58:23 +0000586}
587
junov@chromium.org88e29142012-08-07 16:48:22 +0000588// The following class groups static functions that need to access
589// the privates members of SkDeferredCanvas
590class SkDeferredCanvasTester {
591public:
592 static void TestDeferredCanvasStateConsistency(
593 skiatest::Reporter* reporter,
piotaixrf05f5a72014-10-03 13:26:55 -0700594 const TestData& d,
junov@chromium.org88e29142012-08-07 16:48:22 +0000595 CanvasTestStep* testStep,
junov@chromium.orgfb103892012-09-20 19:35:43 +0000596 const SkCanvas& referenceCanvas, bool silent) {
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000597
reed@google.com28183b42014-02-04 15:34:10 +0000598 SkAutoTUnref<SkSurface> surface(createSurface(0xFFFFFFFF));
599 SkAutoTUnref<SkDeferredCanvas> deferredCanvas(SkDeferredCanvas::Create(surface.get()));
600
junov@chromium.org88e29142012-08-07 16:48:22 +0000601 testStep->setAssertMessageFormat(kDeferredDrawAssertMessageFormat);
piotaixrf05f5a72014-10-03 13:26:55 -0700602 testStep->draw(deferredCanvas, d, reporter);
junov@chromium.org88e29142012-08-07 16:48:22 +0000603 testStep->setAssertMessageFormat(kDeferredPreFlushAssertMessageFormat);
piotaixrf05f5a72014-10-03 13:26:55 -0700604 AssertCanvasStatesEqual(reporter, d, deferredCanvas, &referenceCanvas, testStep);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000605
junov@chromium.orgfb103892012-09-20 19:35:43 +0000606 if (silent) {
junov@chromium.org66070a52013-05-28 17:39:08 +0000607 deferredCanvas->silentFlush();
junov@chromium.orgfb103892012-09-20 19:35:43 +0000608 } else {
junov@chromium.org66070a52013-05-28 17:39:08 +0000609 deferredCanvas->flush();
junov@chromium.orgfb103892012-09-20 19:35:43 +0000610 }
611
skia.committer@gmail.com4c5ea442012-09-21 02:01:01 +0000612 testStep->setAssertMessageFormat(
junov@chromium.orgfb103892012-09-20 19:35:43 +0000613 silent ? kDeferredPostSilentFlushPlaybackAssertMessageFormat :
junov@chromium.org88e29142012-08-07 16:48:22 +0000614 kDeferredPostFlushPlaybackAssertMessageFormat);
piotaixrf05f5a72014-10-03 13:26:55 -0700615 AssertCanvasStatesEqual(reporter, d, deferredCanvas->immediateCanvas(),
616 &referenceCanvas, testStep);
junov@chromium.orgcff01c52012-07-18 21:50:26 +0000617
junov@chromium.org88e29142012-08-07 16:48:22 +0000618 // Verified that deferred canvas state is not affected by flushing
619 // pending draw operations
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000620
junov@chromium.org88e29142012-08-07 16:48:22 +0000621 // The following test code is commented out because it currently fails.
622 // Issue: http://code.google.com/p/skia/issues/detail?id=496
623 /*
624 testStep->setAssertMessageFormat(kDeferredPostFlushAssertMessageFormat);
625 AssertCanvasStatesEqual(reporter, &deferredCanvas, &referenceCanvas,
626 testStep);
627 */
628 }
629};
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000630
caryclark@google.com42639cd2012-06-06 12:03:39 +0000631// unused
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000632static void TestNWayCanvasStateConsistency(
633 skiatest::Reporter* reporter,
piotaixrf05f5a72014-10-03 13:26:55 -0700634 const TestData& d,
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000635 CanvasTestStep* testStep,
636 const SkCanvas& referenceCanvas) {
637
638 SkBitmap indirectStore1;
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000639 createBitmap(&indirectStore1, 0xFFFFFFFF);
reed2a8ca932014-06-26 22:12:09 -0700640 SkCanvas indirectCanvas1(indirectStore1);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000641
642 SkBitmap indirectStore2;
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000643 createBitmap(&indirectStore2, 0xFFFFFFFF);
reed2a8ca932014-06-26 22:12:09 -0700644 SkCanvas indirectCanvas2(indirectStore2);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000645
djsollen@google.comf0a062b2012-05-01 16:50:25 +0000646 SkISize canvasSize = referenceCanvas.getDeviceSize();
647 SkNWayCanvas nWayCanvas(canvasSize.width(), canvasSize.height());
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000648 nWayCanvas.addCanvas(&indirectCanvas1);
649 nWayCanvas.addCanvas(&indirectCanvas2);
650
651 testStep->setAssertMessageFormat(kNWayDrawAssertMessageFormat);
piotaixrf05f5a72014-10-03 13:26:55 -0700652 testStep->draw(&nWayCanvas, d, reporter);
scroggo648238c2015-01-29 11:58:51 -0800653 // Verify that the SkNWayCanvas reports consitent state
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000654 testStep->setAssertMessageFormat(kNWayStateAssertMessageFormat);
piotaixrf05f5a72014-10-03 13:26:55 -0700655 AssertCanvasStatesEqual(reporter, d, &nWayCanvas, &referenceCanvas, testStep);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000656 // Verify that the indirect canvases report consitent state
657 testStep->setAssertMessageFormat(kNWayIndirect1StateAssertMessageFormat);
piotaixrf05f5a72014-10-03 13:26:55 -0700658 AssertCanvasStatesEqual(reporter, d, &indirectCanvas1, &referenceCanvas, testStep);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000659 testStep->setAssertMessageFormat(kNWayIndirect2StateAssertMessageFormat);
piotaixrf05f5a72014-10-03 13:26:55 -0700660 AssertCanvasStatesEqual(reporter, d, &indirectCanvas2, &referenceCanvas, testStep);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000661}
662
663/*
664 * This sub-test verifies that the test step passes when executed
665 * with SkCanvas and with classes derrived from SkCanvas. It also verifies
666 * that the all canvas derivatives report the same state as an SkCanvas
667 * after having executed the test step.
668 */
piotaixrf05f5a72014-10-03 13:26:55 -0700669static void TestOverrideStateConsistency(skiatest::Reporter* reporter, const TestData& d,
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000670 CanvasTestStep* testStep) {
671 SkBitmap referenceStore;
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000672 createBitmap(&referenceStore, 0xFFFFFFFF);
reed2a8ca932014-06-26 22:12:09 -0700673 SkCanvas referenceCanvas(referenceStore);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000674 testStep->setAssertMessageFormat(kCanvasDrawAssertMessageFormat);
piotaixrf05f5a72014-10-03 13:26:55 -0700675 testStep->draw(&referenceCanvas, d, reporter);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000676
piotaixrf05f5a72014-10-03 13:26:55 -0700677 SkDeferredCanvasTester::TestDeferredCanvasStateConsistency(reporter, d, testStep, referenceCanvas, false);
junov@chromium.orgfb103892012-09-20 19:35:43 +0000678
piotaixrf05f5a72014-10-03 13:26:55 -0700679 SkDeferredCanvasTester::TestDeferredCanvasStateConsistency(reporter, d, testStep, referenceCanvas, true);
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000680
caryclark@google.com42639cd2012-06-06 12:03:39 +0000681 // The following test code is disabled because SkNWayCanvas does not
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000682 // report correct clipping and device bounds information
683 // Issue: http://code.google.com/p/skia/issues/detail?id=501
caryclark@google.com42639cd2012-06-06 12:03:39 +0000684
685 if (false) { // avoid bit rot, suppress warning
piotaixrf05f5a72014-10-03 13:26:55 -0700686 TestNWayCanvasStateConsistency(reporter, d, testStep, referenceCanvas);
caryclark@google.com42639cd2012-06-06 12:03:39 +0000687 }
rmistry@google.comd6176b02012-08-23 18:14:13 +0000688
caryclark@google.com42639cd2012-06-06 12:03:39 +0000689 if (false) { // avoid bit rot, suppress warning
690 test_clipVisitor(reporter, &referenceCanvas);
691 }
reed687fa1c2015-04-07 08:00:56 -0700692 test_clipstack(reporter);
reed@google.com7c202932011-12-14 18:48:05 +0000693}
reed@google.com37f3ae02011-11-28 16:06:04 +0000694
commit-bot@chromium.org3107b6a2014-02-27 20:32:51 +0000695static void test_newraster(skiatest::Reporter* reporter) {
696 SkImageInfo info = SkImageInfo::MakeN32Premul(10, 10);
reed3054be12014-12-10 07:24:28 -0800697 const size_t minRowBytes = info.minRowBytes();
698 const size_t size = info.getSafeSize(minRowBytes);
699 SkAutoMalloc storage(size);
700 SkPMColor* baseAddr = static_cast<SkPMColor*>(storage.get());
701 sk_bzero(baseAddr, size);
702
703 SkCanvas* canvas = SkCanvas::NewRasterDirect(info, baseAddr, minRowBytes);
commit-bot@chromium.org3107b6a2014-02-27 20:32:51 +0000704 REPORTER_ASSERT(reporter, canvas);
705
706 SkImageInfo info2;
707 size_t rowBytes;
708 const SkPMColor* addr = (const SkPMColor*)canvas->peekPixels(&info2, &rowBytes);
709 REPORTER_ASSERT(reporter, addr);
710 REPORTER_ASSERT(reporter, info == info2);
reed3054be12014-12-10 07:24:28 -0800711 REPORTER_ASSERT(reporter, minRowBytes == rowBytes);
commit-bot@chromium.org3107b6a2014-02-27 20:32:51 +0000712 for (int y = 0; y < info.height(); ++y) {
713 for (int x = 0; x < info.width(); ++x) {
714 REPORTER_ASSERT(reporter, 0 == addr[x]);
715 }
716 addr = (const SkPMColor*)((const char*)addr + rowBytes);
717 }
718 SkDELETE(canvas);
719
720 // now try a deliberately bad info
reede5ea5002014-09-03 11:54:58 -0700721 info = info.makeWH(-1, info.height());
reed3054be12014-12-10 07:24:28 -0800722 REPORTER_ASSERT(reporter, NULL == SkCanvas::NewRasterDirect(info, baseAddr, minRowBytes));
commit-bot@chromium.org3107b6a2014-02-27 20:32:51 +0000723
724 // too big
reede5ea5002014-09-03 11:54:58 -0700725 info = info.makeWH(1 << 30, 1 << 30);
reed3054be12014-12-10 07:24:28 -0800726 REPORTER_ASSERT(reporter, NULL == SkCanvas::NewRasterDirect(info, baseAddr, minRowBytes));
skia.committer@gmail.com0e530752014-02-28 03:02:05 +0000727
commit-bot@chromium.org3107b6a2014-02-27 20:32:51 +0000728 // not a valid pixel type
reede5ea5002014-09-03 11:54:58 -0700729 info = SkImageInfo::Make(10, 10, kUnknown_SkColorType, info.alphaType());
reed3054be12014-12-10 07:24:28 -0800730 REPORTER_ASSERT(reporter, NULL == SkCanvas::NewRasterDirect(info, baseAddr, minRowBytes));
commit-bot@chromium.org3107b6a2014-02-27 20:32:51 +0000731
732 // We should succeed with a zero-sized valid info
733 info = SkImageInfo::MakeN32Premul(0, 0);
reed3054be12014-12-10 07:24:28 -0800734 canvas = SkCanvas::NewRasterDirect(info, baseAddr, minRowBytes);
commit-bot@chromium.org3107b6a2014-02-27 20:32:51 +0000735 REPORTER_ASSERT(reporter, canvas);
736 SkDELETE(canvas);
737}
738
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +0000739DEF_TEST(Canvas, reporter) {
piotaixrf05f5a72014-10-03 13:26:55 -0700740 TestData d;
reed@google.com37f3ae02011-11-28 16:06:04 +0000741
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000742 for (int testStep = 0; testStep < testStepArray().count(); testStep++) {
piotaixrf05f5a72014-10-03 13:26:55 -0700743 TestOverrideStateConsistency(reporter, d, testStepArray()[testStep]);
edisonn@google.com77909122012-10-18 15:58:23 +0000744 if (testStepArray()[testStep]->enablePdfTesting()) {
piotaixrf05f5a72014-10-03 13:26:55 -0700745 TestPdfDevice(reporter, d, testStepArray()[testStep]);
edisonn@google.com77909122012-10-18 15:58:23 +0000746 }
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000747 }
junov@chromium.orgcd62ecf2012-08-02 17:43:25 +0000748
commit-bot@chromium.org3107b6a2014-02-27 20:32:51 +0000749 test_newraster(reporter);
reed@google.com37f3ae02011-11-28 16:06:04 +0000750}
reedf0090cb2014-11-26 08:55:51 -0800751
752DEF_TEST(Canvas_SaveState, reporter) {
753 SkCanvas canvas(10, 10);
754 REPORTER_ASSERT(reporter, 1 == canvas.getSaveCount());
755
756 int n = canvas.save();
757 REPORTER_ASSERT(reporter, 1 == n);
758 REPORTER_ASSERT(reporter, 2 == canvas.getSaveCount());
759
760 n = canvas.saveLayer(NULL, NULL);
761 REPORTER_ASSERT(reporter, 2 == n);
762 REPORTER_ASSERT(reporter, 3 == canvas.getSaveCount());
763
764 canvas.restore();
765 REPORTER_ASSERT(reporter, 2 == canvas.getSaveCount());
766 canvas.restore();
767 REPORTER_ASSERT(reporter, 1 == canvas.getSaveCount());
768}
reedc1b11f12015-03-13 08:48:26 -0700769
770DEF_TEST(Canvas_ClipEmptyPath, reporter) {
771 SkCanvas canvas(10, 10);
772 canvas.save();
773 SkPath path;
774 canvas.clipPath(path);
775 canvas.restore();
776 canvas.save();
777 path.moveTo(5, 5);
778 canvas.clipPath(path);
779 canvas.restore();
780 canvas.save();
781 path.moveTo(7, 7);
782 canvas.clipPath(path); // should not assert here
783 canvas.restore();
784}