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
|
/************************************************************************
*
* Copyright (C) 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 "camera_test.hpp"
#include <app/parser/camera.hpp>
#include <core/runtime/path.hpp>
#include <data/camera.hpp>
#include <boost/property_tree/ptree.hpp>
CPPUNIT_TEST_SUITE_REGISTRATION(sight::app::parser::ut::camera_test);
namespace sight::app::parser::ut
{
//------------------------------------------------------------------------------
void camera_test::resource_test()
{
boost::property_tree::ptree ptree;
ptree.put("resource", "sight::io/aruco_tag.m4v");
auto object = std::make_shared<data::camera>();
parser::camera parser;
CPPUNIT_ASSERT(parser.is_a("sight::app::parser::camera"));
CPPUNIT_ASSERT(parser.is_type_of("sight::service::object_parser"));
service::object_parser::objects_t sub_objects;
parser.parse(ptree, object, sub_objects);
CPPUNIT_ASSERT_EQUAL(
sight::core::runtime::get_resource_file_path("sight::io/aruco_tag.m4v").string(),
object->get_video_file().string()
);
CPPUNIT_ASSERT_EQUAL(data::camera::source_t::file, object->get_camera_source());
}
//------------------------------------------------------------------------------
void camera_test::file_test()
{
boost::property_tree::ptree ptree;
ptree.put("file", "/this/file/path/is/totally/real/and/wont/fail.avi");
auto object = std::make_shared<data::camera>();
parser::camera parser;
service::object_parser::objects_t sub_objects;
// As a correct parsing has already been tested, we can use a failing path and ensure it failed.
parser.parse(ptree, object, sub_objects);
CPPUNIT_ASSERT_EQUAL(
std::string("/this/file/path/is/totally/real/and/wont/fail.avi"),
object->get_video_file().string()
);
CPPUNIT_ASSERT_EQUAL(data::camera::source_t::file, object->get_camera_source());
}
//------------------------------------------------------------------------------
} // namespace sight::app::parser::ut
|