MRPT  2.0.3
RawlogGrabberApp_unittest.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <gtest/gtest.h>
12 #include <mrpt/config.h>
13 #include <mrpt/system/filesystem.h>
14 #include <test_mrpt_common.h>
15 #include <thread>
16 
17 #if MRPT_HAS_FFMPEG && MRPT_HAS_OPENCV
18 TEST(RawlogGrabberApp, CGenericCamera_AVI)
19 #else
20 TEST(RawlogGrabberApp, DISABLED_CGenericCamera_AVI)
21 #endif
22 {
23  using namespace std::string_literals;
24 
25  const std::string ini_fil =
26  mrpt::UNITTEST_BASEDIR +
27  "/share/mrpt/config_files/rawlog-grabber/camera_ffmpeg_video_file.ini"s;
29 
30  const std::string video_fil =
31  mrpt::UNITTEST_BASEDIR + "/share/mrpt/datasets/dummy_video.avi"s;
33 
34  try
35  {
38 
39  const char* argv[] = {"rawlog-grabber", ini_fil.c_str()};
40  const int argc = sizeof(argv) / sizeof(argv[0]);
41 
42  app.initialize(argc, argv);
43 
44  // Create output dir:
45  const auto out_dir = mrpt::system::getTempFileName() + "_dir"s;
47  THROW_EXCEPTION_FMT("Could not mkdir: `%s`", out_dir.c_str());
48 
49  app.params.write("global", "rawlog_prefix", out_dir + "/dataset"s);
50  app.params.write("Camera1", "ffmpeg_url", video_fil);
51 
52  // Run slowly, so we have time to capture a few frames from the
53  // (otherwise really short) test video file:
54  app.params.write("Camera1", "process_rate", "10.0");
55 
56  // Max. run time.
57  // Should end much sooner when the video file is entirely processed.
58  app.run_for_seconds = 45.0;
59 
60  // Less verbose output in tests:
62 
63  const std::size_t REQUIRED_GRAB_OBS = 3U;
64 
65  auto tWatchDog = std::thread([&]() {
66  for (;;)
67  {
68  if (!app.isRunning()) break;
69  if (app.rawlog_saved_objects > REQUIRED_GRAB_OBS)
70  {
71  app.run_for_seconds = 1.0; // make it exit
72  break;
73  }
74  std::this_thread::sleep_for(std::chrono::milliseconds(500));
75  }
76  });
77 
78  // Run:
79  app.run();
80 
81  // Check expected results:
82  std::cout << "Rawlog grabbed objects: " << app.rawlog_saved_objects
83  << std::endl;
84  if (tWatchDog.joinable()) tWatchDog.join();
85 
86  EXPECT_GE(app.rawlog_saved_objects, REQUIRED_GRAB_OBS);
87  }
88  catch (const std::exception& e)
89  {
90  std::cerr << mrpt::exception_to_str(e);
91  GTEST_FAIL();
92  }
93 }
bool createDirectory(const std::string &dirName)
Creates a directory.
Definition: filesystem.cpp:161
const auto out_dir
bool fileExists(const std::string &fileName)
Test if a given file (or directory) exists.
Definition: filesystem.cpp:128
void setMinLoggingLevel(const VerbosityLevel level)
Set the minimum logging level for which the incoming logs are going to be taken into account...
const std::string video_fil
bool show_sensor_thread_exceptions
If enabled (default), exceptions in sensor threads will be reported to std::cerr. ...
TEST(ICP_SLAM_App, MapFromRawlog_PointMap)
std::string getTempFileName()
Returns the name of a proposed temporary file name.
Definition: filesystem.cpp:283
void initialize(int argc, const char **argv)
Initializes the application from CLI parameters.
void run()
Runs with the current parameter set.
const std::string ini_fil
void write(const std::string &section, const std::string &name, enum_t value, const int name_padding_width=-1, const int value_padding_width=-1, const std::string &comment=std::string())
EXPECT_TRUE(mrpt::system::fileExists(ini_fil))
double run_for_seconds
If >0, run() will return after this period (in seconds)
const char * argv[]
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Definition: exceptions.cpp:59
const int argc
std::atomic_size_t rawlog_saved_objects
Counter of saved objects.
#define THROW_EXCEPTION_FMT(_FORMAT_STRING,...)
Definition: exceptions.h:69
mrpt::config::CConfigFileMemory params
Populated in initialize().
RawlogGrabber application wrapper class.



Page generated by Doxygen 1.8.14 for MRPT 2.0.3 Git: 8e9e8af54 Wed May 13 17:41:24 2020 +0200 at miƩ may 13 17:55:54 CEST 2020