diff tests/src/libirccd/logger/main.cpp @ 611:9fbd1700435b

Tests: reoganize hierarchy
author David Demelier <markand@malikania.fr>
date Fri, 15 Dec 2017 15:37:58 +0100
parents tests/src/logger/main.cpp@e531f04507aa
children 27587ff92a64
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/src/libirccd/logger/main.cpp	Fri Dec 15 15:37:58 2017 +0100
@@ -0,0 +1,116 @@
+/*
+ * main.cpp -- test logger functions
+ *
+ * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <algorithm>
+
+#define BOOST_TEST_MODULE "Logger"
+#include <boost/test/unit_test.hpp>
+
+#include <irccd/daemon/logger.hpp>
+
+namespace irccd {
+
+class my_logger : public logger {
+public:
+    std::string line_debug;
+    std::string line_info;
+    std::string line_warning;
+
+    void write_debug(const std::string& line) override
+    {
+        line_debug = line;
+    }
+
+    void write_info(const std::string& line) override
+    {
+        line_info = line;
+    }
+
+    void write_warning(const std::string& line) override
+    {
+        line_warning = line;
+    }
+};
+
+class my_filter : public logger_filter {
+public:
+    std::string pre_debug(std::string input) const override
+    {
+        return std::reverse(input.begin(), input.end()), input;
+    }
+
+    std::string pre_info(std::string input) const override
+    {
+        return std::reverse(input.begin(), input.end()), input;
+    }
+
+    std::string pre_warning(std::string input) const override
+    {
+        return std::reverse(input.begin(), input.end()), input;
+    }
+};
+
+class logger_test {
+public:
+    my_logger log_;
+
+    logger_test()
+    {
+        log_.set_filter(std::make_unique<my_filter>());
+        log_.set_verbose(true);
+    }
+};
+
+BOOST_FIXTURE_TEST_SUITE(logger_test_suite, logger_test)
+
+#if !defined(NDEBUG)
+
+BOOST_AUTO_TEST_CASE(debug)
+{
+    log_.debug("debug");
+
+    BOOST_REQUIRE_EQUAL("gubed", log_.line_debug);
+}
+
+#endif
+
+BOOST_AUTO_TEST_CASE(info)
+{
+    log_.info("info");
+
+    BOOST_REQUIRE_EQUAL("ofni", log_.line_info);
+}
+
+BOOST_AUTO_TEST_CASE(info_quiet)
+{
+    log_.set_verbose(false);
+    log_.info("info");
+
+    BOOST_REQUIRE(log_.line_info.empty());
+}
+
+BOOST_AUTO_TEST_CASE(warning)
+{
+    log_.warning("warning");
+
+    BOOST_REQUIRE_EQUAL("gninraw", log_.line_warning);
+}
+
+BOOST_AUTO_TEST_SUITE_END()
+
+} // !irccd