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/GtkHandler_Test.py
|
|
|
|
|
2006-01-05 21:32:27 +05:30
|
|
|
import unittest
|
|
|
|
import logging
|
|
|
|
import sys
|
2012-06-18 02:55:37 +05:30
|
|
|
from gi.repository import Gtk
|
2013-07-24 12:00:59 +05:30
|
|
|
import os
|
2006-01-05 21:32:27 +05:30
|
|
|
|
2013-07-24 12:00:59 +05:30
|
|
|
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)
|
2006-01-05 21:32:27 +05:30
|
|
|
|
2013-07-24 12:00:59 +05:30
|
|
|
from gramps.gui.logger import RotateHandler, GtkHandler
|
2006-01-05 21:32:27 +05:30
|
|
|
|
|
|
|
class GtkHandlerTest(unittest.TestCase):
|
|
|
|
"""Test the GtkHandler."""
|
|
|
|
|
|
|
|
def test_window(self):
|
|
|
|
"""Test that the window appears."""
|
2006-01-06 00:37:27 +05:30
|
|
|
|
|
|
|
rh = RotateHandler(capacity=20)
|
|
|
|
rh.setLevel(logging.DEBUG)
|
2016-05-18 15:17:34 +05:30
|
|
|
|
2006-01-06 00:37:27 +05:30
|
|
|
gtkh = GtkHandler(rotate_handler=rh)
|
|
|
|
gtkh.setLevel(logging.ERROR)
|
|
|
|
|
2016-05-18 15:17:34 +05:30
|
|
|
l = logging.getLogger("GtkHandlerTest")
|
2006-01-06 00:37:27 +05:30
|
|
|
l.setLevel(logging.DEBUG)
|
|
|
|
|
2006-01-05 21:32:27 +05:30
|
|
|
l.addHandler(rh)
|
2006-01-06 00:37:27 +05:30
|
|
|
l.addHandler(gtkh)
|
2006-01-05 21:32:27 +05:30
|
|
|
|
2006-01-06 00:37:27 +05:30
|
|
|
l.info("An info message")
|
|
|
|
l.warn("A warn message")
|
|
|
|
l.debug("A debug message")
|
2006-01-05 21:32:27 +05:30
|
|
|
log_message = "Debug message"
|
2016-08-20 01:40:07 +05:30
|
|
|
# Comment this out because there is noone to close the dialogue
|
|
|
|
# try:
|
|
|
|
# wibble
|
|
|
|
# except:
|
|
|
|
# l.error(log_message,exc_info=True)
|
2016-08-20 01:57:53 +05:30
|
|
|
#
|
2016-08-20 01:40:07 +05:30
|
|
|
# while Gtk.events_pending():
|
|
|
|
# Gtk.main_iteration()
|
2006-01-05 21:32:27 +05:30
|
|
|
|
|
|
|
|
2016-05-18 15:17:34 +05:30
|
|
|
|
2006-01-05 21:32:27 +05:30
|
|
|
def testSuite():
|
|
|
|
suite = unittest.makeSuite(GtkHandlerTest,'test')
|
|
|
|
return suite
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.TextTestRunner().run(testSuite())
|