2013-06-25 01:01:17 +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
|
2014-08-09 07:59:07 +05:30
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2013-06-25 01:01:17 +05:30
|
|
|
#
|
|
|
|
|
|
|
|
# test/GrampsLogger/ErrorReportAssistant_Test.py
|
|
|
|
|
2006-01-06 17:47:32 +05:30
|
|
|
import unittest
|
|
|
|
import logging
|
|
|
|
import sys
|
2013-07-24 12:00:59 +05:30
|
|
|
import os
|
2006-01-06 17:47:32 +05:30
|
|
|
|
|
|
|
log = logging.getLogger("Gramps.Tests.GrampsLogger")
|
2013-07-24 12:00:59 +05:30
|
|
|
import gramps.gen.const as const
|
2023-07-31 19:10:59 +05:30
|
|
|
|
2013-07-24 12:00:59 +05:30
|
|
|
const.rootDir = os.path.join(os.path.dirname(__file__), "../../gramps")
|
|
|
|
sys.path.append(os.path.join(const.rootDir, "test"))
|
2006-01-06 17:47:32 +05:30
|
|
|
try:
|
|
|
|
from guitest.gtktest import GtkTestCase
|
2023-07-31 19:10:59 +05:30
|
|
|
|
2006-01-06 17:47:32 +05:30
|
|
|
TestCaseBase = GtkTestCase
|
|
|
|
log.info("Using guitest")
|
|
|
|
except:
|
|
|
|
TestCaseBase = unittest.TestCase
|
|
|
|
|
2013-07-24 12:00:59 +05:30
|
|
|
sys.path.append(const.rootDir)
|
|
|
|
sys.path.append(os.path.join(const.rootDir, "GrampsLogger"))
|
2006-01-06 17:47:32 +05:30
|
|
|
|
2013-07-24 12:00:59 +05:30
|
|
|
from gramps.gui.logger import RotateHandler, _errorreportassistant
|
2006-01-06 17:47:32 +05:30
|
|
|
|
2023-07-31 19:10:59 +05:30
|
|
|
|
2006-01-06 17:47:32 +05:30
|
|
|
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
|
|
|
|
2006-01-06 17:47:32 +05:30
|
|
|
rh = RotateHandler(10)
|
|
|
|
l = logging.getLogger("ErrorReportAssistantTest")
|
|
|
|
l.setLevel(logging.DEBUG)
|
2011-01-22 22:16:34 +05:30
|
|
|
|
2006-01-06 17:47:32 +05:30
|
|
|
l.addHandler(rh)
|
|
|
|
l.info("info message")
|
|
|
|
|
2016-08-20 01:57:53 +05:30
|
|
|
# Comment this out because there is noone to close the dialogue
|
|
|
|
# error_detail="Test error"
|
|
|
|
# ass = _errorreportassistant.ErrorReportAssistant(error_detail=error_detail,
|
|
|
|
# rotate_handler=rh)
|
2016-08-20 02:16:15 +05:30
|
|
|
#
|
2016-08-20 01:57:53 +05:30
|
|
|
# assert ass._error_detail == error_detail
|
2011-01-22 22:16:34 +05:30
|
|
|
|
2006-01-06 17:47:32 +05:30
|
|
|
l.removeHandler(rh)
|
2011-01-22 22:16:34 +05:30
|
|
|
|
2023-07-31 19:10:59 +05:30
|
|
|
|
2006-01-06 17:47:32 +05:30
|
|
|
def testSuite():
|
|
|
|
suite = unittest.makeSuite(ErrorReportAssistantTest, "test")
|
|
|
|
return suite
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.TextTestRunner().run(testSuite())
|