Log test fixes
Add flushing, set directory correctly
This commit is contained in:
parent
7e1f1d2604
commit
d74020eb62
|
@ -7,6 +7,8 @@ import os
|
||||||
import tempfile
|
import tempfile
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
import pybitmessage.state
|
||||||
|
|
||||||
|
|
||||||
class TestLogger(unittest.TestCase):
|
class TestLogger(unittest.TestCase):
|
||||||
"""A test case for bmconfigparser"""
|
"""A test case for bmconfigparser"""
|
||||||
|
@ -38,6 +40,7 @@ handlers=default
|
||||||
def test_fileConfig(self):
|
def test_fileConfig(self):
|
||||||
"""Put logging.dat with special pattern and check it was used"""
|
"""Put logging.dat with special pattern and check it was used"""
|
||||||
tmp = os.environ['BITMESSAGE_HOME'] = tempfile.gettempdir()
|
tmp = os.environ['BITMESSAGE_HOME'] = tempfile.gettempdir()
|
||||||
|
pybitmessage.state.appdata = tmp
|
||||||
log_config = os.path.join(tmp, 'logging.dat')
|
log_config = os.path.join(tmp, 'logging.dat')
|
||||||
log_file = os.path.join(tmp, 'debug.log')
|
log_file = os.path.join(tmp, 'debug.log')
|
||||||
|
|
||||||
|
@ -65,5 +68,6 @@ handlers=default
|
||||||
self.assertEqual(logger, logger_)
|
self.assertEqual(logger, logger_)
|
||||||
|
|
||||||
logger_.info('Testing the logger...')
|
logger_.info('Testing the logger...')
|
||||||
|
logger_.handlers[0].flush()
|
||||||
|
|
||||||
self.assertRegexpMatches(open(log_file).read(), pattern)
|
self.assertRegexpMatches(open(log_file).read(), pattern)
|
||||||
|
|
Reference in New Issue
Block a user