def testLoggingConfigPath(self):
     # getLoggingConfTemplatePath() should return path to ../logging.conf
     tempLS = LS()
     tempLS.initLogging()
     self.assertEqual(
         os.path.join(logging_support_raw._APPLICATION_CONF_DIR,
                      "logging.conf"), tempLS.getLoggingConfTemplatePath())
Ejemplo n.º 2
0
 def testLoggingAppPath(self):
   # getApplicationLogFilePath() should return path to ../app_name.log
   app_name = "py"  # Because called with py.test
   with self._redirectLogBase(app_name, _SAMPLE_CONNECTION_CONTENTS):
     temp_ls = LS()
     temp_ls.initLogging("DEBUG", "stderr", True)
     self.assertEqual(os.path.abspath(os.path.join(temp_ls.getLoggingRootDir(), "processes", app_name + ".log")), temp_ls.getApplicationLogFilePath())
Ejemplo n.º 3
0
 def testLogFilePathExists(self):
   # Directory containing the log file should be created; loggin_support.py line 250-257
   with self._redirectLogBase("logging_example", _SAMPLE_CONNECTION_CONTENTS):
     temp_ls = LS()
     temp_ls.initLogging("DEBUG", "stderr", True)
     path = temp_ls.getApplicationLogFilePath()
     self.assertTrue(os.path.isdir(os.path.dirname(path)))
 def testLoggingRootPath(self):
     # getLoggingRootDir() should return the temp path
     with self._redirectLogBase("logging_example",
                                _SAMPLE_CONNECTION_CONTENTS):
         tempLS = LS()
         tempLS.initLogging("DEBUG", "stderr", True)
         self.assertEqual(tempLS.getLoggingRootDir(),
                          os.path.join(self._tempDir, "log"))
 def testInitLoggingInputs(self):
     # Invalid loggingLevel throws a ValueError
     tempLS = LS()
     with self.assertRaises(ValueError):
         tempLS.initLogging("DEBUGGING")
     # Invalid console throws a ValueError
     with self.assertRaises(ValueError):
         tempLS.initLogging("DEBUG", "stderror")
Ejemplo n.º 6
0
 def testInitLoggingNullHandlers(self):
     # Null handlers should throw ConfigParser.NoOptionError and print a sys.stderr message
     temp_ls = LS()
     with self.assertRaises(ConfigParser.NoOptionError):
         temp_ls.initLogging(None, None)
         assertEqual(
             sys.stderr.getvalue(),
             "WARNING: logging_support is disabling logging output because all output handlers are disabled"
         )
 def testLoggingAppPath(self):
     # getApplicationLogFilePath() should return path to ../appName.log
     appName = os.path.splitext(os.path.basename(sys.argv[0]))[0]
     with self._redirectLogBase(appName, _SAMPLE_CONNECTION_CONTENTS):
         tempLS = LS()
         tempLS.initLogging("DEBUG", "stderr", True)
         self.assertEqual(
             os.path.abspath(
                 os.path.join(tempLS.getLoggingRootDir(), "processes",
                              appName + ".log")),
             tempLS.getApplicationLogFilePath())
     self.assertIn(appName, ["py", "run_tests"])