Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_misc.cpp « tests - github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73ef926b32437fc203ff9aec1f2d886b38cae401 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include "includes.h"

template<class T>
std::string log_info(const T &what, spdlog::level::level_enum logger_level = spdlog::level::info)
{

    std::ostringstream oss;
    auto oss_sink = std::make_shared<spdlog::sinks::ostream_sink_mt>(oss);

    spdlog::logger oss_logger("oss", oss_sink);
    oss_logger.set_level(logger_level);
    oss_logger.set_pattern("%v");
    oss_logger.info(what);

    return oss.str().substr(0, oss.str().length() - strlen(spdlog::details::os::default_eol));
}

TEST_CASE("basic_logging ", "[basic_logging]")
{
    // const char
    REQUIRE(log_info("Hello") == "Hello");
    REQUIRE(log_info("") == "");

    // std::string
    REQUIRE(log_info(std::string("Hello")) == "Hello");
    REQUIRE(log_info(std::string()) == std::string());

    // Numbers
    REQUIRE(log_info(5) == "5");
    REQUIRE(log_info(5.6) == "5.6");

    // User defined class
    // REQUIRE(log_info(some_logged_class("some_val")) == "some_val");
}

TEST_CASE("log_levels", "[log_levels]")
{
    REQUIRE(log_info("Hello", spdlog::level::err) == "");
    REQUIRE(log_info("Hello", spdlog::level::critical) == "");
    REQUIRE(log_info("Hello", spdlog::level::info) == "Hello");
    REQUIRE(log_info("Hello", spdlog::level::debug) == "Hello");
    REQUIRE(log_info("Hello", spdlog::level::trace) == "Hello");
}

TEST_CASE("to_str", "[convert_to_str]")
{
    REQUIRE(std::string(spdlog::level::to_str(spdlog::level::trace)) == "trace");
    REQUIRE(std::string(spdlog::level::to_str(spdlog::level::debug)) == "debug");
    REQUIRE(std::string(spdlog::level::to_str(spdlog::level::info)) == "info");
    REQUIRE(std::string(spdlog::level::to_str(spdlog::level::warn)) == "warning");
    REQUIRE(std::string(spdlog::level::to_str(spdlog::level::err)) == "error");
    REQUIRE(std::string(spdlog::level::to_str(spdlog::level::critical)) == "critical");
    REQUIRE(std::string(spdlog::level::to_str(spdlog::level::off)) == "off");
}

TEST_CASE("to_short_str", "[convert_to_short_str]")
{
    REQUIRE(std::string(spdlog::level::to_short_str(spdlog::level::trace)) == "T");
    REQUIRE(std::string(spdlog::level::to_short_str(spdlog::level::debug)) == "D");
    REQUIRE(std::string(spdlog::level::to_short_str(spdlog::level::info)) == "I");
    REQUIRE(std::string(spdlog::level::to_short_str(spdlog::level::warn)) == "W");
    REQUIRE(std::string(spdlog::level::to_short_str(spdlog::level::err)) == "E");
    REQUIRE(std::string(spdlog::level::to_short_str(spdlog::level::critical)) == "C");
    REQUIRE(std::string(spdlog::level::to_short_str(spdlog::level::off)) == "O");
}

TEST_CASE("to_level_enum", "[convert_to_level_enum]")
{
    REQUIRE(spdlog::level::from_str("trace") == spdlog::level::trace);
    REQUIRE(spdlog::level::from_str("debug") == spdlog::level::debug);
    REQUIRE(spdlog::level::from_str("info") == spdlog::level::info);
    REQUIRE(spdlog::level::from_str("warning") == spdlog::level::warn);
    REQUIRE(spdlog::level::from_str("error") == spdlog::level::err);
    REQUIRE(spdlog::level::from_str("critical") == spdlog::level::critical);
    REQUIRE(spdlog::level::from_str("off") == spdlog::level::off);
    REQUIRE(spdlog::level::from_str("null") == spdlog::level::off);
}