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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/************************************************************************
*
* Copyright (C) 2021-2025 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 "point_test.hpp"
#include <data/point.hpp>
// Registers the fixture into the 'registry'
CPPUNIT_TEST_SUITE_REGISTRATION(sight::data::ut::point_test);
namespace sight::data::ut
{
//------------------------------------------------------------------------------
void point_test::setUp()
{
}
//------------------------------------------------------------------------------
void point_test::tearDown()
{
}
//------------------------------------------------------------------------------
void point_test::copy_test()
{
// shallow copy
{
data::point::sptr p1 = std::make_shared<data::point>(1.F, 2.F, 3.F);
data::point::sptr p2 = std::make_shared<data::point>();
CPPUNIT_ASSERT_NO_THROW(p2->shallow_copy(p1));
CPPUNIT_ASSERT_EQUAL((*p1)[0], (*p2)[0]);
CPPUNIT_ASSERT_EQUAL((*p1)[1], (*p2)[1]);
CPPUNIT_ASSERT_EQUAL((*p1)[2], (*p2)[2]);
}
// Deep copy
{
data::point::sptr p1 = std::make_shared<data::point>(1.F, 2.F, 3.F);
data::point::sptr p2 = std::make_shared<data::point>();
CPPUNIT_ASSERT_NO_THROW(p2->deep_copy(p1));
CPPUNIT_ASSERT_EQUAL((*p1)[0], (*p2)[0]);
CPPUNIT_ASSERT_EQUAL((*p1)[1], (*p2)[1]);
CPPUNIT_ASSERT_EQUAL((*p1)[2], (*p2)[2]);
}
}
//------------------------------------------------------------------------------
void point_test::getter_test()
{
data::point::sptr p1 = std::make_shared<data::point>();
*p1 = {0., 1., 10.};
CPPUNIT_ASSERT_EQUAL(0., (*p1)[0]);
CPPUNIT_ASSERT_EQUAL(1., (*p1)[1]);
CPPUNIT_ASSERT_EQUAL(10., (*p1)[2]);
}
//------------------------------------------------------------------------------
void point_test::setter_test()
{
data::point::sptr p1 = std::make_shared<data::point>();
data::point::point_coord_array_t expected = {0.1, 0.2, 0.3};
*p1 = {expected};
CPPUNIT_ASSERT_EQUAL(expected[0], (*p1)[0]);
CPPUNIT_ASSERT_EQUAL(expected[1], (*p1)[1]);
CPPUNIT_ASSERT_EQUAL(expected[2], (*p1)[2]);
}
//------------------------------------------------------------------------------
void point_test::label_test()
{
data::point::sptr p = std::make_shared<data::point>(1., 2., 3.);
const std::string label = "TestPoint";
p->set_label(label);
const auto actual_label = p->get_label();
CPPUNIT_ASSERT_EQUAL(label, actual_label);
}
//------------------------------------------------------------------------------
void point_test::equality_test()
{
auto point1 = std::make_shared<data::point>();
auto point2 = std::make_shared<data::point>();
CPPUNIT_ASSERT(*point1 == *point2 && !(*point1 != *point2));
// NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
#define TEST(op) \
point1->op; \
CPPUNIT_ASSERT_MESSAGE( \
"Points should be different when using " #op " on the first one", \
*point1 != *point2 && !(*point1 == *point2) \
); \
point2->op; \
CPPUNIT_ASSERT_MESSAGE( \
"Points should be equal when using " #op " on both", \
*point1 == *point2 && !(*point1 != *point2) \
);
TEST(operator=({1, 0, 0}));
TEST(operator=({0, 1, 0}));
TEST(operator=({0, 0, 1}));
TEST(set_label("1"));
#undef TEST
}
//------------------------------------------------------------------------------
} // namespace sight::data::ut
|