1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
* Copyright (c) 2019 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <vector>
#include <boost/algorithm/string/predicate.hpp>
#include <gtest/gtest.h>
#include <Swiften/Base/Log.h>
using namespace Swift;
struct LogEntry {
LogEntry(Log::Severity severity, std::string file, int line, std::string function, std::string message) : severity(severity), file(std::move(file)), line(line), function(std::move(function)), message(std::move(message)) {}
Log::Severity severity;
std::string file;
int line;
std::string function;
std::string message;
};
// Helper class to set the logging callback. Using this class to set it will ensure the
// logCallback is reset to empty (its default state) after each test.
class LogCallbackSetter {
public:
LogCallbackSetter(Log::Callback callback) {
Log::setLogCallback(callback);
}
~LogCallbackSetter() {
Log::setLogCallback({});
}
};
TEST(LogTest, testCallback) {
std::vector<LogEntry> logEntries;
LogCallbackSetter callbackSetter = {[&](Log::Severity severity, const std::string& file, int line, const std::string& function, const std::string& message) {
logEntries.emplace_back(severity, file, line, function, message);
}};
SWIFT_LOG(error) << "An error";
ASSERT_EQ(1, logEntries.size());
ASSERT_EQ(Log::error, logEntries[0].severity);
ASSERT_EQ("An error", logEntries[0].message);
}
|