2015-10-17 15:49:54 +02:00
|
|
|
#include "testutils/LoggingTest.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Contains test cases for the following logging interface:
|
|
|
|
* LOG(INFO) << "My log message"
|
|
|
|
*/
|
|
|
|
|
|
|
|
using namespace cpputils::logging;
|
|
|
|
using std::string;
|
|
|
|
using testing::MatchesRegex;
|
|
|
|
|
2015-10-17 16:49:58 +02:00
|
|
|
TEST_F(LoggingTest, DefaultLoggerIsStderr) {
|
|
|
|
string output = captureStderr([]{
|
2015-10-17 15:49:54 +02:00
|
|
|
LOG(INFO) << "My log message";
|
|
|
|
});
|
|
|
|
EXPECT_THAT(output, MatchesRegex(".*\\[Log\\].*\\[info\\].*My log message.*"));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoggingTest, SetLogger_NewLoggerIsUsed) {
|
2015-10-17 16:49:58 +02:00
|
|
|
setLogger(spdlog::stderr_logger_mt("MyTestLog2"));
|
|
|
|
string output = captureStderr([]{
|
2015-10-17 15:49:54 +02:00
|
|
|
LOG(INFO) << "My log message";
|
|
|
|
});
|
|
|
|
EXPECT_THAT(output, MatchesRegex(".*\\[MyTestLog2\\].*\\[info\\].*My log message.*"));
|
|
|
|
}
|
|
|
|
|
2015-10-17 16:49:58 +02:00
|
|
|
TEST_F(LoggingTest, SetNonStderrLogger_LogsToNewLogger) {
|
2015-10-17 15:49:54 +02:00
|
|
|
setLogger(mockLogger.get());
|
|
|
|
logger()->info() << "My log message";
|
|
|
|
EXPECT_THAT(mockLogger.capturedLog(), MatchesRegex(".*\\[MockLogger\\].*\\[info\\].*My log message.*"));
|
|
|
|
}
|
|
|
|
|
2015-10-17 16:49:58 +02:00
|
|
|
TEST_F(LoggingTest, SetNonStderrLogger_DoesNotLogToStderr) {
|
2015-10-17 15:49:54 +02:00
|
|
|
setLogger(mockLogger.get());
|
2015-10-17 16:49:58 +02:00
|
|
|
string output = captureStderr([] {
|
2015-10-17 15:49:54 +02:00
|
|
|
logger()->info() << "My log message";
|
|
|
|
});
|
|
|
|
EXPECT_EQ("", output);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoggingTest, InfoLog) {
|
|
|
|
setLogger(mockLogger.get());
|
|
|
|
LOG(INFO) << "My log message";
|
|
|
|
EXPECT_THAT(mockLogger.capturedLog(), MatchesRegex(".*\\[MockLogger\\].*\\[info\\].*My log message.*"));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoggingTest, WarningLog) {
|
|
|
|
setLogger(mockLogger.get());
|
|
|
|
LOG(WARN) << "My log message";
|
|
|
|
EXPECT_THAT(mockLogger.capturedLog(), MatchesRegex(".*\\[MockLogger\\].*\\[warning\\].*My log message.*"));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoggingTest, DebugLog) {
|
|
|
|
setLevel(DEBUG);
|
|
|
|
setLogger(mockLogger.get());
|
|
|
|
LOG(DEBUG) << "My log message";
|
|
|
|
EXPECT_THAT(mockLogger.capturedLog(), MatchesRegex(".*\\[MockLogger\\].*\\[debug\\].*My log message.*"));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoggingTest, ErrorLog) {
|
|
|
|
setLogger(mockLogger.get());
|
|
|
|
LOG(ERROR) << "My log message";
|
|
|
|
EXPECT_THAT(mockLogger.capturedLog(), MatchesRegex(".*\\[MockLogger\\].*\\[error\\].*My log message.*"));
|
|
|
|
}
|
2015-10-17 16:42:56 +02:00
|
|
|
|
|
|
|
void logAndExit(const string &message) {
|
|
|
|
LOG(INFO) << message;
|
2015-10-25 18:42:38 +01:00
|
|
|
exit(1);
|
2015-10-17 16:42:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// fork() only forks the main thread. This test ensures that logging doesn't depend on threads that suddenly aren't
|
|
|
|
// there anymore after a fork().
|
2015-10-28 15:20:55 +01:00
|
|
|
TEST_F(LoggingTest, LoggingAlsoWorksAfterFork) {
|
2015-10-17 16:49:58 +02:00
|
|
|
setLogger(spdlog::stderr_logger_mt("StderrLogger"));
|
2015-10-25 18:42:38 +01:00
|
|
|
EXPECT_EXIT(
|
2015-10-17 16:42:56 +02:00
|
|
|
logAndExit("My log message"),
|
2015-10-25 18:42:38 +01:00
|
|
|
::testing::ExitedWithCode(1),
|
2015-10-17 16:42:56 +02:00
|
|
|
"My log message"
|
|
|
|
);
|
|
|
|
}
|