File: model_series_test.cpp

package info (click to toggle)
sight 25.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,252 kB
  • sloc: cpp: 310,629; xml: 17,622; ansic: 9,960; python: 1,379; sh: 144; makefile: 33
file content (175 lines) | stat: -rw-r--r-- 5,972 bytes parent folder | download | duplicates (2)
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/************************************************************************
 *
 * Copyright (C) 2009-2024 IRCAD France
 * Copyright (C) 2012-2020 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 "model_series_test.hpp"

#include <core/type.hpp>

#include <data/mesh.hpp>
#include <data/reconstruction.hpp>

#include <utest_data/generator/mesh.hpp>

// Registers the fixture into the 'registry'
CPPUNIT_TEST_SUITE_REGISTRATION(sight::data::ut::model_series_test);

namespace sight::data::ut
{

//------------------------------------------------------------------------------

void model_series_test::setUp()
{
    // Set up context before running a test.
    m_series = std::make_shared<data::model_series>();
}

//------------------------------------------------------------------------------

void model_series_test::tearDown()
{
    // Clean up after the test run.
    m_series.reset();
}

//------------------------------------------------------------------------------

void model_series_test::model_test()
{
    CPPUNIT_ASSERT(m_series);

    data::reconstruction::sptr rec1 = std::make_shared<data::reconstruction>();
    CPPUNIT_ASSERT(rec1);
    data::reconstruction::sptr rec2 = std::make_shared<data::reconstruction>();
    CPPUNIT_ASSERT(rec2);

    data::mesh::sptr mesh1 = std::make_shared<data::mesh>();
    CPPUNIT_ASSERT(mesh1);
    utest_data::generator::mesh::generate_quad_mesh(mesh1);

    data::mesh::sptr mesh2 = std::make_shared<data::mesh>();
    CPPUNIT_ASSERT(mesh2);
    utest_data::generator::mesh::generate_quad_mesh(mesh2);

    rec1->set_mesh(mesh1);
    rec2->set_mesh(mesh2);

    model_series::reconstruction_vector_t recs;
    recs.push_back(rec1);
    recs.push_back(rec2);

    m_series->set_reconstruction_db(recs);
    CPPUNIT_ASSERT_EQUAL(2, (int) m_series->get_reconstruction_db().size());
    CPPUNIT_ASSERT_EQUAL(rec1, m_series->get_reconstruction_db()[0]);
    CPPUNIT_ASSERT_EQUAL(rec2, m_series->get_reconstruction_db()[1]);
}

//------------------------------------------------------------------------------

void model_series_test::deep_copy_test()
{
    CPPUNIT_ASSERT(m_series);

    auto rec1  = std::make_shared<data::reconstruction>();
    auto mesh1 = std::make_shared<data::mesh>();
    utest_data::generator::mesh::generate_quad_mesh(mesh1);

    rec1->set_mesh(mesh1);
    model_series::reconstruction_vector_t recs;
    recs.push_back(rec1);
    m_series->set_reconstruction_db(recs);

    auto second_series = std::make_shared<data::model_series>();

    CPPUNIT_ASSERT(*m_series != *second_series);

    second_series->deep_copy(m_series);

    CPPUNIT_ASSERT(*m_series == *second_series);

    CPPUNIT_ASSERT_EQUAL(1, (int) m_series->get_reconstruction_db().size());
    CPPUNIT_ASSERT_EQUAL(1, (int) second_series->get_reconstruction_db().size());
    CPPUNIT_ASSERT(m_series->get_reconstruction_db()[0] != second_series->get_reconstruction_db()[0]);
}

//------------------------------------------------------------------------------

void model_series_test::shallow_copy_test()
{
    CPPUNIT_ASSERT(m_series);

    auto rec1  = std::make_shared<data::reconstruction>();
    auto mesh1 = std::make_shared<data::mesh>();
    utest_data::generator::mesh::generate_quad_mesh(mesh1);
    rec1->set_mesh(mesh1);
    model_series::reconstruction_vector_t recs;
    recs.push_back(rec1);
    m_series->set_reconstruction_db(recs);

    auto second_series = std::make_shared<data::model_series>();

    CPPUNIT_ASSERT(*m_series != *second_series);

    second_series->shallow_copy(m_series);

    CPPUNIT_ASSERT(*m_series == *second_series);

    CPPUNIT_ASSERT(m_series->get_reconstruction_db()[0] == second_series->get_reconstruction_db()[0]);
    CPPUNIT_ASSERT_EQUAL(m_series->get_reconstruction_db()[0], second_series->get_reconstruction_db()[0]);

    CPPUNIT_ASSERT_EQUAL(recs[0], m_series->get_reconstruction_db()[0]);
    CPPUNIT_ASSERT_EQUAL(recs[0], second_series->get_reconstruction_db()[0]);
    CPPUNIT_ASSERT_EQUAL(1, (int) m_series->get_reconstruction_db().size());
    CPPUNIT_ASSERT_EQUAL(1, (int) second_series->get_reconstruction_db().size());
}

//------------------------------------------------------------------------------

void model_series_test::equality_test()
{
    auto series1 = std::make_shared<data::model_series>();
    auto series2 = std::make_shared<data::model_series>();

    CPPUNIT_ASSERT(*series1 == *series2 && !(*series1 != *series2));

    // NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
    #define TEST(op) \
            series1->op; \
            CPPUNIT_ASSERT_MESSAGE( \
                "Series must be different when using " #op " on the first one", \
                *series1 != *series2 && !(*series1 == *series2) \
            ); \
            series2->op; \
            CPPUNIT_ASSERT_MESSAGE( \
                "Series must be equal when using " #op " on both", \
                *series1 == *series2 && !(*series1 != *series2) \
            );

    TEST(set_reconstruction_db({std::make_shared<data::reconstruction>()}));
    TEST(set_dicom_reference(std::make_shared<data::dicom_series>()));

    #undef TEST
}

//------------------------------------------------------------------------------

} // namespace sight::data::ut