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
|
# -*- coding: utf-8 -*-
#
# diffoscope: in-depth comparison of files, archives, and directories
#
# Copyright © 2015 Jérémy Bobbio <lunar@debian.org>
# Copyright © 2016 Ximin Luo <infinity0@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 subprocess
from distutils.version import LooseVersion
from diffoscope.comparators.ar import ArFile
from ..utils import diff_ignore_line_numbers
from ..utils.data import load_fixture, get_data
from ..utils.tools import (
skip_unless_tools_exist,
skip_unless_tool_is_at_least,
skip_if_binutils_does_not_support_x86,
)
from ..utils.nonexisting import assert_non_existing
rlib1 = load_fixture('test1.rlib')
rlib2 = load_fixture('test2.rlib')
def llvm_version():
return (
subprocess.check_output(['llvm-config', '--version'])
.decode("utf-8")
.strip()
)
def test_identification(rlib1):
assert isinstance(rlib1, ArFile)
def test_no_differences(rlib1):
difference = rlib1.compare(rlib1)
assert difference is None
@pytest.fixture
def differences(rlib1, rlib2):
return rlib1.compare(rlib2).details
@pytest.fixture
def rlib_dis_expected_diff():
actual_ver = llvm_version()
if LooseVersion(str(actual_ver)) >= LooseVersion("3.8"):
diff_file = 'rlib_llvm_dis_expected_diff'
if LooseVersion(str(actual_ver)) >= LooseVersion("5.0"):
diff_file = 'rlib_llvm_dis_expected_diff_5'
if LooseVersion(str(actual_ver)) >= LooseVersion("7.0"):
diff_file = 'rlib_llvm_dis_expected_diff_7'
return get_data(diff_file)
@skip_unless_tools_exist('nm')
def test_num_items(differences):
assert len(differences) == 4
@skip_unless_tools_exist('nm')
@skip_if_binutils_does_not_support_x86()
def test_item0_armap(differences):
assert differences[0].source1 == 'nm -s {}'
assert differences[0].source2 == 'nm -s {}'
expected_diff = get_data('rlib_armap_expected_diff')
assert differences[0].unified_diff == expected_diff
@skip_unless_tools_exist('nm')
@skip_if_binutils_does_not_support_x86()
def test_item1_elf(differences):
assert differences[1].source1 == 'alloc_system-d16b8f0e.0.o'
assert differences[1].source2 == 'alloc_system-d16b8f0e.0.o'
expected_diff = get_data('rlib_elf_expected_diff')
assert differences[1].details[0].unified_diff == expected_diff
@skip_unless_tools_exist('nm')
def test_item2_rust_metadata_bin(differences):
assert differences[2].source1 == 'rust.metadata.bin'
assert differences[2].source2 == 'rust.metadata.bin'
@skip_unless_tools_exist('llvm-dis')
@skip_unless_tool_is_at_least('llvm-config', llvm_version, '3.8')
def test_item3_deflate_llvm_bitcode(differences, rlib_dis_expected_diff):
assert differences[3].source1 == 'alloc_system-d16b8f0e.0.bytecode.deflate'
assert differences[3].source2 == 'alloc_system-d16b8f0e.0.bytecode.deflate'
expected_diff = rlib_dis_expected_diff
actual_diff = differences[3].details[0].details[1].unified_diff
assert diff_ignore_line_numbers(actual_diff) == diff_ignore_line_numbers(
expected_diff
)
@skip_unless_tools_exist('nm')
def test_compare_non_existing(monkeypatch, rlib1):
assert_non_existing(monkeypatch, rlib1)
|