blob: a9923d6caa24d22e5dd009f478206d26e6dd5891 [file] [log] [blame]
caryclark@google.com818b0cc2013-04-08 11:50:46 +00001/*
2 * Copyright 2012 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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkBitmap.h"
9#include "include/core/SkCanvas.h"
10#include "include/core/SkMatrix.h"
11#include "include/core/SkPaint.h"
12#include "include/core/SkRegion.h"
13#include "include/core/SkStream.h"
14#include "include/private/SkMutex.h"
15#include "include/utils/SkParsePath.h"
16#include "tests/PathOpsDebug.h"
17#include "tests/PathOpsExtendedTest.h"
18#include "tests/PathOpsThreadedCommon.h"
caryclark@google.com818b0cc2013-04-08 11:50:46 +000019
bungeman60e0fee2015-08-26 05:15:46 -070020#include <stdlib.h>
Cary Clark4533f3d2018-08-08 09:48:09 -040021#include <vector>
22#include <string>
23#include <algorithm>
24
25std::vector<std::string> gUniqueNames;
bungeman60e0fee2015-08-26 05:15:46 -070026
caryclark@google.com818b0cc2013-04-08 11:50:46 +000027#ifdef SK_BUILD_FOR_MAC
28#include <sys/sysctl.h>
29#endif
30
Cary Clark389c5572017-04-14 07:46:07 -040031// std::to_string isn't implemented on android
32#include <sstream>
33
34template <typename T>
35std::string std_to_string(T value)
36{
37 std::ostringstream os ;
38 os << value ;
39 return os.str() ;
40}
41
caryclark55888e42016-07-18 10:01:36 -070042bool OpDebug(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result
43 SkDEBUGPARAMS(bool skipAssert)
44 SkDEBUGPARAMS(const char* testName));
45
46bool SimplifyDebug(const SkPath& one, SkPath* result
47 SkDEBUGPARAMS(bool skipAssert)
48 SkDEBUGPARAMS(const char* testName));
49
caryclark@google.com818b0cc2013-04-08 11:50:46 +000050static const char marker[] =
51 "</div>\n"
52 "\n"
53 "<script type=\"text/javascript\">\n"
54 "\n"
55 "var testDivs = [\n";
56
57static const char* opStrs[] = {
caryclark54359292015-03-26 07:52:43 -070058 "kDifference_SkPathOp",
59 "kIntersect_SkPathOp",
60 "kUnion_SkPathOp",
caryclark55888e42016-07-18 10:01:36 -070061 "kXOR_PathOp",
caryclark54359292015-03-26 07:52:43 -070062 "kReverseDifference_SkPathOp",
caryclark@google.com818b0cc2013-04-08 11:50:46 +000063};
64
65static const char* opSuffixes[] = {
66 "d",
67 "i",
68 "u",
caryclark@google.com66089e42013-04-10 15:55:37 +000069 "o",
caryclark55888e42016-07-18 10:01:36 -070070 "r",
caryclark@google.com818b0cc2013-04-08 11:50:46 +000071};
72
caryclarkd5b91732016-08-09 05:04:29 -070073enum class ExpectSuccess {
74 kNo,
75 kYes,
76 kFlaky
77};
78
79enum class SkipAssert {
80 kNo,
81 kYes
82};
83
84enum class ExpectMatch {
85 kNo,
86 kYes,
87 kFlaky
88};
89
caryclark@google.comcffbcc32013-06-04 17:59:42 +000090#if DEBUG_SHOW_TEST_NAME
91static void showPathData(const SkPath& path) {
caryclark@google.com07e97fc2013-07-08 17:17:02 +000092 SkPath::RawIter iter(path);
caryclark@google.com818b0cc2013-04-08 11:50:46 +000093 uint8_t verb;
94 SkPoint pts[4];
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000095 SkPoint firstPt = {0, 0}, lastPt = {0, 0};
caryclark@google.comfa2aeee2013-07-15 13:29:13 +000096 bool firstPtSet = false;
97 bool lastPtSet = true;
caryclark@google.com818b0cc2013-04-08 11:50:46 +000098 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
99 switch (verb) {
100 case SkPath::kMove_Verb:
caryclarkdac1d172014-06-17 05:15:38 -0700101 if (firstPtSet && lastPtSet && firstPt != lastPt) {
102 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", lastPt.fX, lastPt.fY,
103 firstPt.fX, firstPt.fY);
104 lastPtSet = false;
105 }
caryclark@google.comfa2aeee2013-07-15 13:29:13 +0000106 firstPt = pts[0];
107 firstPtSet = true;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000108 continue;
109 case SkPath::kLine_Verb:
caryclark@google.com66089e42013-04-10 15:55:37 +0000110 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", pts[0].fX, pts[0].fY,
111 pts[1].fX, pts[1].fY);
caryclark@google.comfa2aeee2013-07-15 13:29:13 +0000112 lastPt = pts[1];
113 lastPtSet = true;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000114 break;
115 case SkPath::kQuad_Verb:
116 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}},\n",
caryclark@google.com66089e42013-04-10 15:55:37 +0000117 pts[0].fX, pts[0].fY, pts[1].fX, pts[1].fY, pts[2].fX, pts[2].fY);
caryclark@google.comfa2aeee2013-07-15 13:29:13 +0000118 lastPt = pts[2];
119 lastPtSet = true;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000120 break;
caryclark54359292015-03-26 07:52:43 -0700121 case SkPath::kConic_Verb:
122 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}}, //weight=%1.9g\n",
123 pts[0].fX, pts[0].fY, pts[1].fX, pts[1].fY, pts[2].fX, pts[2].fY,
124 iter.conicWeight());
125 lastPt = pts[2];
126 lastPtSet = true;
127 break;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000128 case SkPath::kCubic_Verb:
129 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}},\n",
caryclark@google.com66089e42013-04-10 15:55:37 +0000130 pts[0].fX, pts[0].fY, pts[1].fX, pts[1].fY, pts[2].fX, pts[2].fY,
131 pts[3].fX, pts[3].fY);
caryclark@google.comfa2aeee2013-07-15 13:29:13 +0000132 lastPt = pts[3];
133 lastPtSet = true;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000134 break;
135 case SkPath::kClose_Verb:
caryclark@google.comfa2aeee2013-07-15 13:29:13 +0000136 if (firstPtSet && lastPtSet && firstPt != lastPt) {
137 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", lastPt.fX, lastPt.fY,
138 firstPt.fX, firstPt.fY);
139 }
140 firstPtSet = lastPtSet = false;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000141 break;
142 default:
143 SkDEBUGFAIL("bad verb");
144 return;
145 }
146 }
caryclarkdac1d172014-06-17 05:15:38 -0700147 if (firstPtSet && lastPtSet && firstPt != lastPt) {
148 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", lastPt.fX, lastPt.fY,
149 firstPt.fX, firstPt.fY);
150 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000151}
caryclark@google.comcffbcc32013-06-04 17:59:42 +0000152#endif
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000153
154void showOp(const SkPathOp op) {
155 switch (op) {
caryclark54359292015-03-26 07:52:43 -0700156 case kDifference_SkPathOp:
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000157 SkDebugf("op difference\n");
158 break;
caryclark54359292015-03-26 07:52:43 -0700159 case kIntersect_SkPathOp:
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000160 SkDebugf("op intersect\n");
161 break;
caryclark54359292015-03-26 07:52:43 -0700162 case kUnion_SkPathOp:
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000163 SkDebugf("op union\n");
164 break;
caryclark54359292015-03-26 07:52:43 -0700165 case kXOR_SkPathOp:
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000166 SkDebugf("op xor\n");
167 break;
caryclark54359292015-03-26 07:52:43 -0700168 case kReverseDifference_SkPathOp:
caryclark@google.com6dc7df62013-04-25 11:51:54 +0000169 SkDebugf("op reverse difference\n");
170 break;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000171 default:
172 SkASSERT(0);
173 }
174}
175
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000176#if DEBUG_SHOW_TEST_NAME
caryclark@google.com03610322013-04-18 15:58:21 +0000177static char hexorator(int x) {
178 if (x < 10) {
179 return x + '0';
180 }
181 x -= 10;
182 SkASSERT(x < 26);
183 return x + 'A';
184}
185#endif
186
187void ShowTestName(PathOpsThreadState* state, int a, int b, int c, int d) {
188#if DEBUG_SHOW_TEST_NAME
189 state->fSerialNo[0] = hexorator(state->fA);
190 state->fSerialNo[1] = hexorator(state->fB);
191 state->fSerialNo[2] = hexorator(state->fC);
192 state->fSerialNo[3] = hexorator(state->fD);
193 state->fSerialNo[4] = hexorator(a);
194 state->fSerialNo[5] = hexorator(b);
195 state->fSerialNo[6] = hexorator(c);
196 state->fSerialNo[7] = hexorator(d);
197 state->fSerialNo[8] = '\0';
198 SkDebugf("%s\n", state->fSerialNo);
199 if (strcmp(state->fSerialNo, state->fKey) == 0) {
Cary Clark389c5572017-04-14 07:46:07 -0400200 SkDebugf("%s\n", state->fPathStr.c_str());
caryclark@google.com03610322013-04-18 15:58:21 +0000201 }
202#endif
203}
204
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000205const int bitWidth = 64;
206const int bitHeight = 64;
207
208static void scaleMatrix(const SkPath& one, const SkPath& two, SkMatrix& scale) {
209 SkRect larger = one.getBounds();
210 larger.join(two.getBounds());
211 SkScalar largerWidth = larger.width();
212 if (largerWidth < 4) {
213 largerWidth = 4;
214 }
215 SkScalar largerHeight = larger.height();
216 if (largerHeight < 4) {
217 largerHeight = 4;
218 }
219 SkScalar hScale = (bitWidth - 2) / largerWidth;
220 SkScalar vScale = (bitHeight - 2) / largerHeight;
221 scale.reset();
222 scale.preScale(hScale, vScale);
caryclark26ad22a2015-10-16 09:03:38 -0700223 larger.fLeft *= hScale;
224 larger.fRight *= hScale;
225 larger.fTop *= vScale;
226 larger.fBottom *= vScale;
227 SkScalar dx = -16000 > larger.fLeft ? -16000 - larger.fLeft
228 : 16000 < larger.fRight ? 16000 - larger.fRight : 0;
229 SkScalar dy = -16000 > larger.fTop ? -16000 - larger.fTop
230 : 16000 < larger.fBottom ? 16000 - larger.fBottom : 0;
231 scale.postTranslate(dx, dy);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000232}
233
234static int pathsDrawTheSame(SkBitmap& bits, const SkPath& scaledOne, const SkPath& scaledTwo,
235 int& error2x2) {
236 if (bits.width() == 0) {
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000237 bits.allocN32Pixels(bitWidth * 2, bitHeight);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000238 }
239 SkCanvas canvas(bits);
240 canvas.drawColor(SK_ColorWHITE);
241 SkPaint paint;
242 canvas.save();
243 const SkRect& bounds1 = scaledOne.getBounds();
244 canvas.translate(-bounds1.fLeft + 1, -bounds1.fTop + 1);
245 canvas.drawPath(scaledOne, paint);
246 canvas.restore();
247 canvas.save();
248 canvas.translate(-bounds1.fLeft + 1 + bitWidth, -bounds1.fTop + 1);
249 canvas.drawPath(scaledTwo, paint);
250 canvas.restore();
251 int errors2 = 0;
252 int errors = 0;
253 for (int y = 0; y < bitHeight - 1; ++y) {
254 uint32_t* addr1 = bits.getAddr32(0, y);
255 uint32_t* addr2 = bits.getAddr32(0, y + 1);
256 uint32_t* addr3 = bits.getAddr32(bitWidth, y);
257 uint32_t* addr4 = bits.getAddr32(bitWidth, y + 1);
258 for (int x = 0; x < bitWidth - 1; ++x) {
259 // count 2x2 blocks
260 bool err = addr1[x] != addr3[x];
261 if (err) {
262 errors2 += addr1[x + 1] != addr3[x + 1]
263 && addr2[x] != addr4[x] && addr2[x + 1] != addr4[x + 1];
264 errors++;
265 }
266 }
267 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000268 error2x2 = errors2;
269 return errors;
270}
271
272static int pathsDrawTheSame(const SkPath& one, const SkPath& two, SkBitmap& bits, SkPath& scaledOne,
273 SkPath& scaledTwo, int& error2x2) {
274 SkMatrix scale;
275 scaleMatrix(one, two, scale);
276 one.transform(scale, &scaledOne);
277 two.transform(scale, &scaledTwo);
278 return pathsDrawTheSame(bits, scaledOne, scaledTwo, error2x2);
279}
280
281bool drawAsciiPaths(const SkPath& one, const SkPath& two, bool drawPaths) {
282 if (!drawPaths) {
283 return true;
284 }
285 const SkRect& bounds1 = one.getBounds();
286 const SkRect& bounds2 = two.getBounds();
287 SkRect larger = bounds1;
288 larger.join(bounds2);
289 SkBitmap bits;
290 char out[256];
reed@google.come1ca7052013-12-17 19:22:07 +0000291 int bitWidth = SkScalarCeilToInt(larger.width()) + 2;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000292 if (bitWidth * 2 + 1 >= (int) sizeof(out)) {
293 return false;
294 }
reed@google.come1ca7052013-12-17 19:22:07 +0000295 int bitHeight = SkScalarCeilToInt(larger.height()) + 2;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000296 if (bitHeight >= (int) sizeof(out)) {
297 return false;
298 }
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000299 bits.allocN32Pixels(bitWidth * 2, bitHeight);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000300 SkCanvas canvas(bits);
301 canvas.drawColor(SK_ColorWHITE);
302 SkPaint paint;
303 canvas.save();
304 canvas.translate(-bounds1.fLeft + 1, -bounds1.fTop + 1);
305 canvas.drawPath(one, paint);
306 canvas.restore();
307 canvas.save();
308 canvas.translate(-bounds1.fLeft + 1 + bitWidth, -bounds1.fTop + 1);
309 canvas.drawPath(two, paint);
310 canvas.restore();
311 for (int y = 0; y < bitHeight; ++y) {
312 uint32_t* addr1 = bits.getAddr32(0, y);
313 int x;
314 char* outPtr = out;
315 for (x = 0; x < bitWidth; ++x) {
316 *outPtr++ = addr1[x] == (uint32_t) -1 ? '_' : 'x';
317 }
318 *outPtr++ = '|';
319 for (x = bitWidth; x < bitWidth * 2; ++x) {
320 *outPtr++ = addr1[x] == (uint32_t) -1 ? '_' : 'x';
321 }
322 *outPtr++ = '\0';
323 SkDebugf("%s\n", out);
324 }
325 return true;
326}
327
caryclark54359292015-03-26 07:52:43 -0700328int comparePaths(skiatest::Reporter* reporter, const char* filename, const SkPath& one,
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000329 const SkPath& two, SkBitmap& bitmap) {
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000330 int errors2x2;
331 SkPath scaledOne, scaledTwo;
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000332 (void) pathsDrawTheSame(one, two, bitmap, scaledOne, scaledTwo, errors2x2);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000333 if (errors2x2 == 0) {
334 return 0;
335 }
336 const int MAX_ERRORS = 9;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000337 return errors2x2 > MAX_ERRORS ? errors2x2 : 0;
338}
339
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000340static SkTDArray<SkPathOp> gTestOp;
341
Cary Clark59d5a0e2017-01-23 14:38:52 +0000342static void showPathOpPath(const char* testName, const SkPath& one, const SkPath& two,
343 const SkPath& a, const SkPath& b, const SkPath& scaledOne, const SkPath& scaledTwo,
344 const SkPathOp shapeOp, const SkMatrix& scale) {
345 SkASSERT((unsigned) shapeOp < SK_ARRAY_COUNT(opStrs));
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000346 if (!testName) {
caryclark1049f122015-04-20 08:31:59 -0700347 testName = "xOp";
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000348 }
caryclark2bec26a2016-05-26 09:01:47 -0700349 SkDebugf("static void %s_%s(skiatest::Reporter* reporter, const char* filename) {\n",
350 testName, opSuffixes[shapeOp]);
Cary Clark59d5a0e2017-01-23 14:38:52 +0000351 *gTestOp.append() = shapeOp;
caryclark@google.comcffbcc32013-06-04 17:59:42 +0000352 SkDebugf(" SkPath path, pathB;\n");
caryclark19eb3b22014-07-18 05:08:14 -0700353 SkPathOpsDebug::ShowOnePath(a, "path", false);
354 SkPathOpsDebug::ShowOnePath(b, "pathB", false);
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000355 SkDebugf(" testPathOp(reporter, path, pathB, %s, filename);\n", opStrs[shapeOp]);
caryclark@google.comcffbcc32013-06-04 17:59:42 +0000356 SkDebugf("}\n");
caryclark26ad22a2015-10-16 09:03:38 -0700357 drawAsciiPaths(scaledOne, scaledTwo, true);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000358}
359
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000360static int comparePaths(skiatest::Reporter* reporter, const char* testName, const SkPath& one,
361 const SkPath& scaledOne, const SkPath& two, const SkPath& scaledTwo, SkBitmap& bitmap,
caryclark65f55312014-11-13 06:58:52 -0800362 const SkPath& a, const SkPath& b, const SkPathOp shapeOp, const SkMatrix& scale,
caryclarkd5b91732016-08-09 05:04:29 -0700363 ExpectMatch expectMatch) {
Herb Derby9c71e7b2019-06-17 14:40:42 -0400364 static SkMutex& compareDebugOut3 = *(new SkMutex);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000365 int errors2x2;
caryclark65f55312014-11-13 06:58:52 -0800366 const int MAX_ERRORS = 8;
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000367 (void) pathsDrawTheSame(bitmap, scaledOne, scaledTwo, errors2x2);
caryclarkd5b91732016-08-09 05:04:29 -0700368 if (ExpectMatch::kNo == expectMatch) {
caryclark38a017b2015-05-13 10:13:17 -0700369 if (errors2x2 < MAX_ERRORS) {
caryclark65f55312014-11-13 06:58:52 -0800370 REPORTER_ASSERT(reporter, 0);
371 }
372 return 0;
373 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000374 if (errors2x2 == 0) {
375 return 0;
376 }
caryclarkd5b91732016-08-09 05:04:29 -0700377 if (ExpectMatch::kYes == expectMatch && errors2x2 >= MAX_ERRORS) {
Herb Derby9c71e7b2019-06-17 14:40:42 -0400378 SkAutoMutexExclusive autoM(compareDebugOut3);
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000379 showPathOpPath(testName, one, two, a, b, scaledOne, scaledTwo, shapeOp, scale);
caryclarkaec25102015-04-29 08:28:30 -0700380 SkDebugf("\n/*");
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000381 REPORTER_ASSERT(reporter, 0);
caryclarkaec25102015-04-29 08:28:30 -0700382 SkDebugf(" */\n");
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000383 }
caryclark38a017b2015-05-13 10:13:17 -0700384 return errors2x2 >= MAX_ERRORS ? errors2x2 : 0;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000385}
386
commit-bot@chromium.org409774e2013-10-02 16:15:44 +0000387// Default values for when reporter->verbose() is false.
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000388static int testNumber = 55;
commit-bot@chromium.org409774e2013-10-02 16:15:44 +0000389static const char* testName = "pathOpTest";
caryclark@google.com66089e42013-04-10 15:55:37 +0000390
Cary Clark389c5572017-04-14 07:46:07 -0400391static void appendTestName(const char* nameSuffix, std::string& out) {
392 out += testName;
393 out += std_to_string(testNumber);
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000394 ++testNumber;
caryclark@google.com66089e42013-04-10 15:55:37 +0000395 if (nameSuffix) {
Ben Wagner561c1b02017-01-09 15:54:34 -0500396 out.append(nameSuffix);
caryclark@google.com66089e42013-04-10 15:55:37 +0000397 }
398}
399
Ben Wagner561c1b02017-01-09 15:54:34 -0500400static void appendTest(const char* pathStr, const char* pathPrefix, const char* nameSuffix,
Cary Clark389c5572017-04-14 07:46:07 -0400401 const char* testFunction, bool twoPaths, std::string& out) {
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000402#if 0
Ben Wagner561c1b02017-01-09 15:54:34 -0500403 out.append("\n<div id=\"");
404 appendTestName(nameSuffix, out);
405 out.append("\">\n");
caryclark@google.com66089e42013-04-10 15:55:37 +0000406 if (pathPrefix) {
Ben Wagner561c1b02017-01-09 15:54:34 -0500407 out.append(pathPrefix);
caryclark@google.com66089e42013-04-10 15:55:37 +0000408 }
Ben Wagner561c1b02017-01-09 15:54:34 -0500409 out.append(pathStr);
410 out.append("</div>\n\n");
caryclark@google.com66089e42013-04-10 15:55:37 +0000411
Ben Wagner561c1b02017-01-09 15:54:34 -0500412 out.append(marker);
413 out.append(" ");
414 appendTestName(nameSuffix, out);
415 out.append(",\n\n\n");
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000416#endif
Ben Wagner561c1b02017-01-09 15:54:34 -0500417 out.append("static void ");
418 appendTestName(nameSuffix, out);
419 out.append("(skiatest::Reporter* reporter) {\n SkPath path");
caryclark@google.com66089e42013-04-10 15:55:37 +0000420 if (twoPaths) {
Ben Wagner561c1b02017-01-09 15:54:34 -0500421 out.append(", pathB");
caryclark@google.com66089e42013-04-10 15:55:37 +0000422 }
Ben Wagner561c1b02017-01-09 15:54:34 -0500423 out.append(";\n");
caryclark@google.com66089e42013-04-10 15:55:37 +0000424 if (pathPrefix) {
Ben Wagner561c1b02017-01-09 15:54:34 -0500425 out.append(pathPrefix);
caryclark@google.com66089e42013-04-10 15:55:37 +0000426 }
Cary Clark389c5572017-04-14 07:46:07 -0400427 out += pathStr;
428 out += " ";
429 out += testFunction;
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000430#if 0
Ben Wagner561c1b02017-01-09 15:54:34 -0500431 out.append("static void (*firstTest)() = ");
432 appendTestName(nameSuffix, out);
433 out.append(";\n\n");
caryclark@google.com66089e42013-04-10 15:55:37 +0000434
Ben Wagner561c1b02017-01-09 15:54:34 -0500435 out.append("static struct {\n");
436 out.append(" void (*fun)();\n");
437 out.append(" const char* str;\n");
438 out.append("} tests[] = {\n");
439 out.append(" TEST(");
440 appendTestName(nameSuffix, out);
441 out.append("),\n");
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000442#endif
caryclark@google.com66089e42013-04-10 15:55:37 +0000443}
444
Cary Clarkda6289c2018-08-27 16:10:28 -0400445void markTestFlakyForPathKit() {
446 if (PathOpsDebug::gJson) {
447 SkASSERT(!PathOpsDebug::gMarkJsonFlaky);
448 PathOpsDebug::gMarkJsonFlaky = true;
449 }
450}
451
caryclark@google.com66089e42013-04-10 15:55:37 +0000452bool testSimplify(SkPath& path, bool useXor, SkPath& out, PathOpsThreadState& state,
453 const char* pathStr) {
Herb Derby9c71e7b2019-06-17 14:40:42 -0400454 static SkMutex& simplifyDebugOut = *(new SkMutex);
Mike Reed7d34dc72019-11-26 12:17:17 -0500455 SkPathFillType fillType = useXor ? SkPathFillType::kEvenOdd : SkPathFillType::kWinding;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000456 path.setFillType(fillType);
caryclark54359292015-03-26 07:52:43 -0700457 state.fReporter->bumpTestCount();
caryclark@google.com66560ca2013-04-26 19:51:16 +0000458 if (!Simplify(path, &out)) {
459 SkDebugf("%s did not expect failure\n", __FUNCTION__);
460 REPORTER_ASSERT(state.fReporter, 0);
461 return false;
462 }
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000463 if (!state.fReporter->verbose()) {
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000464 return true;
465 }
halcanary96fcdcc2015-08-27 07:41:13 -0700466 int result = comparePaths(state.fReporter, nullptr, path, out, *state.fBitmap);
caryclark54359292015-03-26 07:52:43 -0700467 if (result) {
Herb Derby9c71e7b2019-06-17 14:40:42 -0400468 SkAutoMutexExclusive autoM(simplifyDebugOut);
Cary Clark389c5572017-04-14 07:46:07 -0400469 std::string str;
halcanary96fcdcc2015-08-27 07:41:13 -0700470 const char* pathPrefix = nullptr;
471 const char* nameSuffix = nullptr;
Mike Reed7d34dc72019-11-26 12:17:17 -0500472 if (fillType == SkPathFillType::kEvenOdd) {
473 pathPrefix = " path.setFillType(SkPathFillType::kEvenOdd);\n";
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000474 nameSuffix = "x";
475 }
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000476 const char testFunction[] = "testSimplify(reporter, path);";
Ben Wagner561c1b02017-01-09 15:54:34 -0500477 appendTest(pathStr, pathPrefix, nameSuffix, testFunction, false, str);
Mike Reedff80c2a2017-01-07 11:16:28 -0500478 SkDebugf("%s", str.c_str());
caryclark@google.com66089e42013-04-10 15:55:37 +0000479 REPORTER_ASSERT(state.fReporter, 0);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000480 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000481 state.fReporter->bumpTestCount();
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000482 return result == 0;
483}
484
Cary Clark4533f3d2018-08-08 09:48:09 -0400485static void json_status(ExpectSuccess expectSuccess, ExpectMatch expectMatch, bool opSucceeded) {
486 fprintf(PathOpsDebug::gOut, " \"expectSuccess\": \"%s\",\n",
487 ExpectSuccess::kNo == expectSuccess ? "no" :
488 ExpectSuccess::kYes == expectSuccess ? "yes" : "flaky");
Cary Clarkda6289c2018-08-27 16:10:28 -0400489 if (PathOpsDebug::gMarkJsonFlaky) {
490 expectMatch = ExpectMatch::kFlaky;
491 PathOpsDebug::gMarkJsonFlaky = false;
492 }
Cary Clark4533f3d2018-08-08 09:48:09 -0400493 fprintf(PathOpsDebug::gOut, " \"expectMatch\": \"%s\",\n",
494 ExpectMatch::kNo == expectMatch ? "no" :
495 ExpectMatch::kYes == expectMatch ? "yes" : "flaky");
496 fprintf(PathOpsDebug::gOut, " \"succeeded\": %s,\n", opSucceeded ? "true" : "false");
497}
498
499static void json_path_out(const SkPath& path, const char* pathName, const char* fillTypeName,
500 bool lastField) {
501 char const * const gFillTypeStrs[] = {
502 "Winding",
503 "EvenOdd",
504 "InverseWinding",
505 "InverseEvenOdd",
506 };
Cary Clark9c9611f2018-08-08 13:17:25 -0400507 if (PathOpsDebug::gOutputSVG) {
508 SkString svg;
509 SkParsePath::ToSVGString(path, &svg);
510 fprintf(PathOpsDebug::gOut, " \"%s\": \"%s\",\n", pathName, svg.c_str());
511 } else {
512 SkPath::RawIter iter(path);
513 SkPath::Verb verb;
514 // MOVE, LINE, QUAD, CONIC, CUBIC, CLOSE
515 const int verbConst[] = { 0, 1, 2, 3, 4, 5 };
516 const int pointIndex[] = { 0, 1, 1, 1, 1, 0 };
517 const int pointCount[] = { 1, 2, 3, 3, 4, 0 };
518 fprintf(PathOpsDebug::gOut, " \"%s\": [", pathName);
519 bool first = true;
520 do {
521 SkPoint points[4];
522 verb = iter.next(points);
523 if (SkPath::kDone_Verb == verb) {
524 break;
525 }
526 if (first) {
527 first = false;
528 } else {
529 fprintf(PathOpsDebug::gOut, ",\n ");
530 }
531 int verbIndex = (int) verb;
532 fprintf(PathOpsDebug::gOut, "[%d", verbConst[verbIndex]);
533 for (int i = pointIndex[verbIndex]; i < pointCount[verbIndex]; ++i) {
534 fprintf(PathOpsDebug::gOut, ", \"0x%08x\", \"0x%08x\"",
535 SkFloat2Bits(points[i].fX), SkFloat2Bits(points[i].fY));
536 }
537 if (SkPath::kConic_Verb == verb) {
538 fprintf(PathOpsDebug::gOut, ", \"0x%08x\"", SkFloat2Bits(iter.conicWeight()));
539 }
540 fprintf(PathOpsDebug::gOut, "]");
541 } while (SkPath::kDone_Verb != verb);
542 fprintf(PathOpsDebug::gOut, "],\n");
543 }
Cary Clark4533f3d2018-08-08 09:48:09 -0400544 fprintf(PathOpsDebug::gOut, " \"fillType%s\": \"k%s_FillType\"%s", fillTypeName,
545 gFillTypeStrs[(int) path.getFillType()], lastField ? "\n}" : ",\n");
546}
547
548static bool check_for_duplicate_names(const char* testName) {
549 if (PathOpsDebug::gCheckForDuplicateNames) {
550 if (gUniqueNames.end() != std::find(gUniqueNames.begin(), gUniqueNames.end(),
551 std::string(testName))) {
552 SkDebugf(""); // convenience for setting breakpoints
553 }
554 gUniqueNames.push_back(std::string(testName));
555 return true;
556 }
557 return false;
558}
559
caryclark54359292015-03-26 07:52:43 -0700560static bool inner_simplify(skiatest::Reporter* reporter, const SkPath& path, const char* filename,
caryclark55888e42016-07-18 10:01:36 -0700561 ExpectSuccess expectSuccess, SkipAssert skipAssert, ExpectMatch expectMatch) {
caryclark54359292015-03-26 07:52:43 -0700562#if 0 && DEBUG_SHOW_TEST_NAME
caryclark@google.com03610322013-04-18 15:58:21 +0000563 showPathData(path);
564#endif
Cary Clark4533f3d2018-08-08 09:48:09 -0400565 if (PathOpsDebug::gJson) {
566 if (check_for_duplicate_names(filename)) {
567 return true;
568 }
569 if (!PathOpsDebug::gOutFirst) {
570 fprintf(PathOpsDebug::gOut, ",\n");
571 }
572 PathOpsDebug::gOutFirst = false;
573 fprintf(PathOpsDebug::gOut, "\"%s\": {\n", filename);
574 json_path_out(path, "path", "", false);
575 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000576 SkPath out;
caryclark55888e42016-07-18 10:01:36 -0700577 if (!SimplifyDebug(path, &out SkDEBUGPARAMS(SkipAssert::kYes == skipAssert)
578 SkDEBUGPARAMS(testName))) {
579 if (ExpectSuccess::kYes == expectSuccess) {
580 SkDebugf("%s did not expect %s failure\n", __FUNCTION__, filename);
581 REPORTER_ASSERT(reporter, 0);
582 }
Cary Clark4533f3d2018-08-08 09:48:09 -0400583 if (PathOpsDebug::gJson) {
584 json_status(expectSuccess, expectMatch, false);
585 fprintf(PathOpsDebug::gOut, " \"out\": \"\"\n}");
586 }
caryclark@google.com66560ca2013-04-26 19:51:16 +0000587 return false;
caryclark55888e42016-07-18 10:01:36 -0700588 } else {
589 if (ExpectSuccess::kNo == expectSuccess) {
590 SkDebugf("%s %s unexpected success\n", __FUNCTION__, filename);
591 REPORTER_ASSERT(reporter, 0);
592 }
Cary Clark4533f3d2018-08-08 09:48:09 -0400593 if (PathOpsDebug::gJson) {
594 json_status(expectSuccess, expectMatch, true);
595 json_path_out(out, "out", "Out", true);
596 }
caryclark@google.com66560ca2013-04-26 19:51:16 +0000597 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000598 SkBitmap bitmap;
caryclark54359292015-03-26 07:52:43 -0700599 int errors = comparePaths(reporter, filename, path, out, bitmap);
caryclark55888e42016-07-18 10:01:36 -0700600 if (ExpectMatch::kNo == expectMatch) {
caryclark54359292015-03-26 07:52:43 -0700601 if (!errors) {
602 SkDebugf("%s failing test %s now succeeds\n", __FUNCTION__, filename);
603 REPORTER_ASSERT(reporter, 0);
604 return false;
605 }
caryclarkd5b91732016-08-09 05:04:29 -0700606 } else if (ExpectMatch::kYes == expectMatch && errors) {
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000607 REPORTER_ASSERT(reporter, 0);
608 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000609 reporter->bumpTestCount();
caryclark54359292015-03-26 07:52:43 -0700610 return errors == 0;
611}
612
613bool testSimplify(skiatest::Reporter* reporter, const SkPath& path, const char* filename) {
caryclark55888e42016-07-18 10:01:36 -0700614 return inner_simplify(reporter, path, filename, ExpectSuccess::kYes, SkipAssert::kNo,
615 ExpectMatch::kYes);
616}
617
caryclark30b9fdd2016-08-31 14:36:29 -0700618bool testSimplifyFuzz(skiatest::Reporter* reporter, const SkPath& path, const char* filename) {
619 return inner_simplify(reporter, path, filename, ExpectSuccess::kFlaky, SkipAssert::kYes,
620 ExpectMatch::kFlaky);
caryclark54359292015-03-26 07:52:43 -0700621}
622
623bool testSimplifyCheck(skiatest::Reporter* reporter, const SkPath& path, const char* filename,
624 bool checkFail) {
caryclark55888e42016-07-18 10:01:36 -0700625 return inner_simplify(reporter, path, filename, checkFail ?
626 ExpectSuccess::kYes : ExpectSuccess::kNo, SkipAssert::kNo, ExpectMatch::kNo);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000627}
628
Cary Clark2587f412018-07-24 12:40:10 -0400629bool testSimplifyFail(skiatest::Reporter* reporter, const SkPath& path, const char* filename) {
630 return inner_simplify(reporter, path, filename,
631 ExpectSuccess::kNo, SkipAssert::kYes, ExpectMatch::kNo);
632}
633
caryclark@google.coma5e55922013-05-07 18:51:31 +0000634#if DEBUG_SHOW_TEST_NAME
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000635static void showName(const SkPath& a, const SkPath& b, const SkPathOp shapeOp) {
636 SkDebugf("\n");
637 showPathData(a);
638 showOp(shapeOp);
639 showPathData(b);
640}
641#endif
642
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000643static bool innerPathOp(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b,
caryclark55888e42016-07-18 10:01:36 -0700644 const SkPathOp shapeOp, const char* testName, ExpectSuccess expectSuccess,
645 SkipAssert skipAssert, ExpectMatch expectMatch) {
caryclark54359292015-03-26 07:52:43 -0700646#if 0 && DEBUG_SHOW_TEST_NAME
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000647 showName(a, b, shapeOp);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000648#endif
Cary Clarkf3949122018-08-07 16:38:21 -0400649 if (PathOpsDebug::gJson) {
Cary Clark4533f3d2018-08-08 09:48:09 -0400650 if (check_for_duplicate_names(testName)) {
651 return true;
652 }
Cary Clarkf3949122018-08-07 16:38:21 -0400653 if (!PathOpsDebug::gOutFirst) {
654 fprintf(PathOpsDebug::gOut, ",\n");
655 }
656 PathOpsDebug::gOutFirst = false;
657 fprintf(PathOpsDebug::gOut, "\"%s\": {\n", testName);
658 json_path_out(a, "p1", "1", false);
659 json_path_out(b, "p2", "2", false);
660 fprintf(PathOpsDebug::gOut, " \"op\": \"%s\",\n", opStrs[shapeOp]);
661 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000662 SkPath out;
caryclark55888e42016-07-18 10:01:36 -0700663 if (!OpDebug(a, b, shapeOp, &out SkDEBUGPARAMS(SkipAssert::kYes == skipAssert)
caryclarkdae6b972016-06-08 04:28:19 -0700664 SkDEBUGPARAMS(testName))) {
caryclark55888e42016-07-18 10:01:36 -0700665 if (ExpectSuccess::kYes == expectSuccess) {
666 SkDebugf("%s %s did not expect failure\n", __FUNCTION__, testName);
caryclark3f0753d2016-06-28 09:23:57 -0700667 REPORTER_ASSERT(reporter, 0);
668 }
Cary Clarkf3949122018-08-07 16:38:21 -0400669 if (PathOpsDebug::gJson) {
670 json_status(expectSuccess, expectMatch, false);
671 fprintf(PathOpsDebug::gOut, " \"out\": \"\"\n}");
672 }
caryclark@google.com66560ca2013-04-26 19:51:16 +0000673 return false;
caryclark55888e42016-07-18 10:01:36 -0700674 } else {
675 if (ExpectSuccess::kNo == expectSuccess) {
676 SkDebugf("%s %s unexpected success\n", __FUNCTION__, testName);
677 REPORTER_ASSERT(reporter, 0);
678 }
Cary Clarkf3949122018-08-07 16:38:21 -0400679 if (PathOpsDebug::gJson) {
680 json_status(expectSuccess, expectMatch, true);
681 json_path_out(out, "out", "Out", true);
682 }
caryclark@google.com66560ca2013-04-26 19:51:16 +0000683 }
caryclark54359292015-03-26 07:52:43 -0700684 if (!reporter->verbose()) {
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000685 return true;
686 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000687 SkPath pathOut, scaledPathOut;
688 SkRegion rgnA, rgnB, openClip, rgnOut;
Mike Reed92b33352019-08-24 19:39:13 -0400689 openClip.setRect({-16000, -16000, 16000, 16000});
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000690 rgnA.setPath(a, openClip);
691 rgnB.setPath(b, openClip);
692 rgnOut.op(rgnA, rgnB, (SkRegion::Op) shapeOp);
693 rgnOut.getBoundaryPath(&pathOut);
694
695 SkMatrix scale;
696 scaleMatrix(a, b, scale);
697 SkRegion scaledRgnA, scaledRgnB, scaledRgnOut;
698 SkPath scaledA, scaledB;
699 scaledA.addPath(a, scale);
700 scaledA.setFillType(a.getFillType());
701 scaledB.addPath(b, scale);
702 scaledB.setFillType(b.getFillType());
703 scaledRgnA.setPath(scaledA, openClip);
704 scaledRgnB.setPath(scaledB, openClip);
705 scaledRgnOut.op(scaledRgnA, scaledRgnB, (SkRegion::Op) shapeOp);
706 scaledRgnOut.getBoundaryPath(&scaledPathOut);
707 SkBitmap bitmap;
708 SkPath scaledOut;
709 scaledOut.addPath(out, scale);
710 scaledOut.setFillType(out.getFillType());
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000711 int result = comparePaths(reporter, testName, pathOut, scaledPathOut, out, scaledOut, bitmap,
caryclarkd5b91732016-08-09 05:04:29 -0700712 a, b, shapeOp, scale, expectMatch);
caryclark@google.com66089e42013-04-10 15:55:37 +0000713 reporter->bumpTestCount();
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000714 return result == 0;
715}
716
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000717bool testPathOp(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b,
caryclark65f55312014-11-13 06:58:52 -0800718 const SkPathOp shapeOp, const char* testName) {
caryclark55888e42016-07-18 10:01:36 -0700719 return innerPathOp(reporter, a, b, shapeOp, testName, ExpectSuccess::kYes, SkipAssert::kNo,
720 ExpectMatch::kYes);
caryclark65f55312014-11-13 06:58:52 -0800721}
722
723bool testPathOpCheck(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b,
724 const SkPathOp shapeOp, const char* testName, bool checkFail) {
caryclark55888e42016-07-18 10:01:36 -0700725 return innerPathOp(reporter, a, b, shapeOp, testName, checkFail ?
726 ExpectSuccess::kYes : ExpectSuccess::kNo, SkipAssert::kNo, ExpectMatch::kNo);
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000727}
728
caryclark30b9fdd2016-08-31 14:36:29 -0700729bool testPathOpFuzz(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b,
caryclarkd5b91732016-08-09 05:04:29 -0700730 const SkPathOp shapeOp, const char* testName) {
731 return innerPathOp(reporter, a, b, shapeOp, testName, ExpectSuccess::kFlaky, SkipAssert::kYes,
732 ExpectMatch::kFlaky);
733}
734
Cary Clark59d5a0e2017-01-23 14:38:52 +0000735bool testPathOpFail(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b,
736 const SkPathOp shapeOp, const char* testName) {
737#if DEBUG_SHOW_TEST_NAME
738 showName(a, b, shapeOp);
739#endif
740 SkPath orig;
741 orig.lineTo(54, 43);
742 SkPath out = orig;
743 if (Op(a, b, shapeOp, &out) ) {
744 SkDebugf("%s test is expected to fail\n", __FUNCTION__);
745 REPORTER_ASSERT(reporter, 0);
746 return false;
747 }
748 SkASSERT(out == orig);
749 return true;
750}
751
mtklein406654b2014-09-03 15:34:37 -0700752void initializeTests(skiatest::Reporter* reporter, const char* test) {
Herb Derby9c71e7b2019-06-17 14:40:42 -0400753 static SkMutex& mu = *(new SkMutex);
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000754 if (reporter->verbose()) {
Herb Derby9c71e7b2019-06-17 14:40:42 -0400755 SkAutoMutexExclusive lock(mu);
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000756 testName = test;
757 size_t testNameSize = strlen(test);
758 SkFILEStream inFile("../../experimental/Intersection/op.htm");
759 if (inFile.isValid()) {
760 SkTDArray<char> inData;
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000761 inData.setCount((int) inFile.getLength());
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000762 size_t inLen = inData.count();
763 inFile.read(inData.begin(), inLen);
Ben Wagner4d1955c2017-03-10 13:08:15 -0500764 inFile.close();
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000765 char* insert = strstr(inData.begin(), marker);
766 if (insert) {
767 insert += sizeof(marker) - 1;
768 const char* numLoc = insert + 4 /* indent spaces */ + testNameSize - 1;
769 testNumber = atoi(numLoc) + 1;
770 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000771 }
772 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000773}
774
Mike Reed7d34dc72019-11-26 12:17:17 -0500775void PathOpsThreadState::outputProgress(const char* pathStr, SkPathFillType pathFillType) {
caryclark@google.com66089e42013-04-10 15:55:37 +0000776 const char testFunction[] = "testSimplify(path);";
halcanary96fcdcc2015-08-27 07:41:13 -0700777 const char* pathPrefix = nullptr;
778 const char* nameSuffix = nullptr;
Mike Reed7d34dc72019-11-26 12:17:17 -0500779 if (pathFillType == SkPathFillType::kEvenOdd) {
780 pathPrefix = " path.setFillType(SkPathFillType::kEvenOdd);\n";
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000781 nameSuffix = "x";
782 }
Ben Wagner561c1b02017-01-09 15:54:34 -0500783 appendTest(pathStr, pathPrefix, nameSuffix, testFunction, false, fPathStr);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000784}
785
Mike Reedff80c2a2017-01-07 11:16:28 -0500786void PathOpsThreadState::outputProgress(const char* pathStr, SkPathOp op) {
caryclark@google.com66089e42013-04-10 15:55:37 +0000787 const char testFunction[] = "testOp(path);";
caryclark@google.comad65a3e2013-04-15 19:13:59 +0000788 SkASSERT((size_t) op < SK_ARRAY_COUNT(opSuffixes));
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000789 const char* nameSuffix = opSuffixes[op];
Ben Wagner561c1b02017-01-09 15:54:34 -0500790 appendTest(pathStr, nullptr, nameSuffix, testFunction, true, fPathStr);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000791}
792
793void RunTestSet(skiatest::Reporter* reporter, TestDesc tests[], size_t count,
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000794 void (*firstTest)(skiatest::Reporter* , const char* filename),
caryclark54359292015-03-26 07:52:43 -0700795 void (*skipTest)(skiatest::Reporter* , const char* filename),
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000796 void (*stopTest)(skiatest::Reporter* , const char* filename), bool reverse) {
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000797 size_t index;
798 if (firstTest) {
799 index = count - 1;
800 while (index > 0 && tests[index].fun != firstTest) {
801 --index;
802 }
caryclark@google.coma5e55922013-05-07 18:51:31 +0000803#if DEBUG_SHOW_TEST_NAME
caryclark54359292015-03-26 07:52:43 -0700804 SkDebugf("\n<div id=\"%s\">\n", tests[index].str);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000805#endif
commit-bot@chromium.org4431e772014-04-14 17:08:59 +0000806 (*tests[index].fun)(reporter, tests[index].str);
807 if (tests[index].fun == stopTest) {
808 return;
809 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000810 }
811 index = reverse ? count - 1 : 0;
812 size_t last = reverse ? 0 : count - 1;
caryclark54359292015-03-26 07:52:43 -0700813 bool foundSkip = !skipTest;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000814 do {
caryclark54359292015-03-26 07:52:43 -0700815 if (tests[index].fun == skipTest) {
816 foundSkip = true;
817 }
818 if (foundSkip && tests[index].fun != firstTest) {
caryclark@google.coma5e55922013-05-07 18:51:31 +0000819 #if DEBUG_SHOW_TEST_NAME
caryclark54359292015-03-26 07:52:43 -0700820 SkDebugf("\n<div id=\"%s\">\n", tests[index].str);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000821 #endif
caryclark30b9fdd2016-08-31 14:36:29 -0700822 (*tests[index].fun)(reporter, tests[index].str);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000823 }
caryclark03b03ca2015-04-23 09:13:37 -0700824 if (tests[index].fun == stopTest || index == last) {
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000825 break;
826 }
827 index += reverse ? -1 : 1;
828 } while (true);
caryclark03b03ca2015-04-23 09:13:37 -0700829#if DEBUG_SHOW_TEST_NAME
830 SkDebugf(
831 "\n"
832 "</div>\n"
833 "\n"
834 "<script type=\"text/javascript\">\n"
835 "\n"
836 "var testDivs = [\n"
837 );
838 index = reverse ? count - 1 : 0;
839 last = reverse ? 0 : count - 1;
840 foundSkip = !skipTest;
841 do {
842 if (tests[index].fun == skipTest) {
843 foundSkip = true;
844 }
845 if (foundSkip && tests[index].fun != firstTest) {
846 SkDebugf(" %s,\n", tests[index].str);
847 }
848 if (tests[index].fun == stopTest || index == last) {
849 break;
850 }
851 index += reverse ? -1 : 1;
852 } while (true);
853#endif
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000854}