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"
|
2013-10-05 06:14:35 +02:00
|
|
|
#include "g2log.hpp"
|
|
|
|
#include "g2logworker.hpp"
|
2013-07-30 06:43:33 +02:00
|
|
|
#include "g2filesink.hpp"
|
2013-07-14 03:33:00 +02:00
|
|
|
#include "std2_make_unique.hpp"
|
2013-07-14 01:57:26 +02:00
|
|
|
|
|
|
|
using namespace std;
|
2013-08-19 07:17:04 +02:00
|
|
|
namespace testing_helpers {
|
|
|
|
|
|
|
|
bool removeFile(std::string path_to_file) {
|
|
|
|
return (0 == std::remove(path_to_file.c_str()));
|
|
|
|
}
|
|
|
|
|
2013-10-05 06:14:35 +02:00
|
|
|
|
|
|
|
size_t LogFileCleaner::size() {
|
2013-08-19 07:17:04 +02:00
|
|
|
return logs_to_clean_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
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-07-14 03:33:00 +02:00
|
|
|
}
|
2013-08-19 07:17:04 +02:00
|
|
|
}
|
2013-10-05 06:14:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-21 07:40:39 +02:00
|
|
|
ScopedLogger::ScopedLogger()
|
2013-11-02 17:01:18 +01:00
|
|
|
: _previousWorker(g2::internal::shutDownLogging())
|
2013-08-21 07:40:39 +02:00
|
|
|
, _currentWorker(g2LogWorker::createWithNoSink()) {
|
|
|
|
g2::initializeLogging(_currentWorker.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedLogger::~ScopedLogger() {
|
2013-11-02 17:01:18 +01:00
|
|
|
auto* current = g2::internal::shutDownLogging();
|
2013-10-05 06:14:35 +02:00
|
|
|
CHECK(current == _currentWorker.get());
|
|
|
|
if (nullptr != _previousWorker) {
|
|
|
|
g2::initializeLogging(_previousWorker);
|
|
|
|
}
|
2013-08-21 07:40:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
g2LogWorker* ScopedLogger::get() {
|
2013-10-05 06:14:35 +02:00
|
|
|
return _currentWorker.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RestoreFileLogger::RestoreFileLogger(std::string directory)
|
|
|
|
: scope_(new ScopedLogger)
|
|
|
|
{
|
|
|
|
using namespace g2;
|
|
|
|
auto filehandler = scope_->get()->addSink(std2::make_unique<FileSink>("UNIT_TEST_LOGGER", directory), &FileSink::fileWrite);
|
|
|
|
|
|
|
|
internal::changeFatalInitHandlerForUnitTesting();
|
|
|
|
LOG(INFO) << "Restore logger test ";
|
|
|
|
auto filename = filehandler->call(&FileSink::fileName);
|
|
|
|
if (!filename.valid()) ADD_FAILURE();
|
|
|
|
log_file_ = filename.get();
|
2013-08-21 07:40:39 +02:00
|
|
|
}
|
|
|
|
|
2013-10-05 06:14:35 +02:00
|
|
|
RestoreFileLogger::~RestoreFileLogger() {
|
|
|
|
scope_.reset();
|
|
|
|
if (!removeFile(log_file_))
|
|
|
|
ADD_FAILURE();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-21 07:40:39 +02:00
|
|
|
|
2013-07-14 03:33:00 +02:00
|
|
|
|
2013-08-19 07:17:04 +02:00
|
|
|
} // testing_helpers
|