blob: d2059d6dd0ec31ef0b4422c0ae830932540a0b1f [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 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 */
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00007
reed@android.combbff1d52009-06-05 16:21:03 +00008#include "SkParsePath.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +00009#include "Test.h"
reed@android.combbff1d52009-06-05 16:21:03 +000010
11static void test_to_from(skiatest::Reporter* reporter, const SkPath& path) {
12 SkString str, str2;
13 SkParsePath::ToSVGString(path, &str);
14
15 SkPath path2;
16 bool success = SkParsePath::FromSVGString(str.c_str(), &path2);
17 REPORTER_ASSERT(reporter, success);
18
19 SkParsePath::ToSVGString(path2, &str2);
20 REPORTER_ASSERT(reporter, str == str2);
21#if 0 // closed paths are not equal, the iter explicitly gives the closing
22 // edge, even if it is not in the path.
23 REPORTER_ASSERT(reporter, path == path2);
24 if (path != path2) {
25 SkDebugf("str1=%s\nstr2=%s\n", str.c_str(), str2.c_str());
26 }
27#endif
28}
29
caryclark@google.com42639cd2012-06-06 12:03:39 +000030static struct {
31 const char* fStr;
32 const SkRect fBounds;
33} gRec[] = {
caryclark52ee8132015-01-29 09:45:44 -080034 { "M1,1 l-2.58-2.828-3.82-0.113, 1.9-3.3223-1.08-3.6702, 3.75,0.7744,3.16-2.1551,"
35 "0.42,3.8008,3.02,2.3384-3.48,1.574-1.29,3.601z",
36 { -5.39999962f, -10.3142f, 5.77000046f, 1.f } },
caryclark@google.com42639cd2012-06-06 12:03:39 +000037 { "", { 0, 0, 0, 0 } },
38 { "M0,0L10,10", { 0, 0, SkIntToScalar(10), SkIntToScalar(10) } },
39 { "M-5.5,-0.5 Q 0 0 6,6.50",
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000040 { -5.5f, -0.5f,
41 6, 6.5f } }
caryclark@google.com42639cd2012-06-06 12:03:39 +000042};
43
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000044DEF_TEST(ParsePath, reporter) {
reed@android.combbff1d52009-06-05 16:21:03 +000045 for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); i++) {
46 SkPath path;
47 bool success = SkParsePath::FromSVGString(gRec[i].fStr, &path);
48 REPORTER_ASSERT(reporter, success);
49 const SkRect& expectedBounds = gRec[i].fBounds;
50 const SkRect& pathBounds = path.getBounds();
51 REPORTER_ASSERT(reporter, expectedBounds == pathBounds);
52
53 test_to_from(reporter, path);
54 }
rmistry@google.comd6176b02012-08-23 18:14:13 +000055
reed@android.combbff1d52009-06-05 16:21:03 +000056 SkRect r;
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000057 r.set(0, 0, 10, 10.5f);
reed@android.combbff1d52009-06-05 16:21:03 +000058 SkPath p;
59 p.addRect(r);
60 test_to_from(reporter, p);
61 p.addOval(r);
62 test_to_from(reporter, p);
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000063 p.addRoundRect(r, 4, 4.5f);
reed@android.combbff1d52009-06-05 16:21:03 +000064 test_to_from(reporter, p);
65}