summaryrefslogtreecommitdiff
path: root/Lib/test/test_logging.py
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2011-04-27 11:31:14 +0100
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2011-04-27 11:31:14 +0100
commit5a35b06d5e5b6d12abcc1529cbb643fdcf0d35ab (patch)
treea492e1c7f09f682c52c08c073e4e9f8f94355efa /Lib/test/test_logging.py
parent86a96cee23cfba177f93ceb69f7441e66731c06f (diff)
downloadcpython-git-5a35b06d5e5b6d12abcc1529cbb643fdcf0d35ab.tar.gz
test_logging coverage improvements.
Diffstat (limited to 'Lib/test/test_logging.py')
-rw-r--r--Lib/test/test_logging.py46
1 files changed, 44 insertions, 2 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
index e35a614ab4..567d084f0b 100644
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -508,8 +508,50 @@ class HandlerTest(BaseTest):
self.assertEqual(h.name, 'anothergeneric')
self.assertRaises(NotImplementedError, h.emit, None)
- def test_abc(self):
- pass
+ def test_builtin_handlers(self):
+ # We can't actually *use* too many handlers in the tests,
+ # but we can try instantiating them with various options
+ if sys.platform in ('linux2', 'darwin'):
+ for existing in (True, False):
+ fd, fn = tempfile.mkstemp()
+ os.close(fd)
+ if not existing:
+ os.unlink(fn)
+ h = logging.handlers.WatchedFileHandler(fn, delay=True)
+ if existing:
+ self.assertNotEqual(h.dev, -1)
+ self.assertNotEqual(h.ino, -1)
+ else:
+ self.assertEqual(h.dev, -1)
+ self.assertEqual(h.ino, -1)
+ h.close()
+ if existing:
+ os.unlink(fn)
+ if sys.platform == 'darwin':
+ sockname = '/var/run/log'
+ else:
+ sockname = '/dev/log'
+ h = logging.handlers.SysLogHandler(sockname)
+ self.assertEqual(h.facility, h.LOG_USER)
+ self.assertTrue(h.unixsocket)
+ h.close()
+ h = logging.handlers.SMTPHandler('localhost', 'me', 'you', 'Log')
+ self.assertEqual(h.toaddrs, ['you'])
+ h.close()
+ for method in ('GET', 'POST', 'PUT'):
+ if method == 'PUT':
+ self.assertRaises(ValueError, logging.handlers.HTTPHandler,
+ 'localhost', '/log', method)
+ else:
+ h = logging.handlers.HTTPHandler('localhost', '/log', method)
+ h.close()
+ h = logging.handlers.BufferingHandler(0)
+ r = logging.makeLogRecord({})
+ self.assertTrue(h.shouldFlush(r))
+ h.close()
+ h = logging.handlers.BufferingHandler(1)
+ self.assertFalse(h.shouldFlush(r))
+ h.close()
class BadStream(object):
def write(self, data):