2017-10-12 19:04:31 -04:00
|
|
|
/*
|
2018-03-09 08:26:33 -05:00
|
|
|
* This content is released under the MIT License as specified in https://raw.githubusercontent.com/gabime/spdlog/master/LICENSE
|
|
|
|
*/
|
2017-10-12 19:04:31 -04:00
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2018-11-11 11:15:24 -05:00
|
|
|
#if SPDLOG_ACTIVE_LEVEL != SPDLOG_LEVEL_DEBUG
|
|
|
|
#error "Invalid SPDLOG_ACTIVE_LEVEL in test. Should be SPDLOG_LEVEL_DEBUG"
|
|
|
|
#endif
|
|
|
|
|
2017-10-12 19:04:31 -04:00
|
|
|
TEST_CASE("debug and trace w/o format string", "[macros]]")
|
|
|
|
{
|
2018-11-11 11:15:24 -05:00
|
|
|
|
2017-11-06 05:39:04 -05:00
|
|
|
prepare_logdir();
|
|
|
|
std::string filename = "logs/simple_log";
|
|
|
|
|
2018-07-07 05:12:45 -04:00
|
|
|
auto logger = spdlog::create<spdlog::sinks::basic_file_sink_mt>("logger", filename);
|
2017-11-06 05:39:04 -05:00
|
|
|
logger->set_pattern("%v");
|
|
|
|
logger->set_level(spdlog::level::trace);
|
|
|
|
|
2018-11-11 11:15:24 -05:00
|
|
|
SPDLOG_LOGGER_TRACE(logger, "Test message 1");
|
|
|
|
SPDLOG_LOGGER_DEBUG(logger, "Test message 2");
|
2017-11-06 05:39:04 -05:00
|
|
|
logger->flush();
|
|
|
|
|
|
|
|
REQUIRE(ends_with(file_contents(filename), "Test message 2\n"));
|
2018-11-11 11:15:24 -05:00
|
|
|
REQUIRE(count_lines(filename) == 1);
|
2018-11-22 11:48:32 -05:00
|
|
|
|
|
|
|
spdlog::set_default_logger(logger);
|
|
|
|
|
|
|
|
SPDLOG_TRACE("Test message 3");
|
|
|
|
SPDLOG_DEBUG("Test message {}", 4);
|
|
|
|
logger->flush();
|
|
|
|
|
|
|
|
REQUIRE(ends_with(file_contents(filename), "Test message 4\n"));
|
|
|
|
REQUIRE(count_lines(filename) == 2);
|
2017-10-12 19:04:31 -04:00
|
|
|
}
|
|
|
|
|
2018-11-11 11:15:24 -05:00
|
|
|
TEST_CASE("disable param evaluation", "[macros]")
|
2017-10-12 19:04:31 -04:00
|
|
|
{
|
2018-11-11 11:15:24 -05:00
|
|
|
SPDLOG_TRACE("Test message {}", throw std::runtime_error("Should not be evaluated"));
|
2017-10-12 19:04:31 -04:00
|
|
|
}
|