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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
#
# diffoscope: in-depth comparison of files, archives, and directories
#
# Copyright © 2015 Reiner Herrmann <reiner@reiner-h.de>
# Copyright © 2016-2020 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 pytest
import os
import tempfile
from diffoscope.config import Config
from diffoscope.comparators.missing_file import MissingFile
from diffoscope.comparators.fsimage import FsImageFile
from ..utils.data import load_fixture, get_data
from ..utils.tools import skip_unless_tools_exist, skip_unless_module_exists
img1 = load_fixture("test1.ext4")
img2 = load_fixture("test2.ext4")
img1_fat12 = load_fixture("test1.fat12")
img2_fat12 = load_fixture("test2.fat12")
img1_fat16 = load_fixture("test1.fat16")
img1_fat32 = load_fixture("test1.fat32")
@pytest.fixture(scope="session")
def guestfs_tempdir():
import guestfs
with tempfile.TemporaryDirectory(suffix="_diffoscope") as cachedir:
g = guestfs.GuestFS(python_return_dict=True)
g.set_cachedir(cachedir)
# set cachedir for the diffoscope.comparators.fsimage module as well
os.environ["LIBGUESTFS_CACHEDIR"] = cachedir
g.add_drive_opts("/dev/null", format="raw", readonly=1)
try:
g.launch()
except RuntimeError as e:
# to debug this, set LIBGUESTFS_DEBUG=1 and give -s to pytest.
# Unfortunately we can't capture the logs, due to capsys not being
# available in a module/session scope, and g.set_event_callback
# segfaults on my system.
pytest.skip("guestfs not working on the system: %r" % e)
yield cachedir
def test_identification(img1):
assert isinstance(img1, FsImageFile)
def test_identification_fat12(img1_fat12):
assert isinstance(img1_fat12, FsImageFile)
def test_identification_fat16(img1_fat16):
assert isinstance(img1_fat16, FsImageFile)
def test_identification_fat32(img1_fat32):
assert isinstance(img1_fat32, FsImageFile)
@skip_unless_tools_exist("qemu-img")
@skip_unless_module_exists("guestfs")
def test_no_differences(img1, guestfs_tempdir):
difference = img1.compare(img1)
assert difference is None
@pytest.fixture
def differences(img1, img2, guestfs_tempdir):
return img1.compare(img2).details
@skip_unless_tools_exist("qemu-img")
@skip_unless_module_exists("guestfs")
def test_differences(differences, guestfs_tempdir):
assert differences[0].source1 == "test1.ext4.tar"
tarinfo = differences[0].details[0]
tardiff = differences[0].details[1]
encodingdiff = tardiff.details[0]
assert tarinfo.source1 == "file list"
assert tarinfo.source2 == "file list"
assert tardiff.source1 == "./date.txt"
assert tardiff.source2 == "./date.txt"
assert encodingdiff.source1 == "encoding"
assert encodingdiff.source2 == "encoding"
expected_diff = get_data("ext4_expected_diffs")
found_diff = (
tarinfo.unified_diff + tardiff.unified_diff + encodingdiff.unified_diff
)
assert expected_diff == found_diff
@skip_unless_tools_exist("qemu-img")
@skip_unless_module_exists("guestfs")
def test_compare_non_existing(monkeypatch, img1, guestfs_tempdir):
monkeypatch.setattr(Config(), "new_file", True)
difference = img1.compare(MissingFile("/nonexisting", img1))
assert difference.source2 == "/nonexisting"
assert difference.details[-1].source2 == "/dev/null"
@pytest.fixture
def differences_fat(img1_fat12, img2_fat12, guestfs_tempdir):
return img1_fat12.compare(img2_fat12).details
@skip_unless_tools_exist("qemu-img")
@skip_unless_module_exists("guestfs")
def test_differences_fat(differences_fat, guestfs_tempdir):
assert differences_fat[0].source1 == "filetype from file(1)"
assert differences_fat[1].source1 == "test1.fat12.tar"
tarinfo = differences_fat[1].details[0]
tardiff = differences_fat[1].details[1]
assert tarinfo.source1 == "file list"
assert tarinfo.source2 == "file list"
assert tardiff.source1 == "./test1.txt"
assert tardiff.source2 == "./test1.txt"
expected_diff = get_data("fat12_expected_diffs")
found_diff = (
differences_fat[0].unified_diff
+ tarinfo.unified_diff
+ tardiff.unified_diff
)
# workaround for file(1) bug in stretch
found_diff = found_diff.replace("32 MB) ,", "32 MB),")
assert expected_diff == found_diff
|