2011-07-28 14:26:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2011-02-07 17:48:40 +00:00
|
|
|
#include "Test.h"
|
|
|
|
#include "SkRect.h"
|
|
|
|
|
2011-02-09 02:24:26 +00:00
|
|
|
#ifdef SK_SCALAR_IS_FLOAT
|
2011-02-07 19:08:59 +00:00
|
|
|
static float make_zero() {
|
|
|
|
return sk_float_sin(0);
|
|
|
|
}
|
2011-02-09 02:24:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static void check_invalid(skiatest::Reporter* reporter,
|
|
|
|
SkScalar l, SkScalar t, SkScalar r, SkScalar b) {
|
|
|
|
SkRect rect;
|
|
|
|
rect.set(l, t, r, b);
|
2011-12-06 18:56:37 +00:00
|
|
|
REPORTER_ASSERT(reporter, !rect.isFinite());
|
2011-02-09 02:24:26 +00:00
|
|
|
}
|
2011-02-07 19:08:59 +00:00
|
|
|
|
2011-12-06 18:56:37 +00:00
|
|
|
// Tests that isFinite() will reject any rect with +/-inf values
|
2011-02-07 17:48:40 +00:00
|
|
|
// as one of its coordinates.
|
|
|
|
static void TestInfRect(skiatest::Reporter* reporter) {
|
2011-02-09 02:24:26 +00:00
|
|
|
#ifdef SK_SCALAR_IS_FLOAT
|
2012-05-16 13:35:36 +00:00
|
|
|
float inf = 1 / make_zero(); // infinity
|
|
|
|
float nan = inf * 0;
|
|
|
|
SkASSERT(!(nan == nan));
|
2011-02-09 02:24:26 +00:00
|
|
|
#else
|
2012-05-16 13:35:36 +00:00
|
|
|
SkFixed inf = SK_FixedNaN;
|
|
|
|
SkFixed nan = SK_FixedNaN;
|
2011-02-09 02:24:26 +00:00
|
|
|
#endif
|
|
|
|
SkScalar small = SkIntToScalar(10);
|
|
|
|
SkScalar big = SkIntToScalar(100);
|
|
|
|
|
2012-05-16 13:35:36 +00:00
|
|
|
REPORTER_ASSERT(reporter, SkRect::MakeEmpty().isFinite());
|
|
|
|
|
2011-02-09 02:24:26 +00:00
|
|
|
SkRect rect = SkRect::MakeXYWH(small, small, big, big);
|
2011-12-06 18:56:37 +00:00
|
|
|
REPORTER_ASSERT(reporter, rect.isFinite());
|
2011-02-07 17:48:40 +00:00
|
|
|
|
2012-05-16 13:35:36 +00:00
|
|
|
const SkScalar invalid[] = { nan, inf, -inf };
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(invalid); ++i) {
|
|
|
|
check_invalid(reporter, small, small, big, invalid[i]);
|
|
|
|
check_invalid(reporter, small, small, invalid[i], big);
|
|
|
|
check_invalid(reporter, small, invalid[i], big, big);
|
|
|
|
check_invalid(reporter, invalid[i], small, big, big);
|
|
|
|
}
|
2011-02-07 17:48:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// need tests for SkStrSearch
|
|
|
|
|
|
|
|
#include "TestClassDef.h"
|
|
|
|
DEFINE_TESTCLASS("InfRect", InfRectTestClass, TestInfRect)
|