123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-20
- * Changed: 2022-05-20
- *
- * */
- #include <gtest/gtest.h>
- #include <ls_std/ls_std_core.hpp>
- #include <ls_std/ls_std_io.hpp>
- #include "TestHelper.hpp"
- namespace
- {
- class LoggerTest : public ::testing::Test
- {
- protected:
- LoggerTest() = default;
- ~LoggerTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- static ::std::shared_ptr<ls::std::core::interface_type::IWriter> createFileLogger(const ::std::string &_logName)
- {
- ::std::string path = ls_std_test::TestHelper::getResourcesFolderLocation() + _logName;
- ls::std::io::File file{path};
- if (!file.exists())
- {
- file.createNewFile();
- }
- ::std::shared_ptr<ls::std::core::interface_type::IWriter> writer = ::std::dynamic_pointer_cast<ls::std::core::interface_type::IWriter>(::std::make_shared<ls::std::io::FileOutputStream>(file));
- return writer;
- }
- static ::std::string getContentFromLogFile(const ::std::string &_logName)
- {
- ls::std::io::File file{ls_std_test::TestHelper::getResourcesFolderLocation() + _logName};
- ls::std::io::FileReader reader{file};
- ::std::string content{reader.read()};
- file.remove();
- return content;
- }
- };
- TEST_F(LoggerTest, constructor_no_writer_reference)
- {
- EXPECT_THROW({
- try
- {
- ls::std::io::Logger logger{nullptr};
- }
- catch (const ls::std::core::IllegalArgumentException &_exception)
- {
- throw;
- }
- }, ls::std::core::IllegalArgumentException);
- }
- TEST_F(LoggerTest, debug)
- {
- // write to log file
- ::std::string logName = "output_debug.log";
- ::std::shared_ptr<ls::std::core::interface_type::IWriter> writer = createFileLogger(logName);
- ls::std::io::Logger logger{writer};
- logger.setLogLevel(ls::std::io::LogLevelValue::DEBUG);
- logger.debug("1. line!");
- logger.info("2. line!");
- logger.error("3. line!");
- logger.fatal("4. line!");
- logger.warn("5. line!");
- logger.trace("6. line!");
- // get content and check
- ::std::dynamic_pointer_cast<ls::std::io::FileOutputStream>(writer)->close();
- ::std::string content = getContentFromLogFile(logName);
- ASSERT_TRUE(content.find("1. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("2. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("3. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("4. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("5. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("6. line!") != ::std::string::npos);
- }
- TEST_F(LoggerTest, error)
- {
- // write to log file
- ::std::string logName = "output_error.log";
- ::std::shared_ptr<ls::std::core::interface_type::IWriter> writer = createFileLogger(logName);
- ls::std::io::Logger logger{writer};
- logger.setLogLevel(ls::std::io::LogLevelValue::ERR);
- logger.debug("1. line!");
- logger.info("2. line!");
- logger.error("3. line!");
- logger.fatal("4. line!");
- logger.warn("5. line!");
- logger.trace("6. line!");
- // get content and check
- ::std::dynamic_pointer_cast<ls::std::io::FileOutputStream>(writer)->close();
- ::std::string content = getContentFromLogFile(logName);
- ASSERT_FALSE(content.find("1. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("2. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("3. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("4. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("5. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("6. line!") != ::std::string::npos);
- }
- TEST_F(LoggerTest, fatal)
- {
- // write to log file
- ::std::string logName = "output_fatal.log";
- ::std::shared_ptr<ls::std::core::interface_type::IWriter> writer = createFileLogger(logName);
- ls::std::io::Logger logger{writer};
- logger.setLogLevel(ls::std::io::LogLevelValue::FATAL);
- logger.debug("1. line!");
- logger.info("2. line!");
- logger.error("3. line!");
- logger.fatal("4. line!");
- logger.warn("5. line!");
- logger.trace("6. line!");
- // get content and check
- ::std::dynamic_pointer_cast<ls::std::io::FileOutputStream>(writer)->close();
- ::std::string content = getContentFromLogFile(logName);
- ASSERT_FALSE(content.find("1. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("2. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("3. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("4. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("5. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("6. line!") != ::std::string::npos);
- }
- TEST_F(LoggerTest, getLogLevel)
- {
- ls::std::io::Logger logger{createFileLogger("output.log")};
- ASSERT_EQ(ls::std::io::LogLevelValue::INFO, logger.getLogLevel());
- }
- TEST_F(LoggerTest, info)
- {
- // write to log file
- ::std::string logName = "output_info.log";
- ::std::shared_ptr<ls::std::core::interface_type::IWriter> writer = createFileLogger(logName);
- ls::std::io::Logger logger{writer};
- logger.setLogLevel(ls::std::io::LogLevelValue::INFO);
- logger.fatal("1. line!");
- logger.error("2. line!");
- logger.warn("3. line!");
- logger.info("4. line!");
- logger.debug("5. line!");
- logger.trace("6. line!");
- // get content and check
- ::std::dynamic_pointer_cast<ls::std::io::FileOutputStream>(writer)->close();
- ::std::string content = getContentFromLogFile(logName);
- ASSERT_TRUE(content.find("1. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("2. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("3. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("4. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("5. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("6. line!") != ::std::string::npos);
- }
- TEST_F(LoggerTest, setLogLevel)
- {
- ls::std::io::Logger logger{createFileLogger("output.log")};
- logger.setLogLevel(ls::std::io::LogLevelValue::ERR);
- ASSERT_EQ(ls::std::io::LogLevelValue::ERR, logger.getLogLevel());
- }
- TEST_F(LoggerTest, trace)
- {
- // write to log file
- ::std::string logName = "output_trace.log";
- ::std::shared_ptr<ls::std::core::interface_type::IWriter> writer = createFileLogger(logName);
- ls::std::io::Logger logger{writer};
- logger.setLogLevel(ls::std::io::LogLevelValue::TRACE);
- logger.fatal("1. line!");
- logger.error("2. line!");
- logger.warn("3. line!");
- logger.info("4. line!");
- logger.debug("5. line!");
- logger.trace("6. line!");
- // get content and check
- ::std::dynamic_pointer_cast<ls::std::io::FileOutputStream>(writer)->close();
- ::std::string content = getContentFromLogFile(logName);
- ASSERT_TRUE(content.find("1. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("2. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("3. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("4. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("5. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("6. line!") != ::std::string::npos);
- }
- TEST_F(LoggerTest, warn)
- {
- // write to log file
- ::std::string logName = "output_warn.log";
- ::std::shared_ptr<ls::std::core::interface_type::IWriter> writer = createFileLogger(logName);
- ls::std::io::Logger logger{writer};
- logger.setLogLevel(ls::std::io::LogLevelValue::WARN);
- logger.fatal("1. line!");
- logger.error("2. line!");
- logger.warn("3. line!");
- logger.info("4. line!");
- logger.debug("5. line!");
- logger.trace("6. line!");
- // get content and check
- ::std::dynamic_pointer_cast<ls::std::io::FileOutputStream>(writer)->close();
- ::std::string content = getContentFromLogFile(logName);
- ASSERT_TRUE(content.find("1. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("2. line!") != ::std::string::npos);
- ASSERT_TRUE(content.find("3. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("4. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("5. line!") != ::std::string::npos);
- ASSERT_FALSE(content.find("6. line!") != ::std::string::npos);
- }
- }
|