mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-14 17:52:05 +08:00
144 lines
5.4 KiB
C++
144 lines
5.4 KiB
C++
/*
|
|
* This content is released under the MIT License as specified in
|
|
* https://raw.githubusercontent.com/gabime/spdlog/v2.x/LICENSE
|
|
*/
|
|
#include "includes.h"
|
|
#include "spdlog/sinks/daily_file_sink.h"
|
|
#include "spdlog/sinks/rotating_file_sink.h"
|
|
|
|
using file_t_sstream = std::basic_stringstream<spdlog::filename_t::value_type>;
|
|
using spdlog::details::os::filename_to_str;
|
|
|
|
TEST_CASE("daily_logger with dateonly calculator", "[daily_logger]") {
|
|
using sink_type = spdlog::sinks::daily_file_sink<std::mutex, spdlog::sinks::daily_filename_calculator>;
|
|
|
|
prepare_logdir();
|
|
|
|
// calculate filename (time based)
|
|
spdlog::filename_t basename = SPDLOG_FILENAME_T("test_logs/daily_dateonly");
|
|
std::tm now_tm = spdlog::details::os::localtime();
|
|
|
|
|
|
|
|
//spdlog::fmt_lib::format_to(std::back_inserter(w), SPDLOG_FILENAME_T("{}_{:04d}-{:02d}-{:02d}"), basename, tm.tm_year + 1900,
|
|
// tm.tm_mon + 1, tm.tm_mday);
|
|
|
|
auto logger = spdlog::create<sink_type>("logger", basename, 0, 0);
|
|
for (int i = 0; i < 10; ++i) {
|
|
logger->info("Test message {}", i);
|
|
}
|
|
logger->flush();
|
|
|
|
// calcluate expected filename and check if it exists with the expected message count
|
|
file_t_sstream stream;
|
|
auto sep = SPDLOG_FILENAME_T('-');
|
|
stream << basename.native() << SPDLOG_FILENAME_T('_') << std::setfill(SPDLOG_FILENAME_T('0')) << std::setw(4)
|
|
<< now_tm.tm_year + 1900 << sep << std::setw(2) << now_tm.tm_mon + 1 << sep << std::setw(2) << now_tm.tm_mday;
|
|
|
|
require_message_count(filename_to_str(stream.str()), 10);
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
* File name calculations
|
|
*/
|
|
|
|
TEST_CASE("rotating_file_sink::calc_filename1", "[rotating_file_sink]") {
|
|
auto filename = spdlog::sinks::rotating_file_sink_st::calc_filename(SPDLOG_FILENAME_T("rotated.txt"), 3);
|
|
REQUIRE(filename == SPDLOG_FILENAME_T("rotated.3.txt"));
|
|
}
|
|
|
|
TEST_CASE("rotating_file_sink::calc_filename2", "[rotating_file_sink]") {
|
|
auto filename = spdlog::sinks::rotating_file_sink_st::calc_filename(SPDLOG_FILENAME_T("rotated"), 3);
|
|
REQUIRE(filename == SPDLOG_FILENAME_T("rotated.3"));
|
|
}
|
|
|
|
TEST_CASE("rotating_file_sink::calc_filename3", "[rotating_file_sink]") {
|
|
auto filename = spdlog::sinks::rotating_file_sink_st::calc_filename(SPDLOG_FILENAME_T("rotated.txt"), 0);
|
|
REQUIRE(filename == SPDLOG_FILENAME_T("rotated.txt"));
|
|
}
|
|
|
|
// regex supported only from gcc 4.9 and above
|
|
#if defined(_MSC_VER) || !(__GNUC__ <= 4 && __GNUC_MINOR__ < 9)
|
|
|
|
#include <regex>
|
|
|
|
TEST_CASE("daily_file_sink::daily_filename_calculator", "[daily_file_sink]") {
|
|
// daily_YYYY-MM-DD_hh-mm.txt
|
|
auto now = spdlog::details::os::localtime();
|
|
auto filename =
|
|
spdlog::sinks::daily_filename_calculator::calc_filename(SPDLOG_FILENAME_T("daily.txt"), now);
|
|
|
|
file_t_sstream stream;
|
|
stream << "daily_" << now.tm_year + 1900 << "-" << std::setw(2) << std::setfill(SPDLOG_FILENAME_T('0')) << now.tm_mon + 1 << "-"
|
|
<< std::setw(2) << std::setfill(SPDLOG_FILENAME_T('0')) << now.tm_mday << ".txt";
|
|
REQUIRE(filename == std::filesystem::path(stream.str()));
|
|
//// date regex based on https://www.regular-expressions.info/dates.html
|
|
//std::basic_regex<spdlog::filename_t::value_type> re(
|
|
// SPDLOG_FILENAME_T(R"(^daily_(19|20)\d\d-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])\.txt$)"));
|
|
//std::match_results<spdlog::filename_t::const_iterator> match;
|
|
//REQUIRE(std::regex_match(filename, match, re));
|
|
}
|
|
#endif
|
|
|
|
TEST_CASE("daily_file_sink::daily_filename_format_calculator", "[daily_file_sink]") {
|
|
std::tm tm = spdlog::details::os::localtime();
|
|
// example-YYYY-MM-DD.log
|
|
auto filename = spdlog::sinks::daily_filename_format_calculator::calc_filename(SPDLOG_FILENAME_T("example-%Y-%m-%d.log"), tm);
|
|
|
|
// calc excpected filename
|
|
file_t_sstream stream;
|
|
stream << "example-" << tm.tm_year + 1900 << "-" << std::setw(2) << std::setfill(SPDLOG_FILENAME_T('0')) << tm.tm_mon + 1
|
|
<< "-" << std::setw(2) << std::setfill(SPDLOG_FILENAME_T('0')) << tm.tm_mday << ".log";
|
|
|
|
|
|
REQUIRE(filename == std::filesystem::path(stream.str()));
|
|
}
|
|
|
|
/* Test removal of old files */
|
|
static spdlog::details::log_msg create_msg(std::chrono::seconds offset) {
|
|
using spdlog::log_clock;
|
|
spdlog::details::log_msg msg{"test", spdlog::level::info, "Hello Message"};
|
|
msg.time = log_clock::now() + offset;
|
|
return msg;
|
|
}
|
|
|
|
static void test_rotate(int days_to_run, uint16_t max_days, uint16_t expected_n_files) {
|
|
using spdlog::log_clock;
|
|
using spdlog::details::log_msg;
|
|
using spdlog::sinks::daily_file_sink_st;
|
|
|
|
prepare_logdir();
|
|
|
|
spdlog::filename_t basename = SPDLOG_FILENAME_T("test_logs/daily_rotate.txt");
|
|
daily_file_sink_st sink{basename, 2, 30, true, max_days};
|
|
|
|
// simulate messages with 24 intervals
|
|
|
|
for (int i = 0; i < days_to_run; i++) {
|
|
auto offset = std::chrono::seconds{24 * 3600 * i};
|
|
sink.log(create_msg(offset));
|
|
}
|
|
|
|
REQUIRE(count_files("test_logs") == static_cast<size_t>(expected_n_files));
|
|
}
|
|
|
|
TEST_CASE("daily_logger rotate", "[daily_file_sink]") {
|
|
int days_to_run = 1;
|
|
test_rotate(days_to_run, 0, 1);
|
|
test_rotate(days_to_run, 1, 1);
|
|
test_rotate(days_to_run, 3, 1);
|
|
test_rotate(days_to_run, 10, 1);
|
|
|
|
days_to_run = 10;
|
|
test_rotate(days_to_run, 0, 10);
|
|
test_rotate(days_to_run, 1, 1);
|
|
test_rotate(days_to_run, 3, 3);
|
|
test_rotate(days_to_run, 9, 9);
|
|
test_rotate(days_to_run, 10, 10);
|
|
test_rotate(days_to_run, 11, 10);
|
|
test_rotate(days_to_run, 20, 10);
|
|
}
|