blob: bde28c9a653ab5b0aff12b93bb3665e55cf1d0bb (
plain)
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
50
51
52
53
54
55
56
57
|
#include "catch.hpp"
#include <logger/logger.hpp>
#include <config/config.hpp>
#include "io_tester.hpp"
#include <iostream>
using namespace std::string_literals;
TEST_CASE("Basic logging")
{
#ifdef SYSTEMD_FOUND
const std::string debug_header = "<7>";
const std::string error_header = "<3>";
#else
const std::string debug_header = "[DEBUG]: ";
const std::string error_header = "[ERROR]: ";
#endif
Logger::instance().reset();
GIVEN("A logger with log_level 0")
{
Config::set("log_level", "0");
WHEN("we log some debug text")
{
IoTester<std::ostream> out(std::clog);
log_debug("deb", "ug");
THEN("debug logs are written")
CHECK(out.str() == debug_header + "tests/logger.cpp:" + std::to_string(__LINE__ - 2) + ":\tdebug\n");
}
WHEN("we log some errors")
{
IoTester<std::ostream> out(std::clog);
log_error("err", 12, "or");
THEN("error logs are written")
CHECK(out.str() == error_header + "tests/logger.cpp:" + std::to_string(__LINE__ - 2) + ":\terr12or\n");
}
}
GIVEN("A logger with log_level 3")
{
Config::set("log_level", "3");
WHEN("we log some debug text")
{
IoTester<std::ostream> out(std::clog);
log_debug(123, "debug");
THEN("nothing is written")
CHECK(out.str().empty());
}
WHEN("we log some errors")
{
IoTester<std::ostream> out(std::clog);
log_error(123, " errors");
THEN("error logs are still written")
CHECK(out.str() == error_header + "tests/logger.cpp:" + std::to_string(__LINE__ - 2) + ":\t123 errors\n");
}
}
}
|