spdlog/tests/test_errors.cpp

122 lines
4.1 KiB
C++
Raw Normal View History

2016-08-05 08:56:40 +08:00
/*
2018-03-09 21:26:33 +08:00
* This content is released under the MIT License as specified in https://raw.githubusercontent.com/gabime/spdlog/master/LICENSE
*/
2016-08-05 08:56:40 +08:00
#include "includes.h"
2018-03-09 21:26:33 +08:00
#include <iostream>
2016-08-05 08:56:40 +08:00
#define SIMPLE_LOG "test_logs/simple_log.txt"
#define SIMPLE_ASYNC_LOG "test_logs/simple_async_log.txt"
class failing_sink : public spdlog::sinks::base_sink<std::mutex>
2017-03-28 07:08:18 +08:00
{
protected:
void sink_it_(const spdlog::details::log_msg &) final
2017-03-28 07:08:18 +08:00
{
throw std::runtime_error("some error happened during log");
}
void flush_() final
2018-05-26 23:48:39 +08:00
{
throw std::runtime_error("some error happened during flush");
}
};
2016-08-05 08:56:40 +08:00
TEST_CASE("default_error_handler", "[errors]]")
{
2017-03-28 07:08:18 +08:00
prepare_logdir();
spdlog::filename_t filename = SPDLOG_FILENAME_T(SIMPLE_LOG);
2016-08-05 08:56:40 +08:00
auto logger = spdlog::create<spdlog::sinks::basic_file_sink_mt>("test-error", filename, true);
2017-03-28 07:08:18 +08:00
logger->set_pattern("%v");
logger->info(fmt::runtime("Test message {} {}"), 1);
2017-03-28 07:08:18 +08:00
logger->info("Test message {}", 2);
logger->flush();
2016-08-05 08:56:40 +08:00
using spdlog::details::os::default_eol;
REQUIRE(file_contents(SIMPLE_LOG) == fmt::format("Test message 2{}", default_eol));
REQUIRE(count_lines(SIMPLE_LOG) == 1);
2016-08-05 08:56:40 +08:00
}
struct custom_ex
{};
2016-08-05 08:56:40 +08:00
TEST_CASE("custom_error_handler", "[errors]]")
{
2017-03-28 07:08:18 +08:00
prepare_logdir();
spdlog::filename_t filename = SPDLOG_FILENAME_T(SIMPLE_LOG);
auto logger = spdlog::create<spdlog::sinks::basic_file_sink_mt>("logger", filename, true);
2017-03-28 07:08:18 +08:00
logger->flush_on(spdlog::level::info);
logger->set_error_handler([=](const std::string &) { throw custom_ex(); });
2017-03-28 07:08:18 +08:00
logger->info("Good message #1");
2018-06-12 23:48:22 +08:00
REQUIRE_THROWS_AS(logger->info(fmt::runtime("Bad format msg {} {}"), "xxx"), custom_ex);
2017-03-28 07:08:18 +08:00
logger->info("Good message #2");
require_message_count(SIMPLE_LOG, 2);
}
TEST_CASE("default_error_handler2", "[errors]]")
{
2018-05-26 23:48:39 +08:00
spdlog::drop_all();
2017-03-28 07:08:18 +08:00
auto logger = spdlog::create<failing_sink>("failed_logger");
logger->set_error_handler([=](const std::string &) { throw custom_ex(); });
2017-03-28 07:08:18 +08:00
REQUIRE_THROWS_AS(logger->info("Some message"), custom_ex);
2016-08-05 08:56:40 +08:00
}
TEST_CASE("flush_error_handler", "[errors]]")
{
2018-05-26 23:48:39 +08:00
spdlog::drop_all();
auto logger = spdlog::create<failing_sink>("failed_logger");
logger->set_error_handler([=](const std::string &) { throw custom_ex(); });
2018-05-26 23:48:39 +08:00
REQUIRE_THROWS_AS(logger->flush(), custom_ex);
}
2016-08-05 08:56:40 +08:00
TEST_CASE("async_error_handler", "[errors]]")
{
2017-03-28 07:08:18 +08:00
prepare_logdir();
std::string err_msg("log failed with some msg");
2018-04-14 08:34:57 +08:00
spdlog::filename_t filename = SPDLOG_FILENAME_T(SIMPLE_ASYNC_LOG);
2017-03-28 07:08:18 +08:00
{
2018-04-14 08:34:57 +08:00
spdlog::init_thread_pool(128, 1);
auto logger = spdlog::create_async<spdlog::sinks::basic_file_sink_mt>("logger", filename, true);
logger->set_error_handler([=](const std::string &) {
2019-10-20 22:40:56 +08:00
std::ofstream ofs("test_logs/custom_err.txt");
2018-03-09 21:26:33 +08:00
if (!ofs)
2018-10-05 20:20:14 +08:00
{
2019-10-20 22:40:56 +08:00
throw std::runtime_error("Failed open test_logs/custom_err.txt");
2018-10-05 20:20:14 +08:00
}
ofs << err_msg;
2017-03-28 07:08:18 +08:00
});
logger->info("Good message #1");
logger->info(fmt::runtime("Bad format msg {} {}"), "xxx");
2017-03-28 07:08:18 +08:00
logger->info("Good message #2");
2018-03-09 21:26:33 +08:00
spdlog::drop("logger"); // force logger to drain the queue and shutdown
2017-03-28 07:08:18 +08:00
}
2018-04-14 08:34:57 +08:00
spdlog::init_thread_pool(128, 1);
require_message_count(SIMPLE_ASYNC_LOG, 2);
2019-10-20 22:40:56 +08:00
REQUIRE(file_contents("test_logs/custom_err.txt") == err_msg);
}
// Make sure async error handler is executed
TEST_CASE("async_error_handler2", "[errors]]")
{
prepare_logdir();
std::string err_msg("This is async handler error message");
2017-03-28 07:08:18 +08:00
{
2021-01-07 08:39:47 +08:00
spdlog::details::os::create_dir(SPDLOG_FILENAME_T("test_logs"));
2018-04-14 08:34:57 +08:00
spdlog::init_thread_pool(128, 1);
auto logger = spdlog::create_async<failing_sink>("failed_logger");
logger->set_error_handler([=](const std::string &) {
2019-10-20 22:40:56 +08:00
std::ofstream ofs("test_logs/custom_err2.txt");
2018-03-09 21:26:33 +08:00
if (!ofs)
2019-10-20 22:40:56 +08:00
throw std::runtime_error("Failed open test_logs/custom_err2.txt");
ofs << err_msg;
2017-03-28 07:08:18 +08:00
});
logger->info("Hello failure");
2018-03-09 21:26:33 +08:00
spdlog::drop("failed_logger"); // force logger to drain the queue and shutdown
2017-03-28 07:08:18 +08:00
}
2018-04-14 08:34:57 +08:00
spdlog::init_thread_pool(128, 1);
2019-10-20 22:40:56 +08:00
REQUIRE(file_contents("test_logs/custom_err2.txt") == err_msg);
2016-08-05 08:56:40 +08:00
}