#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/UnorderedSet.h" #include #include #include #include #include #include using namespace quill; /***/ TEST_CASE("std_unordered_set_logging") { static constexpr char const* filename = "std_unordered_set_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::unordered_set c = {'a'}; LOG_INFO(logger, "c {}", c); std::unordered_set si = {-12}; LOG_INFO(logger, "si {}", si); std::unordered_set i = {-123}; LOG_INFO(logger, "i {}", i); std::unordered_set li = {9876}; LOG_INFO(logger, "li {}", li); std::unordered_set lli = {321}; LOG_INFO(logger, "lli {}", lli); std::unordered_set usi = {15}; LOG_INFO(logger, "usi {}", usi); std::unordered_set ui = {123}; LOG_INFO(logger, "ui {}", ui); std::unordered_set uli = {3213}; LOG_INFO(logger, "uli {}", uli); std::unordered_set ulli = {321}; LOG_INFO(logger, "ulli {}", ulli); std::unordered_set f = {111.1f}; LOG_INFO(logger, "f {}", f); std::unordered_set d = {12.1}; LOG_INFO(logger, "d {}", d); std::unordered_set const& cri = i; LOG_INFO(logger, "cri {}", cri); std::unordered_set& ci = i; LOG_INFO(logger, "ci {}", ci); std::unordered_set sa = {"test"}; LOG_INFO(logger, "sa {}", sa); std::unordered_set sva = {"string_view"}; LOG_INFO(logger, "sva {}", sva); std::unordered_set scva = {"c_style"}; LOG_INFO(logger, "scva {}", scva); LOG_INFO(logger, "scva {} sa {} ulli {} scva {} sa {}", scva, sa, ulli, scva, sa); std::unordered_set loopv; for (int iter = 0; iter < 100; ++iter) { loopv.insert(iter); } LOG_INFO(logger, "loopv {}", loopv); std::unordered_set loopsv; for (int iter = 0; iter < 100; ++iter) { loopsv.insert(std::to_string(iter)); } LOG_INFO(logger, "loopsv {}", loopsv); std::unordered_set empt; LOG_INFO(logger, "empt {}", empt); } 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 + " c {'a'}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " si {-12}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " i {-123}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " li {9876}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " lli {321}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " usi {15}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " ui {123}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " uli {3213}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " ulli {321}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " f {111.1}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " d {12.1}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " cri {-123}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " ci {-123}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " sa {\"test\"}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " sva {\"string_view\"}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " scva {\"c_style\"}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " scva {\"c_style\"} sa {\"test\"} ulli {321} scva {\"c_style\"} sa {\"test\"}"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " loopv {"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " loopsv {"})); REQUIRE(quill::testing::file_contains( file_contents, std::string{"LOG_INFO " + logger_name + " empt {}"})); testing::remove_file(filename); }