gramps/test/GrampsLogger/GtkHandler_Test.py
2023-07-31 14:40:59 +01:00

80 lines
2.2 KiB
Python

#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# test/GrampsLogger/GtkHandler_Test.py
import unittest
import logging
import sys
from gi.repository import Gtk
import os
log = logging.getLogger("Gramps.Tests.GrampsLogger")
import gramps.gen.const as const
const.rootDir = os.path.join(os.path.dirname(__file__), "../../gramps")
sys.path.append(os.path.join(const.rootDir, "test"))
sys.path.append(const.rootDir)
from gramps.gui.logger import RotateHandler, GtkHandler
class GtkHandlerTest(unittest.TestCase):
"""Test the GtkHandler."""
def test_window(self):
"""Test that the window appears."""
rh = RotateHandler(capacity=20)
rh.setLevel(logging.DEBUG)
gtkh = GtkHandler(rotate_handler=rh)
gtkh.setLevel(logging.ERROR)
l = logging.getLogger("GtkHandlerTest")
l.setLevel(logging.DEBUG)
l.addHandler(rh)
l.addHandler(gtkh)
l.info("An info message")
l.warn("A warn message")
l.debug("A debug message")
log_message = "Debug message"
# Comment this out because there is noone to close the dialogue
# try:
# wibble
# except:
# l.error(log_message,exc_info=True)
#
# while Gtk.events_pending():
# Gtk.main_iteration()
def testSuite():
suite = unittest.makeSuite(GtkHandlerTest, "test")
return suite
if __name__ == "__main__":
unittest.TextTestRunner().run(testSuite())