1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#
# diffoscope: in-depth comparison of files, archives, and directories
#
# Copyright (C) 2017 Juliana Rodrigues <juliana.orod@gmail.com>
# Copyright © 2017, 2019-2020, 2022-2023 Chris Lamb <lamby@debian.org>
#
# diffoscope 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.
#
# diffoscope 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 diffoscope. If not, see <https://www.gnu.org/licenses/>.
import sys
import pytest
from diffoscope.comparators.xml import XMLFile
from ..utils.data import load_fixture, assert_diff
xml_a = load_fixture("test1.xml")
xml_b = load_fixture("test2.xml")
xml_c = load_fixture("test3.xml")
xml_d = load_fixture("test4.xml")
invalid_xml = load_fixture("test_invalid.xml")
def test_identification(xml_a):
assert isinstance(xml_a, XMLFile)
def test_invalid(invalid_xml):
assert not isinstance(invalid_xml, XMLFile)
def test_no_differences(xml_a):
assert xml_a.compare(xml_a) is None
@pytest.fixture
def differences(xml_a, xml_b):
return xml_a.compare(xml_b).details
@pytest.mark.skipif(
sys.version_info < (3, 8), reason="requires Python 3.8 or higher"
)
def test_diff(differences):
assert_diff(differences[0], "test_xml_expected_diff")
@pytest.mark.skipif(
sys.version_info < (3, 8), reason="requires Python 3.8 or higher"
)
def test_ordering_differences(xml_c, xml_d):
diff = xml_c.compare(xml_d)
assert diff.details[0].comments == ["Ordering differences only"]
assert_diff(diff.details[0], "test_xml_ordering_differences_diff")
|