blob: 9d686a5de448b863890daf022b6ce074f460dcc7 [file] [log] [blame]
caryclark@google.com07393ca2013-04-08 11:47:37 +00001/*
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#include "SkPathOpsBounds.h"
8#include "Test.h"
9
10static const SkRect sectTests[][2] = {
11 {{2, 0, 4, 1}, {4, 0, 6, 1}},
12 {{2, 0, 4, 1}, {3, 0, 5, 1}},
13 {{2, 0, 4, 1}, {3, 0, 5, 0}},
14 {{2, 0, 4, 1}, {3, 1, 5, 2}},
15 {{2, 1, 4, 2}, {1, 0, 5, 3}},
16 {{2, 1, 5, 3}, {3, 1, 4, 2}},
17 {{2, 0, 4, 1}, {3, 0, 3, 0}}, // intersecting an empty bounds is OK
18 {{2, 0, 4, 1}, {4, 1, 5, 2}}, // touching just on a corner is OK
19};
20
caryclark@google.comad65a3e2013-04-15 19:13:59 +000021static const size_t sectTestsCount = SK_ARRAY_COUNT(sectTests);
caryclark@google.com07393ca2013-04-08 11:47:37 +000022
23static const SkRect noSectTests[][2] = {
24 {{2, 0, 4, 1}, {5, 0, 6, 1}},
25 {{2, 0, 4, 1}, {3, 2, 5, 2}},
26};
27
caryclark@google.comad65a3e2013-04-15 19:13:59 +000028static const size_t noSectTestsCount = SK_ARRAY_COUNT(noSectTests);
caryclark@google.com07393ca2013-04-08 11:47:37 +000029
30static const SkRect reallyEmpty[] = {
31 {0, 0, 0, 0},
32 {1, 1, 1, 0},
33 {1, 1, 0, 1},
34 {1, 1, 0, 0},
35 {1, 2, 3, SK_ScalarNaN},
36};
37
caryclark@google.comad65a3e2013-04-15 19:13:59 +000038static const size_t emptyTestsCount = SK_ARRAY_COUNT(reallyEmpty);
caryclark@google.com07393ca2013-04-08 11:47:37 +000039
40static const SkRect notReallyEmpty[] = {
41 {0, 0, 1, 0},
42 {0, 0, 0, 1},
43 {0, 0, 1, 1},
44};
45
caryclark@google.comad65a3e2013-04-15 19:13:59 +000046static const size_t notEmptyTestsCount = SK_ARRAY_COUNT(notReallyEmpty);
caryclark@google.com07393ca2013-04-08 11:47:37 +000047
caryclark@google.comad65a3e2013-04-15 19:13:59 +000048static void PathOpsBoundsTest(skiatest::Reporter* reporter) {
caryclark@google.com07393ca2013-04-08 11:47:37 +000049 for (size_t index = 0; index < sectTestsCount; ++index) {
50 const SkPathOpsBounds& bounds1 = static_cast<const SkPathOpsBounds&>(sectTests[index][0]);
51 const SkPathOpsBounds& bounds2 = static_cast<const SkPathOpsBounds&>(sectTests[index][1]);
52 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2);
53 REPORTER_ASSERT(reporter, touches);
54 }
55 for (size_t index = 0; index < noSectTestsCount; ++index) {
56 const SkPathOpsBounds& bounds1 = static_cast<const SkPathOpsBounds&>(noSectTests[index][0]);
57 const SkPathOpsBounds& bounds2 = static_cast<const SkPathOpsBounds&>(noSectTests[index][1]);
58 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2);
59 REPORTER_ASSERT(reporter, !touches);
60 }
61 SkPathOpsBounds bounds;
62 bounds.setEmpty();
63 bounds.add(1, 2, 3, 4);
64 SkPathOpsBounds expected;
65 expected.set(0, 0, 3, 4);
66 REPORTER_ASSERT(reporter, bounds == expected);
67 bounds.setEmpty();
68 SkPathOpsBounds ordinal;
69 ordinal.set(1, 2, 3, 4);
70 bounds.add(ordinal);
71 REPORTER_ASSERT(reporter, bounds == expected);
72 SkPoint topLeft = {0, 0};
73 bounds.setPointBounds(topLeft);
74 SkPoint botRight = {3, 4};
75 bounds.add(botRight);
76 REPORTER_ASSERT(reporter, bounds == expected);
77 for (size_t index = 0; index < emptyTestsCount; ++index) {
78 const SkPathOpsBounds& bounds = static_cast<const SkPathOpsBounds&>(reallyEmpty[index]);
79 bool empty = bounds.isReallyEmpty();
80 REPORTER_ASSERT(reporter, empty);
81 }
82 for (size_t index = 0; index < notEmptyTestsCount; ++index) {
83 const SkPathOpsBounds& bounds = static_cast<const SkPathOpsBounds&>(notReallyEmpty[index]);
84 bool empty = bounds.isReallyEmpty();
85 REPORTER_ASSERT(reporter, !empty);
86 }
87 const SkPoint curvePts[] = {{0, 0}, {1, 2}, {3, 4}, {5, 6}};
88 bounds.setLineBounds(curvePts);
89 expected.set(0, 0, 1, 2);
90 REPORTER_ASSERT(reporter, bounds == expected);
91 (bounds.*SetCurveBounds[1])(curvePts);
92 REPORTER_ASSERT(reporter, bounds == expected);
93 bounds.setQuadBounds(curvePts);
94 expected.set(0, 0, 3, 4);
95 REPORTER_ASSERT(reporter, bounds == expected);
96 (bounds.*SetCurveBounds[2])(curvePts);
97 REPORTER_ASSERT(reporter, bounds == expected);
98 bounds.setCubicBounds(curvePts);
99 expected.set(0, 0, 5, 6);
100 REPORTER_ASSERT(reporter, bounds == expected);
101 (bounds.*SetCurveBounds[3])(curvePts);
102 REPORTER_ASSERT(reporter, bounds == expected);
103}
104
105#include "TestClassDef.h"
caryclark@google.comad65a3e2013-04-15 19:13:59 +0000106DEFINE_TESTCLASS_SHORT(PathOpsBoundsTest)