g3log/g2log/test_unit/testing_helpers.cpp

150 lines
3.8 KiB
C++
Raw Normal View History

2013-07-14 01:57:26 +02:00
#include <gtest/gtest.h>
2013-08-19 07:17:04 +02:00
#include <iostream>
2013-07-14 01:57:26 +02:00
#include "testing_helpers.h"
#include "g2log.hpp"
#include "g2logworker.hpp"
#include "std2_make_unique.hpp"
#include "g2logmessage.hpp"
#include <fstream>
2013-07-14 01:57:26 +02:00
using namespace std;
using namespace g2;
2013-08-19 07:17:04 +02:00
namespace testing_helpers {
std::string g_mockFatal_message = {};
int g_mockFatal_signal = -1;
bool g_mockFatalWasCalled = false;
std::string mockFatalMessage() {
return g_mockFatal_message;
}
int mockFatalSignal() {
return g_mockFatal_signal;
}
bool mockFatalWasCalled() {
return g_mockFatalWasCalled;
}
void mockFatalCall(FatalMessagePtr fatal_message) {
g_mockFatal_message = fatal_message.get()->toString();
g_mockFatal_signal = fatal_message.get()->_signal_id;
g_mockFatalWasCalled = true;
LogMessagePtr message{fatal_message.release()};
g2::internal::saveMessage(message); //fatal_message.copyToLogMessage());
}
void clearMockFatal() {
g_mockFatal_message = {};
g_mockFatal_signal = -1;
g_mockFatalWasCalled = false;
}
2013-08-19 07:17:04 +02:00
bool removeFile(std::string path_to_file) {
return (0 == std::remove(path_to_file.c_str()));
}
bool verifyContent(const std::string &total_text, std::string msg_to_find) {
std::string content(total_text);
size_t location = content.find(msg_to_find);
return (location != std::string::npos);
}
std::string readFileToText(std::string filename) {
std::ifstream in;
in.open(filename.c_str(), std::ios_base::in);
if (!in.is_open()) {
return
{
}; // error just return empty string - test will 'fault'
}
std::ostringstream oss;
oss << in.rdbuf();
return oss.str();
}
size_t LogFileCleaner::size() {
2013-08-19 07:17:04 +02:00
return logs_to_clean_.size();
}
2013-08-19 07:17:04 +02:00
LogFileCleaner::~LogFileCleaner() {
std::lock_guard<std::mutex> lock(g_mutex);
{
for (const auto& file : logs_to_clean_) {
if (!removeFile(file)) {
ADD_FAILURE() << "UNABLE to remove: " << file << std::endl;
}
}
logs_to_clean_.clear();
} // mutex
}
2013-08-19 07:17:04 +02:00
void LogFileCleaner::addLogToClean(std::string path_to_log) {
std::lock_guard<std::mutex> lock(g_mutex);
{
if (std::find(logs_to_clean_.begin(), logs_to_clean_.end(), path_to_log.c_str()) == logs_to_clean_.end())
logs_to_clean_.push_back(path_to_log);
}
2013-08-19 07:17:04 +02:00
}
ScopedLogger::ScopedLogger() : _currentWorker(g2::LogWorker::createWithNoSink()) { }
ScopedLogger::~ScopedLogger() { }
g2::LogWorker* ScopedLogger::get() { return _currentWorker.get(); }
RestoreFileLogger::RestoreFileLogger(std::string directory)
: _scope(new ScopedLogger), _handle(_scope->get()->addSink(std2::make_unique<g2::FileSink>("UNIT_TEST_LOGGER", directory), &g2::FileSink::fileWrite)) {
using namespace g2;
g2::initializeLogging(_scope->_currentWorker.get());
clearMockFatal();
internal::changeFatalInitHandlerForUnitTesting(&mockFatalCall);
auto filename = _handle->call(&FileSink::fileName);
if (!filename.valid()) ADD_FAILURE();
_log_file = filename.get();
}
RestoreFileLogger::~RestoreFileLogger() {
g2::internal::shutDownLogging();
if (!removeFile(_log_file))
ADD_FAILURE();
}
// Beware of race between LOG(...) and this function.
// since LOG(...) passes two queues but the handle::call only passes one queue
// the handle::call can happen faster
std::string RestoreFileLogger::resetAndRetrieveContent() {
std::future<std::string> filename = _handle->call(&g2::FileSink::fileName);
reset(); // flush all queues to sinks
EXPECT_TRUE(filename.valid());
auto file = filename.get();
return readFileToText(file);
}
2013-08-19 07:17:04 +02:00
} // testing_helpers