#include "doctest/doctest.h" #include "misc/TestUtilities.h" #include "quill/Backend.h" #include "quill/Frontend.h" #include "quill/LogMacros.h" #include "quill/sinks/FileSink.h" #include "quill/std/Tuple.h" #include #include #include #include #include #include using namespace quill; /***/ TEST_CASE("std_tuple_logging") { static constexpr char const* filename = "std_tuple_logging.log"; static std::string const logger_name = "logger"; // Start the logging backend thread Backend::start(); Frontend::preallocate(); // Set writing logging to a file auto file_sink = Frontend::create_or_get_sink( filename, []() { FileSinkConfig cfg; cfg.set_open_mode('w'); return cfg; }(), FileEventNotifier{}); Logger* logger = Frontend::create_or_get_logger(logger_name, std::move(file_sink)); { std::tuple st{"123456789"}; LOG_INFO(logger, "st {}", st); std::tuple et; LOG_INFO(logger, "et {}", et); std::tuple ct{ "string", "string_view", 213, 33.12, "c_style", "another_string", 123}; LOG_INFO(logger, "ct {}", ct); LOG_INFO(logger, "ct {} et {} st {}", ct, et, st); } logger->flush_log(); Frontend::remove_logger(logger); // Wait until the backend thread stops for test stability Backend::stop(); // Read file and check std::vector const file_contents = quill::testing::file_contents(filename); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " st (\"123456789\")"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " et (\"\", 0)"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " ct (\"string\", \"string_view\", 213, 33.12, \"c_style\", \"another_string\", 123)"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " ct (\"string\", \"string_view\", 213, 33.12, \"c_style\", \"another_string\", 123) et (\"\", 0) st (\"123456789\")"})); testing::remove_file(filename); }