blob: 0b183c245e10259f074de3305d141b4f82259098 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
epoger@google.com1fd56dc2011-06-15 18:04:58 +00008// Unit tests for src/core/SkPoint.cpp and its header
9
10#include "SkPoint.h"
reed@google.comc7d0ea32013-03-08 16:07:54 +000011#include "SkRect.h"
epoger@google.com1fd56dc2011-06-15 18:04:58 +000012#include "Test.h"
13
reed@google.comc7d0ea32013-03-08 16:07:54 +000014static void test_casts(skiatest::Reporter* reporter) {
15 SkPoint p = { 0, 0 };
16 SkRect r = { 0, 0, 0, 0 };
17
18 const SkScalar* pPtr = SkTCast<const SkScalar*>(&p);
19 const SkScalar* rPtr = SkTCast<const SkScalar*>(&r);
20
21 REPORTER_ASSERT(reporter, p.asScalars() == pPtr);
22 REPORTER_ASSERT(reporter, r.asScalars() == rPtr);
23}
24
epoger@google.com1fd56dc2011-06-15 18:04:58 +000025// Tests SkPoint::Normalize() for this (x,y)
26static void test_Normalize(skiatest::Reporter* reporter,
27 SkScalar x, SkScalar y) {
28 SkPoint point;
29 point.set(x, y);
30 SkScalar oldLength = point.length();
31 SkScalar returned = SkPoint::Normalize(&point);
32 SkScalar newLength = point.length();
bungeman@google.comb7b5d932012-08-24 19:53:58 +000033 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(returned, oldLength));
epoger@google.com1fd56dc2011-06-15 18:04:58 +000034 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(newLength, SK_Scalar1));
35}
36
reed@google.com5a5fe582013-05-03 15:59:39 +000037// Tests that SkPoint::length() and SkPoint::Length() both return
38// approximately expectedLength for this (x,y).
39static void test_length(skiatest::Reporter* reporter, SkScalar x, SkScalar y,
40 SkScalar expectedLength) {
41 SkPoint point;
42 point.set(x, y);
43 SkScalar s1 = point.length();
44 SkScalar s2 = SkPoint::Length(x, y);
45 //The following should be exactly the same, but need not be.
46 //See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=323
47 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, s2));
48 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, expectedLength));
skia.committer@gmail.comecc9d282013-05-04 07:01:15 +000049
reed@google.com5a5fe582013-05-03 15:59:39 +000050 test_Normalize(reporter, x, y);
51}
52
reed@google.com25720b42013-05-03 16:30:44 +000053// Ugh. Windows compiler can dive into other .cpp files, and sometimes
54// notices that I will generate an overflow... which is exactly the point
55// of this test!
56//
57// To avoid this warning, I need to convince the compiler that I might not
58// use that big value, hence this hacky helper function: reporter is
59// ALWAYS non-null. (shhhhhh, don't tell the compiler that).
60template <typename T> T get_value(skiatest::Reporter* reporter, T value) {
61 return reporter ? value : 0;
62}
63
reed@google.com5a5fe582013-05-03 15:59:39 +000064// test that we handle very large values correctly. i.e. that we can
65// successfully normalize something whose mag overflows a float.
66static void test_overflow(skiatest::Reporter* reporter) {
reed@google.com25720b42013-05-03 16:30:44 +000067 SkScalar bigFloat = get_value(reporter, SkFloatToScalar(3.4e38f));
68 SkPoint pt = { bigFloat, bigFloat };
skia.committer@gmail.comecc9d282013-05-04 07:01:15 +000069
reed@google.com5a5fe582013-05-03 15:59:39 +000070 SkScalar length = pt.length();
reed@google.comdc9cdf82013-05-03 18:11:00 +000071 // expect this to be non-finite, but dump the results if not.
72 if (SkScalarIsFinite(length)) {
73 SkDebugf("length(%g, %g) == %g\n", pt.fX, pt.fY, length);
74 REPORTER_ASSERT(reporter, !SkScalarIsFinite(length));
75 }
reed@google.com5a5fe582013-05-03 15:59:39 +000076
77 // this should succeed, even though we can't represent length
78 REPORTER_ASSERT(reporter, pt.setLength(SK_Scalar1));
79
80 // now that pt is normalized, we check its length
81 length = pt.length();
82 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(length, SK_Scalar1));
83}
84
85// test that we handle very small values correctly. i.e. that we can
86// report failure if we try to normalize them.
87static void test_underflow(skiatest::Reporter* reporter) {
88 SkPoint pt = { SkFloatToScalar(1.0e-37f), SkFloatToScalar(1.0e-37f) };
89 SkPoint copy = pt;
90
91 REPORTER_ASSERT(reporter, 0 == SkPoint::Normalize(&pt));
92 REPORTER_ASSERT(reporter, pt == copy); // pt is unchanged
93
94 REPORTER_ASSERT(reporter, !pt.setLength(SK_Scalar1));
95 REPORTER_ASSERT(reporter, pt == copy); // pt is unchanged
96}
97
caryclark@google.com42639cd2012-06-06 12:03:39 +000098static void PointTest(skiatest::Reporter* reporter) {
reed@google.comc7d0ea32013-03-08 16:07:54 +000099 test_casts(reporter);
100
reed@google.com5a5fe582013-05-03 15:59:39 +0000101 static const struct {
102 SkScalar fX;
103 SkScalar fY;
104 SkScalar fLength;
105 } gRec[] = {
106 { SkIntToScalar(3), SkIntToScalar(4), SkIntToScalar(5) },
107 { SkFloatToScalar(0.6f), SkFloatToScalar(0.8f), SK_Scalar1 },
108 };
skia.committer@gmail.comecc9d282013-05-04 07:01:15 +0000109
reed@google.com5a5fe582013-05-03 15:59:39 +0000110 for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); ++i) {
111 test_length(reporter, gRec[i].fX, gRec[i].fY, gRec[i].fLength);
112 }
113
114 test_underflow(reporter);
115 test_overflow(reporter);
epoger@google.com1fd56dc2011-06-15 18:04:58 +0000116}
117
118#include "TestClassDef.h"
119DEFINE_TESTCLASS("Point", PointTestClass, PointTest)