94 lines
3.3 KiB
Python
94 lines
3.3 KiB
Python
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
|
|
|
# Copyright 2014-2015 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
|
#
|
|
# 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.qtutils."""
|
|
|
|
import sys
|
|
|
|
import pytest
|
|
|
|
from qutebrowser import qutebrowser
|
|
from qutebrowser.utils import qtutils
|
|
import overflow_test_cases
|
|
|
|
|
|
class TestCheckOverflow:
|
|
|
|
"""Test check_overflow."""
|
|
|
|
@pytest.mark.parametrize('ctype, val',
|
|
overflow_test_cases.iter_good_values())
|
|
def test_good_values(self, ctype, val):
|
|
"""Test values which are inside bounds."""
|
|
qtutils.check_overflow(val, ctype)
|
|
|
|
@pytest.mark.parametrize('ctype, val',
|
|
[(ctype, val) for (ctype, val, _) in
|
|
overflow_test_cases.iter_bad_values()])
|
|
def test_bad_values_fatal(self, ctype, val):
|
|
"""Test values which are outside bounds with fatal=True."""
|
|
with pytest.raises(OverflowError):
|
|
qtutils.check_overflow(val, ctype)
|
|
|
|
@pytest.mark.parametrize('ctype, val, repl',
|
|
overflow_test_cases.iter_bad_values())
|
|
def test_bad_values_nonfatal(self, ctype, val, repl):
|
|
"""Test values which are outside bounds with fatal=False."""
|
|
newval = qtutils.check_overflow(val, ctype, fatal=False)
|
|
assert newval == repl
|
|
|
|
|
|
class TestGetQtArgs:
|
|
|
|
"""Tests for get_args."""
|
|
|
|
@pytest.fixture
|
|
def parser(self, mocker):
|
|
"""Fixture to provide an argparser.
|
|
|
|
Monkey-patches .exit() of the argparser so it doesn't exit on errors.
|
|
"""
|
|
parser = qutebrowser.get_argparser()
|
|
mocker.patch.object(parser, 'exit', side_effect=Exception)
|
|
return parser
|
|
|
|
def test_no_qt_args(self, parser):
|
|
"""Test commandline with no Qt arguments given."""
|
|
args = parser.parse_args(['--debug'])
|
|
assert qtutils.get_args(args) == [sys.argv[0]]
|
|
|
|
def test_qt_flag(self, parser):
|
|
"""Test commandline with a Qt flag."""
|
|
args = parser.parse_args(['--debug', '--qt-reverse', '--nocolor'])
|
|
assert qtutils.get_args(args) == [sys.argv[0], '-reverse']
|
|
|
|
def test_qt_arg(self, parser):
|
|
"""Test commandline with a Qt argument."""
|
|
args = parser.parse_args(['--qt-stylesheet', 'foobar'])
|
|
assert qtutils.get_args(args) == [sys.argv[0], '-stylesheet', 'foobar']
|
|
|
|
def test_qt_both(self, parser):
|
|
"""Test commandline with a Qt argument and flag."""
|
|
args = parser.parse_args(['--qt-stylesheet', 'foobar', '--qt-reverse'])
|
|
qt_args = qtutils.get_args(args)
|
|
assert qt_args[0] == sys.argv[0]
|
|
assert '-reverse' in qt_args
|
|
assert '-stylesheet' in qt_args
|
|
assert 'foobar' in qt_args
|