You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/tests/test_errors.cpp

67 lines
2.5 KiB
C++

/*
* This content is released under the MIT License as specified in
* https://raw.githubusercontent.com/gabime/spdlog/v2.x/LICENSE
2 years ago
*/
8 years ago
#include <iostream>
#include "includes.h"
2 years ago
#include "spdlog/sinks/basic_file_sink.h"
8 months ago
static std::string log_filename = "test_logs/simple_log.txt";
static std::string log_err_msg = "Error during log";
static std::string flush_err_msg = "Error during flush";
class failing_sink final : public spdlog::sinks::base_sink<std::mutex> {
protected:
8 months ago
void sink_it_(const spdlog::details::log_msg &) override { throw std::runtime_error(log_err_msg.c_str()); }
void flush_() override { throw std::runtime_error(flush_err_msg.c_str()); }
};
struct custom_ex {};
9 months ago
using namespace spdlog::sinks;
TEST_CASE("default_error_handler", "[errors]") {
2 years ago
prepare_logdir();
8 months ago
spdlog::filename_t filename = SPDLOG_FILENAME_T(log_filename);
9 months ago
auto logger = spdlog::create<basic_file_sink_mt>("test-error", filename);
2 years ago
logger->set_pattern("%v");
logger->info(SPDLOG_FMT_RUNTIME("Test message {} {}"), 1);
2 years ago
logger->info("Test message {}", 2);
logger->flush();
using spdlog::details::os::default_eol;
8 months ago
REQUIRE(file_contents(log_filename) == spdlog::fmt_lib::format("Test message 2{}", default_eol));
REQUIRE(count_lines(log_filename) == 1);
}
TEST_CASE("custom_error_handler", "[errors]") {
2 years ago
prepare_logdir();
8 months ago
spdlog::filename_t filename = SPDLOG_FILENAME_T(log_filename);
9 months ago
auto logger = spdlog::create<basic_file_sink_mt>("test-error", filename);
logger->flush_on(spdlog::level::info);
8 months ago
logger->set_error_handler([=](const std::string & msg) {
REQUIRE(msg == "argument not found");
throw custom_ex();
});
2 years ago
logger->info("Good message #1");
REQUIRE_THROWS_AS(logger->info(SPDLOG_FMT_RUNTIME("Bad format msg {} {}"), "xxx"), custom_ex);
2 years ago
logger->info("Good message #2");
8 months ago
require_message_count(log_filename, 2);
}
TEST_CASE("default_error_handler2", "[errors]") {
auto logger = std::make_shared<spdlog::logger>("failed_logger", std::make_shared<failing_sink>());
8 months ago
logger->set_error_handler([=](const std::string &msg) {
REQUIRE(msg == log_err_msg);
throw custom_ex();
});
2 years ago
REQUIRE_THROWS_AS(logger->info("Some message"), custom_ex);
}
TEST_CASE("flush_error_handler", "[errors]") {
2 years ago
auto logger = spdlog::create<failing_sink>("failed_logger");
8 months ago
logger->set_error_handler([=](const std::string &msg) {
REQUIRE(msg == flush_err_msg);
throw custom_ex();
});
2 years ago
REQUIRE_THROWS_AS(logger->flush(), custom_ex);
}