[Git][reproducible-builds/diffoscope][master] 2 commits: Add lzip comparator

Mattia Rizzolo (@mattia) gitlab at salsa.debian.org
Thu Nov 3 15:09:20 UTC 2022



Mattia Rizzolo pushed to branch master at Reproducible Builds / diffoscope


Commits:
e1b947b8 by Christopher Baines at 2022-11-03T14:22:35+01:00
Add lzip comparator

I'm looking at this since it's a common form of compression for nar
archives for GNU Guix.

- - - - -
e4178cdf by Mattia Rizzolo at 2022-11-03T16:08:53+01:00
Add lzip to debian dependencies

Signed-off-by: Mattia Rizzolo <mattia at debian.org>

- - - - -


9 changed files:

- debian/control
- debian/copyright
- debian/tests/control
- diffoscope/comparators/__init__.py
- + diffoscope/comparators/lzip.py
- diffoscope/external_tools.py
- + tests/comparators/test_lzip.py
- + tests/data/test1.lzip
- + tests/data/test2.lzip


Changes:

=====================================
debian/control
=====================================
@@ -50,6 +50,7 @@ Build-Depends:
  linux-image-amd64 [amd64] <!nocheck> | linux-image-generic [amd64] <!nocheck>,
  llvm <!nocheck>,
  lz4 <!nocheck> | liblz4-tool <!nocheck>,
+ lzip <!nocheck>,
  mono-utils <!nocheck>,
  ocaml-nox <!nocheck>,
  odt2txt <!nocheck>,


=====================================
debian/copyright
=====================================
@@ -28,6 +28,7 @@ Copyright:
  © 2019 Jelle van der Waa <jelle at archlinux.org>
  © 2020 Conrad Ratschan <ratschance at gmail.com>
  © 2020-2021 Jean-Romain Garnier <salsa at jean-romain.com>
+ © 2022 Christopher Baines <mail at cbaines.net>
 License: GPL-3+
 
 Files: diffoscope/changes.py


=====================================
debian/tests/control
=====================================
@@ -7,7 +7,7 @@
 #   $ mv debian/tests/control.tmp debian/tests/control
 
 Tests: pytest-with-recommends
-Depends: python3-all, diffoscope, black, python3-pytest, python3-h5py, file, linux-image-amd64 [amd64] | linux-image-generic [amd64], abootimg, acl, apksigner, apktool [!ppc64el !s390x], binutils-multiarch, bzip2, caca-utils, colord, coreboot-utils, db-util, default-jdk-headless | default-jdk | java-sdk, device-tree-compiler, docx2txt, e2fsprogs, enjarify, ffmpeg, fontforge-extras, fonttools, fp-utils [!ppc64el !s390x], genisoimage, gettext, ghc, ghostscript, giflib-tools, gnumeric, gnupg, gnupg-utils, hdf5-tools, html2text, imagemagick, jsbeautifier, libarchive-tools, libxmlb-dev, llvm, lz4 | liblz4-tool, mono-utils, ocaml-nox, odt2txt, oggvideotools [!s390x], openssh-client, openssl, pgpdump, poppler-utils, procyon-decompiler, python3-pdfminer, r-base-core, rpm2cpio, sng, sqlite3, squashfs-tools, tcpdump, u-boot-tools, unzip, wabt, xmlbeans, xxd, xz-utils, zip, zstd, 
+Depends: python3-all, diffoscope, black, python3-pytest, python3-h5py, file, linux-image-amd64 [amd64] | linux-image-generic [amd64], abootimg, acl, apksigner, apktool [!ppc64el !s390x], binutils-multiarch, bzip2, caca-utils, colord, coreboot-utils, db-util, default-jdk-headless | default-jdk | java-sdk, device-tree-compiler, docx2txt, e2fsprogs, enjarify, ffmpeg, fontforge-extras, fonttools, fp-utils [!ppc64el !s390x], genisoimage, gettext, ghc, ghostscript, giflib-tools, gnumeric, gnupg, gnupg-utils, hdf5-tools, html2text, imagemagick, jsbeautifier, libarchive-tools, libxmlb-dev, llvm, lz4 | liblz4-tool, lzip, mono-utils, ocaml-nox, odt2txt, oggvideotools [!s390x], openssh-client, openssl, pgpdump, poppler-utils, procyon-decompiler, python3-pdfminer, r-base-core, rpm2cpio, sng, sqlite3, squashfs-tools, tcpdump, u-boot-tools, unzip, wabt, xmlbeans, xxd, xz-utils, zip, zstd, androguard, python3-argcomplete, python3-binwalk, python3-defusedxml, python3-distro, python3-guestfs, python3-jsondiff, python3-progressbar, python3-pypdf2, python3-debian, python3-pyxattr, python3-rpm, python3-tlsh
 
 Tests: pytest
 Depends: python3-all, diffoscope, python3-pytest, python3-h5py, file, python3-tlsh


=====================================
diffoscope/comparators/__init__.py
=====================================
@@ -80,6 +80,7 @@ class ComparatorManager:
         ("iso9660.Iso9660File",),
         ("java.ClassFile",),
         ("lz4.Lz4File",),
+        ("lzip.LzipFile",),
         ("mono.MonoExeFile",),
         ("pdf.PdfFile",),
         ("png.PngFile",),


