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