1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/************************************************************************
*
* Copyright (C) 2022-2024 IRCAD France
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#include "real_test.hpp"
#include <data/real.hpp>
#include <limits>
#include <numbers>
// Registers the fixture into the 'registry'
CPPUNIT_TEST_SUITE_REGISTRATION(sight::data::ut::real_test);
namespace sight::data::ut
{
//------------------------------------------------------------------------------
void real_test::setUp()
{
// Set up context before running a test.
}
//------------------------------------------------------------------------------
void real_test::tearDown()
{
// Clean up after the test run.
}
//------------------------------------------------------------------------------
void real_test::basic()
{
{
sight::data::real r;
CPPUNIT_ASSERT(r.is_type_of("sight::data::real"));
CPPUNIT_ASSERT(r.is_type_of("sight::data::string_serializable"));
}
constexpr std::array values = {std::numbers::pi, 0.0, 2.04, 10., std::numeric_limits<double>::infinity()};
constexpr std::array nan_values = {
std::numeric_limits<double>::quiet_NaN(),
std::numeric_limits<double>::signaling_NaN()
};
for(double value : values)
{
auto d0 = std::make_shared<data::real>();
d0->value() = value;
auto d1 = std::make_shared<data::real>(value);
auto d2 = std::make_shared<data::real>(value + 0.1);
auto d3 = std::make_shared<data::real>();
d3->shallow_copy(d1);
auto d4 = std::make_shared<data::real>();
d4->deep_copy(d1);
CPPUNIT_ASSERT(*d0 == *d1);
if(std::isinf(value))
{
CPPUNIT_ASSERT(*d0 == *d2);
}
else
{
CPPUNIT_ASSERT(*d0 != *d2);
}
CPPUNIT_ASSERT_EQUAL(value, d0->value());
CPPUNIT_ASSERT_EQUAL(value, d1->value());
CPPUNIT_ASSERT_EQUAL(value, std::make_shared<data::real>(value)->value());
CPPUNIT_ASSERT_EQUAL(value, d3->value());
CPPUNIT_ASSERT_EQUAL(value, d4->value());
}
for(double value : nan_values)
{
auto d0 = std::make_shared<data::real>();
d0->value() = value;
auto d1 = std::make_shared<data::real>(value);
auto d2 = std::make_shared<data::real>();
d2->shallow_copy(d1);
auto d3 = std::make_shared<data::real>();
d3->deep_copy(d1);
// Our implementation of "==" operator for NaN is not the same as the one of the C++ standard
CPPUNIT_ASSERT(*d0 == *d1);
CPPUNIT_ASSERT(*d0 == *d2);
CPPUNIT_ASSERT(*d0 == *d3);
CPPUNIT_ASSERT(!(value == d0->value()));
CPPUNIT_ASSERT(!(value < d0->value()));
CPPUNIT_ASSERT(!(value > d0->value()));
CPPUNIT_ASSERT(!(value == d1->value()));
CPPUNIT_ASSERT(!(value < d1->value()));
CPPUNIT_ASSERT(!(value > d1->value()));
CPPUNIT_ASSERT(!(value == std::make_shared<data::real>(value)->value()));
CPPUNIT_ASSERT(!(value < std::make_shared<data::real>(value)->value()));
CPPUNIT_ASSERT(!(value > std::make_shared<data::real>(value)->value()));
}
}
} // namespace sight::data::ut
|