gramps/test/GrampsLogger/ErrorReportAssistant_Test.py

76 lines
2.1 KiB
Python
Raw Normal View History

#
# 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/ErrorReportAssistant_Test.py
# $Id$
import unittest
import logging
import sys
log = logging.getLogger('Gramps.Tests.GrampsLogger')
sys.path.append('..')
try:
from guitest.gtktest import GtkTestCase
TestCaseBase = GtkTestCase
log.info("Using guitest")
except:
TestCaseBase = unittest.TestCase
sys.path.append('../../src')
sys.path.append('../../src/GrampsLogger')
import const
const.rootDir = "../../src"
from GrampsLogger import RotateHandler
import _ErrorReportAssistant
class ErrorReportAssistantTest(TestCaseBase):
"""Test the ErrorReportAssistant."""
def test_buffer_recall(self):
"""Test that simple recall of messages works."""
2011-01-22 22:16:34 +05:30
rh = RotateHandler(10)
l = logging.getLogger("ErrorReportAssistantTest")
l.setLevel(logging.DEBUG)
2011-01-22 22:16:34 +05:30
l.addHandler(rh)
l.info("info message")
error_detail="Test error"
2011-01-22 22:16:34 +05:30
ass = _ErrorReportAssistant.ErrorReportAssistant(error_detail=error_detail,
rotate_handler=rh)
2011-01-22 22:16:34 +05:30
assert ass._error_detail == error_detail
l.removeHandler(rh)
2011-01-22 22:16:34 +05:30
def testSuite():
suite = unittest.makeSuite(ErrorReportAssistantTest,'test')
return suite
if __name__ == '__main__':
unittest.TextTestRunner().run(testSuite())