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.
|
|
|
|
*/
|
2013-12-12 21:11:12 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/private/SkFloatingPoint.h"
|
|
|
|
#include "include/utils/SkRandom.h"
|
|
|
|
#include "tests/Test.h"
|
2011-02-07 17:48:40 +00:00
|
|
|
|
2011-02-09 02:24:26 +00:00
|
|
|
static void check_invalid(skiatest::Reporter* reporter,
|
|
|
|
SkScalar l, SkScalar t, SkScalar r, SkScalar b) {
|
|
|
|
SkRect rect;
|
2019-08-24 23:39:13 +00:00
|
|
|
rect.setLTRB(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.
|
2013-12-12 21:11:12 +00:00
|
|
|
DEF_TEST(InfRect, reporter) {
|
2018-11-06 19:24:55 +00:00
|
|
|
float inf = SK_FloatInfinity;
|
|
|
|
float nan = SK_FloatNaN;
|
2012-05-16 13:35:36 +00:00
|
|
|
SkASSERT(!(nan == nan));
|
2011-02-09 02:24:26 +00:00
|
|
|
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
|