2014-12-15 22:06:11 +01:00
|
|
|
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
2017-05-09 21:37:03 +02:00
|
|
|
# Copyright 2014-2017 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
2014-12-15 22:06:11 +01: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.config.config."""
|
|
|
|
|
2017-07-02 16:05:04 +02:00
|
|
|
import pytest
|
|
|
|
from PyQt5.QtCore import QObject
|
|
|
|
|
2017-07-02 14:44:23 +02:00
|
|
|
from qutebrowser.config import config
|
2017-07-02 16:05:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Obj(QObject):
|
|
|
|
|
|
|
|
def __init__(self, stylesheet=None, parent=None):
|
|
|
|
super().__init__(parent)
|
|
|
|
if stylesheet is not None:
|
|
|
|
self.STYLESHEET = stylesheet # pylint: disable=invalid-name
|
|
|
|
self.rendered_stylesheet = None
|
|
|
|
|
|
|
|
def setStyleSheet(self, stylesheet):
|
|
|
|
self.rendered_stylesheet = stylesheet
|
|
|
|
|
|
|
|
|
|
|
|
def test_get_stylesheet(config_stub):
|
|
|
|
config_stub.val.colors.completion.bg = 'magenta'
|
|
|
|
observer = config.StyleSheetObserver(
|
|
|
|
Obj(), stylesheet="{{ conf.colors.completion.bg }}")
|
|
|
|
assert observer._get_stylesheet() == 'magenta'
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('delete', [True, False])
|
|
|
|
@pytest.mark.parametrize('stylesheet_param', [True, False])
|
|
|
|
@pytest.mark.parametrize('update', [True, False])
|
|
|
|
def test_set_register_stylesheet(delete, stylesheet_param, update, qtbot,
|
|
|
|
config_stub, caplog):
|
|
|
|
config_stub.val.colors.completion.fg = 'magenta'
|
|
|
|
stylesheet = "{{ conf.colors.completion.fg }}"
|
|
|
|
|
|
|
|
with caplog.at_level(9): # VDEBUG
|
|
|
|
if stylesheet_param:
|
|
|
|
obj = Obj()
|
|
|
|
config.set_register_stylesheet(obj, stylesheet=stylesheet,
|
|
|
|
update=update)
|
|
|
|
else:
|
|
|
|
obj = Obj(stylesheet)
|
|
|
|
config.set_register_stylesheet(obj, update=update)
|
|
|
|
|
|
|
|
assert len(caplog.records) == 1
|
|
|
|
assert caplog.records[0].message == 'stylesheet for Obj: magenta'
|
|
|
|
|
|
|
|
assert obj.rendered_stylesheet == 'magenta'
|
|
|
|
|
|
|
|
if delete:
|
|
|
|
with qtbot.waitSignal(obj.destroyed):
|
|
|
|
obj.deleteLater()
|
|
|
|
|
|
|
|
config_stub.val.colors.completion.fg = 'yellow'
|
|
|
|
|
|
|
|
if delete or not update:
|
|
|
|
expected = 'magenta'
|
|
|
|
else:
|
|
|
|
expected = 'yellow'
|
|
|
|
|
|
|
|
assert obj.rendered_stylesheet == expected
|