=====================================
diffoscope/comparators/lzip.py
=====================================
@@ -0,0 +1,62 @@
+#
+# diffoscope: in-depth comparison of files, archives, and directories
+#
+# Copyright © 2014-2015 Jérémy Bobbio <lunar at debian.org>
+# Copyright © 2015-2020 Chris Lamb <lamby at debian.org>
+# Copyright © 2022 Christopher Baines <mail at cbaines.net>
+#
+# 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 re
+import os.path
+import logging
+import subprocess
+
+from diffoscope.tools import tool_required
+
+from .utils.file import File
+from .utils.archive import Archive
+
+logger = logging.getLogger(__name__)
+
+
+class LzipContainer(Archive):
+    def open_archive(self):
+        return self
+
+    def close_archive(self):
+        pass
+
+    def get_member_names(self):
+        return [self.get_compressed_content_name(".lzip")]
+
+    @tool_required("lzip")
+    def extract(self, member_name, dest_dir):
+        dest_path = os.path.join(dest_dir, member_name)
+        logger.debug("lzip extracting to %s", dest_path)
+        with open(dest_path, "wb") as fp:
+            subprocess.check_call(
+                ["lzip", "--decompress", "--stdout", self.source.path],
+                stdout=fp,
+                stderr=None,
+            )
+        return dest_path
+
+
+class LzipFile(File):
+    DESCRIPTION = "lzip compressed files"
+    CONTAINER_CLASSES = [LzipContainer]
+    FILE_TYPE_RE = re.compile(r"^lzip compressed data\b")
+
+    FALLBACK_FILE_EXTENSION_SUFFIX = {".lzip"}


=====================================
diffoscope/external_tools.py
=====================================
@@ -125,6 +125,7 @@ EXTERNAL_TOOLS = {
         "guix": "e2fsprogs",
     },
     "lz4": {"debian": "lz4 | liblz4-tool", "FreeBSD": "lz4", "guix": "lz4"},
+    "lzip": {"debian": "lzip"},
     "msgunfmt": {
         "debian": "gettext",
         "arch": "gettext",


=====================================
tests/comparators/test_lzip.py
=====================================
@@ -0,0 +1,77 @@
+#
+# diffoscope: in-depth comparison of files, archives, and directories
+#
+# Copyright © 2015 Jérémy Bobbio <lunar at debian.org>
+# Copyright © 2016-2017, 2020 Chris Lamb <lamby at debian.org>
+# Copyright © 2022 Christopher Baines <mail at cbaines.net>
+#
+# 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 shutil
+import pytest
+
+from diffoscope.comparators.lzip import LzipFile
+from diffoscope.comparators.binary import FilesystemFile
+from diffoscope.comparators.utils.specialize import specialize
+
+from ..utils.data import load_fixture, get_data
+from ..utils.tools import skip_unless_tools_exist
+from ..utils.nonexisting import assert_non_existing
+
+lzip1 = load_fixture("test1.lzip")
+lzip2 = load_fixture("test2.lzip")
+
+
+def test_identification(lzip1):
+    assert isinstance(lzip1, LzipFile)
+
+
+def test_no_differences(lzip1):
+    difference = lzip1.compare(lzip1)
+    assert difference is None
+
+
+ at pytest.fixture
+def differences(lzip1, lzip2):
+    return lzip1.compare(lzip2).details
+
+
+ at skip_unless_tools_exist("lzip")
+def test_content_source(differences):
+    assert differences[0].source1 == "test1"
+    assert differences[0].source2 == "test2"
+
+
+ at skip_unless_tools_exist("lzip")
+def test_content_source_without_extension(tmpdir, lzip1, lzip2):
+    path1 = str(tmpdir.join("test1"))
+    path2 = str(tmpdir.join("test2"))
+    shutil.copy(lzip1.path, path1)
+    shutil.copy(lzip2.path, path2)
+    lzip1 = specialize(FilesystemFile(path1))
+    lzip2 = specialize(FilesystemFile(path2))
+    difference = lzip1.compare(lzip2).details
+    assert difference[0].source1 == "test1-content"
+    assert difference[0].source2 == "test2-content"
+
+
+ at skip_unless_tools_exist("lzip")
+def test_content_diff(differences):
+    expected_diff = get_data("text_ascii_expected_diff")
+    assert differences[0].unified_diff == expected_diff
+
+
+ at skip_unless_tools_exist("lzip")
+def test_compare_non_existing(monkeypatch, lzip1):
+    assert_non_existing(monkeypatch, lzip1)


=====================================
tests/data/test1.lzip
=====================================
Binary files /dev/null and b/tests/data/test1.lzip differ


=====================================
tests/data/test2.lzip
=====================================
Binary files /dev/null and b/tests/data/test2.lzip differ



View it on GitLab: https://salsa.debian.org/reproducible-builds/diffoscope/-/compare/d647eb7554e3bd51ab8fbe18fc84f885fce4f789...e4178cdf8fea753470a40c3491649cae14165a4d

-- 
View it on GitLab: https://salsa.debian.org/reproducible-builds/diffoscope/-/compare/d647eb7554e3bd51ab8fbe18fc84f885fce4f789...e4178cdf8fea753470a40c3491649cae14165a4d
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.reproducible-builds.org/pipermail/rb-commits/attachments/20221103/51a548cb/attachment.htm>


More information about the rb-commits mailing list