qutebrowser/test/utils/test_debug.py

168 lines
5.4 KiB
Python
Raw Normal View History

2015-01-03 15:51:31 +01:00
# Copyright 2014-2015 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
2014-06-20 06:23:41 +02:00
#
# This file is part of qutebrowser.
#
# qutebrowser 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 3 of the License, or
# (at your option) any later version.
#
# qutebrowser 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 qutebrowser. If not, see <http://www.gnu.org/licenses/>.
"""Tests for qutebrowser.utils.debug."""
2015-03-16 06:43:56 +01:00
import re
import time
import logging
2014-06-20 06:23:41 +02:00
from PyQt5.QtCore import Qt
2014-06-20 06:23:41 +02:00
from PyQt5.QtWidgets import QStyle, QFrame
2015-04-04 18:39:04 +02:00
import pytest
2014-06-20 06:23:41 +02:00
2014-08-26 19:10:14 +02:00
from qutebrowser.utils import debug
2014-06-20 06:23:41 +02:00
2015-04-04 18:39:04 +02:00
class TestQEnumKey:
2014-06-20 06:23:41 +02:00
"""Tests for qenum_key."""
def test_no_metaobj(self):
"""Test with an enum with no metaobject."""
2015-04-04 18:39:04 +02:00
with pytest.raises(AttributeError):
# Make sure it doesn't have a meta object
2014-06-23 19:44:21 +02:00
# pylint: disable=pointless-statement,no-member
2014-06-20 06:23:41 +02:00
QStyle.PrimitiveElement.staticMetaObject
key = debug.qenum_key(QStyle, QStyle.PE_PanelButtonCommand)
2015-04-04 18:39:04 +02:00
assert key == 'PE_PanelButtonCommand'
2014-06-20 06:23:41 +02:00
def test_metaobj(self):
"""Test with an enum with metaobject."""
2014-06-23 19:44:21 +02:00
# pylint: disable=pointless-statement
QFrame.staticMetaObject # make sure it has a metaobject
2014-06-20 06:23:41 +02:00
key = debug.qenum_key(QFrame, QFrame.Sunken)
2015-04-04 18:39:04 +02:00
assert key == 'Sunken'
2014-06-20 06:23:41 +02:00
2014-08-07 07:35:05 +02:00
def test_add_base(self):
"""Test with add_base=True."""
key = debug.qenum_key(QFrame, QFrame.Sunken, add_base=True)
2015-04-04 18:39:04 +02:00
assert key == 'QFrame.Sunken'
2014-08-07 07:35:05 +02:00
def test_int_noklass(self):
"""Test passing an int without explicit klass given."""
2015-04-04 18:39:04 +02:00
with pytest.raises(TypeError):
2014-08-07 07:35:05 +02:00
debug.qenum_key(QFrame, 42)
def test_int(self):
"""Test passing an int with explicit klass given."""
key = debug.qenum_key(QFrame, 0x0030, klass=QFrame.Shadow)
2015-04-04 18:39:04 +02:00
assert key == 'Sunken'
2014-08-07 07:35:05 +02:00
def test_unknown(self):
"""Test passing an unknown value."""
key = debug.qenum_key(QFrame, 0x1337, klass=QFrame.Shadow)
2015-04-04 18:39:04 +02:00
assert key == '0x1337'
def test_reconverted(self):
"""Test passing a flag value which was re-converted to an enum."""
# FIXME maybe this should return the right thing anyways?
debug.qenum_key(Qt, Qt.Alignment(int(Qt.AlignLeft)))
2014-06-20 06:23:41 +02:00
2014-08-07 14:41:39 +02:00
2015-04-04 18:39:04 +02:00
class TestQFlagsKey:
2014-08-07 14:41:39 +02:00
2014-08-07 14:47:39 +02:00
"""Tests for qflags_key()."""
2015-04-04 18:39:04 +02:00
fail_issue42 = pytest.mark.xfail(
reason='https://github.com/The-Compiler/qutebrowser/issues/42')
2014-10-01 22:23:27 +02:00
2015-04-04 18:39:04 +02:00
@fail_issue42
2014-08-07 14:41:39 +02:00
def test_single(self):
"""Test with single value."""
flags = debug.qflags_key(Qt, Qt.AlignTop)
2015-04-04 18:39:04 +02:00
assert flags == 'AlignTop'
2014-08-07 14:41:39 +02:00
2015-04-04 18:39:04 +02:00
@fail_issue42
2014-08-07 14:41:39 +02:00
def test_multiple(self):
"""Test with multiple values."""
flags = debug.qflags_key(Qt, Qt.AlignLeft | Qt.AlignTop)
2015-04-04 18:39:04 +02:00
assert flags == 'AlignLeft|AlignTop'
2014-08-07 14:41:39 +02:00
def test_combined(self):
"""Test with a combined value."""
flags = debug.qflags_key(Qt, Qt.AlignCenter)
2015-04-04 18:39:04 +02:00
assert flags == 'AlignHCenter|AlignVCenter'
2014-08-07 14:41:39 +02:00
2015-04-04 18:39:04 +02:00
@fail_issue42
2014-08-07 14:41:39 +02:00
def test_add_base(self):
"""Test with add_base=True."""
flags = debug.qflags_key(Qt, Qt.AlignTop, add_base=True)
2015-04-04 18:39:04 +02:00
assert flags == 'Qt.AlignTop'
2014-08-07 14:41:39 +02:00
def test_int_noklass(self):
"""Test passing an int without explicit klass given."""
2015-04-04 18:39:04 +02:00
with pytest.raises(TypeError):
2014-08-07 14:41:39 +02:00
debug.qflags_key(Qt, 42)
2015-04-04 18:39:04 +02:00
@fail_issue42
2014-08-07 14:41:39 +02:00
def test_int(self):
"""Test passing an int with explicit klass given."""
flags = debug.qflags_key(Qt, 0x0021, klass=Qt.Alignment)
2015-04-04 18:39:04 +02:00
assert flags == 'AlignLeft|AlignTop'
2014-08-07 14:41:39 +02:00
def test_unknown(self):
"""Test passing an unknown value."""
flags = debug.qflags_key(Qt, 0x1100, klass=Qt.Alignment)
2015-04-04 18:39:04 +02:00
assert flags == '0x0100|0x1000'
2014-08-07 14:41:39 +02:00
2015-04-04 18:39:04 +02:00
class TestDebug:
2014-06-23 07:11:15 +02:00
"""Test signal debug output functions."""
2015-04-04 18:39:04 +02:00
@pytest.fixture
def signal(self, stubs):
return stubs.FakeSignal()
2014-06-23 07:11:15 +02:00
2015-04-04 18:39:04 +02:00
def test_signal_name(self, signal):
2014-06-23 07:11:15 +02:00
"""Test signal_name()."""
2015-04-04 18:39:04 +02:00
assert debug.signal_name(signal) == 'fake'
2014-06-23 07:11:15 +02:00
2015-04-04 18:39:04 +02:00
def test_dbg_signal(self, signal):
2014-06-23 07:11:15 +02:00
"""Test dbg_signal()."""
2015-04-04 18:39:04 +02:00
assert debug.dbg_signal(signal, [23, 42]) == 'fake(23, 42)'
2014-06-23 07:11:15 +02:00
2015-04-04 18:39:04 +02:00
def test_dbg_signal_eliding(self, signal):
2014-06-23 07:11:15 +02:00
"""Test eliding in dbg_signal()."""
2015-04-04 18:39:04 +02:00
assert debug.dbg_signal(signal, ['x' * 201]) == \
"fake('{}\u2026)".format('x' * 198)
2014-06-23 07:11:15 +02:00
2015-04-04 18:39:04 +02:00
def test_dbg_signal_newline(self, signal):
2014-06-23 07:11:15 +02:00
"""Test dbg_signal() with a newline."""
2015-04-04 18:39:04 +02:00
assert debug.dbg_signal(signal, ['foo\nbar']) == r"fake('foo\nbar')"
2014-06-23 07:11:15 +02:00
2015-04-04 18:39:04 +02:00
class TestLogTime:
2015-03-16 06:43:56 +01:00
"""Test log_time."""
2015-04-04 18:39:04 +02:00
def test_log_time(self, caplog):
2015-03-17 06:39:02 +01:00
"""Test if log_time logs properly."""
2015-03-16 06:43:56 +01:00
logger = logging.getLogger('qt-tests')
2015-04-04 18:39:04 +02:00
with caplog.atLevel(logging.DEBUG, logger.name):
2015-03-16 06:43:56 +01:00
with debug.log_time(logger, action='foobar'):
time.sleep(0.1)
2015-04-04 18:39:04 +02:00
assert len(caplog.records()) == 1
2015-03-16 06:43:56 +01:00
pattern = re.compile(r'^Foobar took ([\d.]*) seconds\.$')
2015-04-04 18:39:04 +02:00
match = pattern.match(caplog.records()[0].msg)
assert match
2015-03-16 06:43:56 +01:00
duration = float(match.group(1))
2015-04-04 18:39:04 +02:00
assert 0.09 <= duration <= 0.11