2015-11-02 23:39:35 +01:00
|
|
|
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
|
|
|
|
2019-02-23 06:34:17 +01:00
|
|
|
# Copyright 2015-2019 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
2015-11-02 23:39:35 +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/>.
|
|
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2015-12-01 22:47:10 +01:00
|
|
|
from helpers import utils
|
2015-11-02 23:39:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('val1, val2', [
|
|
|
|
({'a': 1}, {'a': 1}),
|
|
|
|
({'a': 1, 'b': 2}, {'a': 1}),
|
|
|
|
({'a': [1, 2, 3]}, {'a': [1]}),
|
|
|
|
({'a': [1, 2, 3]}, {'a': [..., 2]}),
|
|
|
|
(1.0, 1.00000001),
|
2015-11-10 06:50:31 +01:00
|
|
|
("foobarbaz", "foo*baz"),
|
2015-11-02 23:39:35 +01:00
|
|
|
])
|
|
|
|
def test_partial_compare_equal(val1, val2):
|
|
|
|
assert utils.partial_compare(val1, val2)
|
|
|
|
|
|
|
|
|
2016-04-21 00:14:13 +02:00
|
|
|
@pytest.mark.parametrize('val1, val2, error', [
|
|
|
|
({'a': 1}, {'a': 2}, "1 != 2"),
|
|
|
|
({'a': 1}, {'b': 1}, "Key 'b' is in second dict but not in first!"),
|
|
|
|
({'a': 1, 'b': 2}, {'a': 2}, "1 != 2"),
|
|
|
|
({'a': [1]}, {'a': [1, 2, 3]}, "Second list is longer than first list"),
|
|
|
|
({'a': [1]}, {'a': [2, 3, 4]}, "Second list is longer than first list"),
|
|
|
|
([1], {1: 2}, "Different types (list, dict) -> False"),
|
|
|
|
({1: 1}, {1: [1]}, "Different types (int, list) -> False"),
|
|
|
|
({'a': [1, 2, 3]}, {'a': [..., 3]}, "2 != 3"),
|
|
|
|
("foo*baz", "foobarbaz", "'foo*baz' != 'foobarbaz' (pattern matching)"),
|
2016-08-22 07:39:11 +02:00
|
|
|
(23.42, 13.37, "23.42 != 13.37 (float comparison)"),
|
2015-11-02 23:39:35 +01:00
|
|
|
])
|
2016-04-21 00:14:13 +02:00
|
|
|
def test_partial_compare_not_equal(val1, val2, error):
|
|
|
|
outcome = utils.partial_compare(val1, val2)
|
|
|
|
assert not outcome
|
|
|
|
assert isinstance(outcome, utils.PartialCompareOutcome)
|
|
|
|
assert outcome.error == error
|
2015-11-13 07:49:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('pattern, value, expected', [
|
|
|
|
('foo', 'foo', True),
|
|
|
|
('foo', 'bar', False),
|
|
|
|
('foo', 'Foo', False),
|
|
|
|
('foo', 'foobar', False),
|
|
|
|
('foo', 'barfoo', False),
|
|
|
|
|
|
|
|
('foo*', 'foobarbaz', True),
|
|
|
|
('*bar', 'foobar', True),
|
|
|
|
('foo*baz', 'foobarbaz', True),
|
|
|
|
|
|
|
|
('foo[b]ar', 'foobar', False),
|
|
|
|
('foo[b]ar', 'foo[b]ar', True),
|
|
|
|
|
|
|
|
('foo?ar', 'foobar', False),
|
|
|
|
('foo?ar', 'foo?ar', True),
|
|
|
|
])
|
|
|
|
def test_pattern_match(pattern, value, expected):
|
|
|
|
assert utils.pattern_match(pattern=pattern, value=value) == expected
|
2017-06-30 22:03:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_nop_contextmanager():
|
|
|
|
with utils.nop_contextmanager():
|
|
|
|
pass
|