blob: 3ade1a765b4d29e7deef21c94120dfbd69fbb452 [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 "Test.h"
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00009#include "TestClassDef.h"
reed@android.combbff1d52009-06-05 16:21:03 +000010#include "SkParsePath.h"
11
12static void test_to_from(skiatest::Reporter* reporter, const SkPath& path) {
13 SkString str, str2;
14 SkParsePath::ToSVGString(path, &str);
15
16 SkPath path2;
17 bool success = SkParsePath::FromSVGString(str.c_str(), &path2);
18 REPORTER_ASSERT(reporter, success);
19
20 SkParsePath::ToSVGString(path2, &str2);
21 REPORTER_ASSERT(reporter, str == str2);
22#if 0 // closed paths are not equal, the iter explicitly gives the closing
23 // edge, even if it is not in the path.
24 REPORTER_ASSERT(reporter, path == path2);
25 if (path != path2) {
26 SkDebugf("str1=%s\nstr2=%s\n", str.c_str(), str2.c_str());
27 }
28#endif
29}
30
caryclark@google.com42639cd2012-06-06 12:03:39 +000031static struct {
32 const char* fStr;
33 const SkRect fBounds;
34} gRec[] = {
35 { "", { 0, 0, 0, 0 } },
36 { "M0,0L10,10", { 0, 0, SkIntToScalar(10), SkIntToScalar(10) } },
37 { "M-5.5,-0.5 Q 0 0 6,6.50",
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000038 { -5.5f, -0.5f,
39 6, 6.5f } }
caryclark@google.com42639cd2012-06-06 12:03:39 +000040};
41
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000042DEF_TEST(ParsePath, reporter) {
reed@android.combbff1d52009-06-05 16:21:03 +000043 for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); i++) {
44 SkPath path;
45 bool success = SkParsePath::FromSVGString(gRec[i].fStr, &path);
46 REPORTER_ASSERT(reporter, success);
47 const SkRect& expectedBounds = gRec[i].fBounds;
48 const SkRect& pathBounds = path.getBounds();
49 REPORTER_ASSERT(reporter, expectedBounds == pathBounds);
50
51 test_to_from(reporter, path);
52 }
rmistry@google.comd6176b02012-08-23 18:14:13 +000053
reed@android.combbff1d52009-06-05 16:21:03 +000054 SkRect r;
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000055 r.set(0, 0, 10, 10.5f);
reed@android.combbff1d52009-06-05 16:21:03 +000056 SkPath p;
57 p.addRect(r);
58 test_to_from(reporter, p);
59 p.addOval(r);
60 test_to_from(reporter, p);
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000061 p.addRoundRect(r, 4, 4.5f);
reed@android.combbff1d52009-06-05 16:21:03 +000062 test_to_from(reporter, p);
63}