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
|
/************************************************************************
*
* 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 "axial_negato.hpp"
#include <ui/test/helper/button.hpp>
#include <ui/test/helper/line_edit.hpp>
#include <ui/test/helper/slider.hpp>
#include <utest_data/data.hpp>
CPPUNIT_TEST_SUITE_REGISTRATION(sight::sight_viewer::uit::axial_negato);
namespace sight::sight_viewer::uit
{
//------------------------------------------------------------------------------
void axial_negato::test()
{
namespace helper = sight::ui::test::helper;
const std::string test_name = "sightViewerAxialNegatoTest";
const std::string image_name = test_name + ".png";
const std::filesystem::path snapshot_path = sight::ui::test::tester::get_image_output_path() / image_name;
std::filesystem::remove(snapshot_path);
const std::filesystem::path reference_path = utest_data::dir() / "sight/ui/sight_viewer" / image_name;
start(
test_name,
[&snapshot_path, &reference_path](sight::ui::test::tester& _tester)
{
open_file(
_tester,
"Nifti or Inr images",
utest_data::dir() / "sight/image/inr/image.inr.gz"
);
// We want to hide the volume, we must click on the Show/hide volume button to achieve this
helper::button::push(_tester, "toolbar_view/Show/hide volume");
// Then we want to display the negato views, we must click on the restore button from the 3d scene toolbar
helper::button::push(_tester, "top_toolbar_view/Restore");
helper::line_edit::match(_tester, helper::selector::from_parent("top_scenes_view/1", "Label"), "67 / 133");
// For the test to work, we must first reset all negatos to 0
reset_negatos(_tester);
helper::line_edit::match(_tester, helper::selector::from_parent("top_scenes_view/1", "Label"), "0 / 133");
// We want to move the negato, we must click in the negato slider to do that
helper::slider::set(
_tester,
helper::selector::from_parent("top_scenes_view/1", "negato_slicer_srv"),
133
);
save_snapshot(_tester, snapshot_path);
compare_images(snapshot_path, reference_path);
helper::line_edit::match(_tester, helper::selector::from_parent("top_scenes_view/1", "Label"), "133 / 133");
helper::button::push(_tester, helper::selector::from_parent("top_scenes_view/1", "LabelButton"));
// we should observe the position of index 133 at QLineEdit after click.
helper::line_edit::match(
_tester,
helper::selector::from_parent("top_scenes_view/1", "Label"),
"S : 212.80 mm"
);
helper::slider::set(
_tester,
helper::selector::from_parent("top_scenes_view/1", "negato_slicer_srv"),
12
);
helper::line_edit::match(
_tester,
helper::selector::from_parent("top_scenes_view/1", "Label"),
"S : 19.20 mm"
);
},
true
);
}
} // namespace sight::sight_viewer::uit
|