2013-06-25 01:00:56 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000-2007 Donald N. Allingham
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
|
|
|
# test/GrampsLogger/RotateLogger_Test.py
|
|
|
|
# $Id$
|
|
|
|
|
2006-01-05 21:32:27 +05:30
|
|
|
import unittest
|
|
|
|
import logging
|
|
|
|
import sys
|
Reviving RunAllTests.py on gramps40/trunk
Porting from gramps34 my fix for 6935, 6937, 6938.
Import with full "gramps." qualification from the tests,
to overcome the relative import problem (see bug# 6938 for context).
All testing code has been adjusted to the filename and paths
changes since gramps34.
Same as on gramps34, one test fails still, will investigate if
it is a test or a code bug:
ERROR: test_buffer_recall
(ErrorReportAssistant_Test.ErrorReportAssistantTest)
Test that simple recall of messages works.
----------------------------------------------------------------------
Traceback (most recent call last):
File "./GrampsLogger/ErrorReportAssistant_Test.py", line 60, in
test_buffer_recall
rotate_handler=rh)
File "../gramps/gui/logger/_errorreportassistant.py", line 81, in
__init__
self.build_page1()
File "../gramps/gui/logger/_errorreportassistant.py", line 267, in
build_page1
self._reset_error_details()
File "../gramps/gui/logger/_errorreportassistant.py", line 178, in
_reset_error_details
self._error_detail.get_record()))
AttributeError: 'str' object has no attribute 'get_record'
svn: r22729
2013-07-24 11:53:33 +05:30
|
|
|
import os
|
2006-01-05 21:32:27 +05:30
|
|
|
|
Reviving RunAllTests.py on gramps40/trunk
Porting from gramps34 my fix for 6935, 6937, 6938.
Import with full "gramps." qualification from the tests,
to overcome the relative import problem (see bug# 6938 for context).
All testing code has been adjusted to the filename and paths
changes since gramps34.
Same as on gramps34, one test fails still, will investigate if
it is a test or a code bug:
ERROR: test_buffer_recall
(ErrorReportAssistant_Test.ErrorReportAssistantTest)
Test that simple recall of messages works.
----------------------------------------------------------------------
Traceback (most recent call last):
File "./GrampsLogger/ErrorReportAssistant_Test.py", line 60, in
test_buffer_recall
rotate_handler=rh)
File "../gramps/gui/logger/_errorreportassistant.py", line 81, in
__init__
self.build_page1()
File "../gramps/gui/logger/_errorreportassistant.py", line 267, in
build_page1
self._reset_error_details()
File "../gramps/gui/logger/_errorreportassistant.py", line 178, in
_reset_error_details
self._error_detail.get_record()))
AttributeError: 'str' object has no attribute 'get_record'
svn: r22729
2013-07-24 11:53:33 +05:30
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '../../gramps/GrampsLogger'))
|
2006-01-05 21:32:27 +05:30
|
|
|
|
|
|
|
logger = logging.getLogger('Gramps.Tests.GrampsLogger')
|
|
|
|
|
Reviving RunAllTests.py on gramps40/trunk
Porting from gramps34 my fix for 6935, 6937, 6938.
Import with full "gramps." qualification from the tests,
to overcome the relative import problem (see bug# 6938 for context).
All testing code has been adjusted to the filename and paths
changes since gramps34.
Same as on gramps34, one test fails still, will investigate if
it is a test or a code bug:
ERROR: test_buffer_recall
(ErrorReportAssistant_Test.ErrorReportAssistantTest)
Test that simple recall of messages works.
----------------------------------------------------------------------
Traceback (most recent call last):
File "./GrampsLogger/ErrorReportAssistant_Test.py", line 60, in
test_buffer_recall
rotate_handler=rh)
File "../gramps/gui/logger/_errorreportassistant.py", line 81, in
__init__
self.build_page1()
File "../gramps/gui/logger/_errorreportassistant.py", line 267, in
build_page1
self._reset_error_details()
File "../gramps/gui/logger/_errorreportassistant.py", line 178, in
_reset_error_details
self._error_detail.get_record()))
AttributeError: 'str' object has no attribute 'get_record'
svn: r22729
2013-07-24 11:53:33 +05:30
|
|
|
from gramps.gui.logger import RotateHandler
|
2006-01-05 21:32:27 +05:30
|
|
|
|
|
|
|
class RotateHandlerTest(unittest.TestCase):
|
|
|
|
"""Test the RotateHandler."""
|
|
|
|
|
|
|
|
def test_buffer_recall(self):
|
|
|
|
"""Test that simple recall of messages works."""
|
|
|
|
|
Reviving RunAllTests.py on gramps40/trunk
Porting from gramps34 my fix for 6935, 6937, 6938.
Import with full "gramps." qualification from the tests,
to overcome the relative import problem (see bug# 6938 for context).
All testing code has been adjusted to the filename and paths
changes since gramps34.
Same as on gramps34, one test fails still, will investigate if
it is a test or a code bug:
ERROR: test_buffer_recall
(ErrorReportAssistant_Test.ErrorReportAssistantTest)
Test that simple recall of messages works.
----------------------------------------------------------------------
Traceback (most recent call last):
File "./GrampsLogger/ErrorReportAssistant_Test.py", line 60, in
test_buffer_recall
rotate_handler=rh)
File "../gramps/gui/logger/_errorreportassistant.py", line 81, in
__init__
self.build_page1()
File "../gramps/gui/logger/_errorreportassistant.py", line 267, in
build_page1
self._reset_error_details()
File "../gramps/gui/logger/_errorreportassistant.py", line 178, in
_reset_error_details
self._error_detail.get_record()))
AttributeError: 'str' object has no attribute 'get_record'
svn: r22729
2013-07-24 11:53:33 +05:30
|
|
|
rh = RotateHandler(10)
|
2006-01-05 21:32:27 +05:30
|
|
|
l = logging.getLogger("RotateHandlerTest")
|
|
|
|
l.setLevel(logging.DEBUG)
|
|
|
|
|
|
|
|
l.addHandler(rh)
|
|
|
|
|
|
|
|
log_message = "Debug message"
|
|
|
|
l.info(log_message)
|
|
|
|
assert len(rh.get_buffer()) == 1, "Message buffer wrong size, should be '1' is '%d'" % (len(rh.get_buffer()))
|
|
|
|
assert rh.get_buffer()[0].getMessage() == log_message, \
|
|
|
|
"Message buffer content is wrong, should be '%s' is '%s'" \
|
|
|
|
% (log_message, rh.get_buffer()[0].getMessage())
|
|
|
|
|
|
|
|
l.removeHandler(rh)
|
|
|
|
|
|
|
|
|
|
|
|
def test_buffer_rotation(self):
|
|
|
|
"""Test that buffer correctly rolls over when capacity is reached."""
|
|
|
|
|
Reviving RunAllTests.py on gramps40/trunk
Porting from gramps34 my fix for 6935, 6937, 6938.
Import with full "gramps." qualification from the tests,
to overcome the relative import problem (see bug# 6938 for context).
All testing code has been adjusted to the filename and paths
changes since gramps34.
Same as on gramps34, one test fails still, will investigate if
it is a test or a code bug:
ERROR: test_buffer_recall
(ErrorReportAssistant_Test.ErrorReportAssistantTest)
Test that simple recall of messages works.
----------------------------------------------------------------------
Traceback (most recent call last):
File "./GrampsLogger/ErrorReportAssistant_Test.py", line 60, in
test_buffer_recall
rotate_handler=rh)
File "../gramps/gui/logger/_errorreportassistant.py", line 81, in
__init__
self.build_page1()
File "../gramps/gui/logger/_errorreportassistant.py", line 267, in
build_page1
self._reset_error_details()
File "../gramps/gui/logger/_errorreportassistant.py", line 178, in
_reset_error_details
self._error_detail.get_record()))
AttributeError: 'str' object has no attribute 'get_record'
svn: r22729
2013-07-24 11:53:33 +05:30
|
|
|
rh = RotateHandler(10)
|
2006-01-05 21:32:27 +05:30
|
|
|
l = logging.getLogger("RotateHandlerTest")
|
|
|
|
l.setLevel(logging.DEBUG)
|
|
|
|
|
|
|
|
l.addHandler(rh)
|
|
|
|
|
|
|
|
log_messages = 20 * [None]
|
|
|
|
for i in xrange(0,20):
|
|
|
|
log_messages[i] = "Message %d" % (i)
|
|
|
|
|
|
|
|
|
|
|
|
[l.info(log_messages[i]) for i in xrange(0,10)]
|
|
|
|
|
|
|
|
assert len(rh.get_buffer()) == 10, "Message buffer wrong size, should be '10' is '%d'" % (len(rh.get_buffer()))
|
|
|
|
|
|
|
|
buffer = rh.get_buffer()
|
|
|
|
|
|
|
|
for i in xrange(0,10):
|
|
|
|
assert buffer[i].getMessage() == log_messages[i], \
|
|
|
|
"Message buffer content is wrong, should be '%s' is '%s'. i = '%d'" \
|
|
|
|
% (log_messages[i], buffer[i].getMessage(),i)
|
|
|
|
|
|
|
|
|
|
|
|
l.info(log_messages[10])
|
|
|
|
|
|
|
|
buffer = rh.get_buffer()
|
|
|
|
|
|
|
|
for i in xrange(0,10):
|
|
|
|
assert buffer[i].getMessage() == log_messages[i+1], \
|
|
|
|
"Message buffer content is wrong, should be '%s' is '%s'. i = '%d'" \
|
|
|
|
% (log_messages[i+1], buffer[i].getMessage(),i)
|
|
|
|
|
|
|
|
|
|
|
|
[l.info(log_messages[i]) for i in xrange(11,20)]
|
|
|
|
|
|
|
|
buffer = rh.get_buffer()
|
|
|
|
for i in xrange(0,10):
|
|
|
|
assert buffer[i].getMessage() == log_messages[i+10], \
|
|
|
|
"Message buffer content is wrong, should be '%s' is '%s'. i = '%d'" \
|
|
|
|
% (log_messages[i+10], buffer[i].getMessage(),i)
|
|
|
|
|
|
|
|
l.removeHandler(rh)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def testSuite():
|
|
|
|
suite = unittest.makeSuite(RotateHandlerTest,'test')
|
|
|
|
return suite
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.TextTestRunner().run(testSuite())
|