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
|
/************************************************************************
*
* Copyright (C) 2009-2025 IRCAD France
* Copyright (C) 2012-2021 IHU Strasbourg
*
* 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 "reconstruction_test.hpp"
#include <data/image.hpp>
#include <data/reconstruction.hpp>
#include <exception>
#include <iostream>
#include <map>
#include <ostream>
#include <vector>
// Registers the fixture into the 'registry'
CPPUNIT_TEST_SUITE_REGISTRATION(sight::data::ut::reconstruction_test);
namespace sight::data::ut
{
//------------------------------------------------------------------------------
void reconstruction_test::setUp()
{
// Set up context before running a test.
}
//------------------------------------------------------------------------------
void reconstruction_test::tearDown()
{
// Clean up after the test run.
}
//------------------------------------------------------------------------------
void reconstruction_test::accessors() // testing setters et getters
{
const bool is_visible = true;
const std::string organ_name = "OrganName";
const std::string structure_type = "structure_t";
const std::uint32_t label = 42;
// process
auto p1 = std::make_shared<data::reconstruction>();
p1->set_is_visible(is_visible);
p1->set_organ_name(organ_name);
p1->set_structure_type(structure_type);
p1->set_label(label);
// check
CPPUNIT_ASSERT_EQUAL(p1->get_is_visible(), is_visible);
CPPUNIT_ASSERT_EQUAL(p1->get_organ_name(), organ_name);
CPPUNIT_ASSERT_EQUAL(p1->get_structure_type(), structure_type);
auto label_opt = p1->get_label();
CPPUNIT_ASSERT(label_opt);
CPPUNIT_ASSERT_EQUAL(*label_opt, label);
auto p2 = std::make_shared<data::reconstruction>();
CPPUNIT_ASSERT(*p1 != *p2);
p2->set_is_visible(is_visible);
p2->set_organ_name(organ_name);
p2->set_structure_type(structure_type);
p2->set_label(label);
CPPUNIT_ASSERT(*p1 == *p2);
}
//------------------------------------------------------------------------------
void reconstruction_test::image()
{
data::reconstruction::sptr p1 = std::make_shared<data::reconstruction>();
data::image::sptr i1(std::make_shared<data::image>());
p1->set_image(i1);
CPPUNIT_ASSERT_EQUAL(p1->get_image(), i1);
}
//------------------------------------------------------------------------------
void reconstruction_test::equality_test()
{
auto reconstruction1 = std::make_shared<data::reconstruction>();
auto reconstruction2 = std::make_shared<data::reconstruction>();
CPPUNIT_ASSERT(*reconstruction1 == *reconstruction2 && !(*reconstruction1 != *reconstruction2));
// NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
#define TEST(op) \
reconstruction1->op; \
CPPUNIT_ASSERT_MESSAGE( \
"Reconstructions should be different when using " #op " on the first one", \
*reconstruction1 != *reconstruction2 && !(*reconstruction1 == *reconstruction2) \
); \
reconstruction2->op; \
CPPUNIT_ASSERT_MESSAGE( \
"Reconstructions should be equal when using " #op " on both", \
*reconstruction1 == *reconstruction2 && !(*reconstruction1 != *reconstruction2) \
);
TEST(set_is_visible(true));
TEST(set_organ_name("1"));
TEST(set_structure_type("2"));
TEST(set_image(std::make_shared<data::image>()));
TEST(set_mesh(std::make_shared<data::mesh>()));
auto material = std::make_shared<data::material>();
material->set_ambient(std::make_shared<data::color>(3.F, 4.F, 5.F));
material->set_diffuse(std::make_shared<data::color>(6.F, 7.F, 8.F));
material->set_shading_mode(data::material::shading_t::ambient);
material->set_representation_mode(data::material::point);
material->set_options_mode(data::material::normals);
material->set_diffuse_texture_filtering(data::material::linear);
material->set_diffuse_texture_wrapping(data::material::clamp);
TEST(set_material(material));
TEST(set_computed_mask_volume(9));
#undef TEST
}
} // namespace sight::data::ut
|