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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
# SPDX-FileCopyrightText: 2021 The meson-python developers
#
# SPDX-License-Identifier: MIT
import os
import re
import shutil
import stat
import sys
import sysconfig
import textwrap
import packaging.tags
import pytest
import wheel.wheelfile
import mesonpy
from .conftest import MESON_VERSION, adjust_packaging_platform_tag, metadata
EXT_SUFFIX = sysconfig.get_config_var('EXT_SUFFIX')
if sys.version_info <= (3, 8, 7):
if MESON_VERSION >= (0, 99):
# Fixed in Meson 1.0, see https://github.com/mesonbuild/meson/pull/10961.
from distutils.sysconfig import get_config_var
EXT_SUFFIX = get_config_var('EXT_SUFFIX')
if sys.platform in {'win32', 'cygwin'}:
EXT_IMP_SUFFIX = re.sub(r'.(pyd|dll)$', '.lib' if shutil.which('cl.exe') else '.dll.a', EXT_SUFFIX)
LIB_SUFFIX = {
'cygwin': '.dll',
'darwin': '.dylib',
'win32': '.dll',
}.get(sys.platform, '.so')
NOGIL_BUILD = bool(sysconfig.get_config_var('Py_GIL_DISABLED'))
# Test against the wheel tag generated by packaging module.
tag = next(packaging.tags.sys_tags())
ABI = tag.abi
INTERPRETER = tag.interpreter
PLATFORM = adjust_packaging_platform_tag(tag.platform)
def wheel_contents(artifact):
# Sometimes directories have entries, sometimes not, so we filter them out.
return {
entry for entry in artifact.namelist()
if not entry.endswith('/')
}
def test_scipy_like(wheel_scipy_like):
# This test is meant to exercise features commonly needed by a regular
# Python package for scientific computing or data science:
# - C and Cython extensions,
# - including generated code,
# - using `install_subdir`,
# - packaging data files with extensions not known to Meson
artifact = wheel.wheelfile.WheelFile(wheel_scipy_like)
expecting = {
'mypkg-2.3.4.dist-info/METADATA',
'mypkg-2.3.4.dist-info/RECORD',
'mypkg-2.3.4.dist-info/WHEEL',
'mypkg/__init__.py',
'mypkg/__config__.py',
f'mypkg/extmod{EXT_SUFFIX}',
f'mypkg/cy_extmod{EXT_SUFFIX}',
'mypkg/submod/__init__.py',
'mypkg/submod/unknown_filetype.npq',
}
if sys.platform in {'win32', 'cygwin'}:
# Currently Meson is installing .dll.a (import libraries) next
# to .pyd extension modules. Those are very small, so it's not
# a major issue - just sloppy. Ensure we don't fail on those.
expecting.update({
f'mypkg/extmod{EXT_IMP_SUFFIX}',
f'mypkg/cy_extmod{EXT_IMP_SUFFIX}',
})
assert wheel_contents(artifact) == expecting
name = artifact.parsed_filename
assert name.group('pyver') == INTERPRETER
assert name.group('abi') == ABI
assert name.group('plat') == PLATFORM
def test_purelib_and_platlib(wheel_purelib_and_platlib):
artifact = wheel.wheelfile.WheelFile(wheel_purelib_and_platlib)
expecting = {
f'plat{EXT_SUFFIX}',
'purelib_and_platlib-1.0.0.data/purelib/pure.py',
'purelib_and_platlib-1.0.0.dist-info/METADATA',
'purelib_and_platlib-1.0.0.dist-info/RECORD',
'purelib_and_platlib-1.0.0.dist-info/WHEEL',
}
if sys.platform in {'win32', 'cygwin'}:
# Currently Meson is installing .dll.a (import libraries) next
# to .pyd extension modules. Those are very small, so it's not
# a major issue - just sloppy. Ensure we don't fail on those.
expecting.update({
f'plat{EXT_IMP_SUFFIX}'
})
assert wheel_contents(artifact) == expecting
def test_pure(wheel_pure):
artifact = wheel.wheelfile.WheelFile(wheel_pure)
assert wheel_contents(artifact) == {
'pure-1.0.0.dist-info/METADATA',
'pure-1.0.0.dist-info/RECORD',
'pure-1.0.0.dist-info/WHEEL',
'pure.py',
}
def test_configure_data(wheel_configure_data):
artifact = wheel.wheelfile.WheelFile(wheel_configure_data)
assert wheel_contents(artifact) == {
'configure_data.py',
'configure_data-1.0.0.dist-info/METADATA',
'configure_data-1.0.0.dist-info/RECORD',
'configure_data-1.0.0.dist-info/WHEEL',
}
def test_contents_license_file(wheel_license_file):
artifact = wheel.wheelfile.WheelFile(wheel_license_file)
assert artifact.read('license_file-1.0.0.dist-info/LICENSE.custom').rstrip() == b'Hello!'
@pytest.mark.filterwarnings('ignore:canonicalization and validation of license expression')
def test_license_pep639(wheel_license_pep639):
artifact = wheel.wheelfile.WheelFile(wheel_license_pep639)
assert wheel_contents(artifact) == {
'license_pep639-1.0.0.dist-info/METADATA',
'license_pep639-1.0.0.dist-info/RECORD',
'license_pep639-1.0.0.dist-info/WHEEL',
'license_pep639-1.0.0.dist-info/licenses/LICENSES/BSD-3-Clause.txt',
'license_pep639-1.0.0.dist-info/licenses/LICENSES/MIT.txt',
}
assert metadata(artifact.read('license_pep639-1.0.0.dist-info/METADATA')) == metadata(textwrap.dedent('''\
Metadata-Version: 2.4
Name: license-pep639
Version: 1.0.0
License-Expression: MIT OR BSD-3-Clause
License-File: LICENSES/BSD-3-Clause.txt
License-File: LICENSES/MIT.txt
'''))
@pytest.mark.skipif(sys.platform in {'win32', 'cygwin'}, reason='requires RPATH support')
def test_contents(package_library, wheel_library):
artifact = wheel.wheelfile.WheelFile(wheel_library)
assert wheel_contents(artifact) == {
f'.library.mesonpy.libs/libexample{LIB_SUFFIX}',
'library-1.0.0.data/headers/examplelib.h',
'library-1.0.0.data/scripts/example',
'library-1.0.0.dist-info/METADATA',
'library-1.0.0.dist-info/RECORD',
'library-1.0.0.dist-info/WHEEL',
}
def test_local_lib(venv, wheel_link_against_local_lib):
venv.pip('install', wheel_link_against_local_lib)
output = venv.python('-c', 'import example; print(example.example_sum(1, 2))')
assert int(output) == 3
def test_sharedlib_in_package(venv, wheel_sharedlib_in_package):
venv.pip('install', wheel_sharedlib_in_package)
output = venv.python('-c', 'import mypkg; print(mypkg.example_sum(2, 5))')
assert int(output) == 7
output = venv.python('-c', 'import mypkg; print(mypkg.example_prod(6, 7))')
assert int(output) == 42
@pytest.mark.skipif(MESON_VERSION < (1, 3, 0), reason='Meson version too old')
def test_link_library_in_subproject(venv, wheel_link_library_in_subproject):
venv.pip('install', wheel_link_library_in_subproject)
output = venv.python('-c', 'import foo; print(foo.example_sum(3, 6))')
assert int(output) == 9
@pytest.mark.skipif(sys.platform in {'win32', 'cygwin'}, reason='requires RPATH support')
def test_rpath(wheel_link_against_local_lib, tmp_path):
artifact = wheel.wheelfile.WheelFile(wheel_link_against_local_lib)
artifact.extractall(tmp_path)
origin = '@loader_path' if sys.platform == 'darwin' else '$ORIGIN'
expected = {f'{origin}/../.link_against_local_lib.mesonpy.libs', 'custom-rpath',}
rpath = set(mesonpy._rpath._get_rpath(tmp_path / 'example' / f'_example{EXT_SUFFIX}'))
# Verify that rpath is a superset of the expected one: linking to
# the Python runtime may require additional rpath entries.
assert rpath >= expected
@pytest.mark.skipif(sys.platform in {'win32', 'cygwin'}, reason='requires RPATH support')
def test_uneeded_rpath(wheel_purelib_and_platlib, tmp_path):
artifact = wheel.wheelfile.WheelFile(wheel_purelib_and_platlib)
artifact.extractall(tmp_path)
origin = '@loader_path' if sys.platform == 'darwin' else '$ORIGIN'
rpath = mesonpy._rpath._get_rpath(tmp_path / f'plat{EXT_SUFFIX}')
for path in rpath:
assert origin not in path
@pytest.mark.skipif(sys.platform in {'win32', 'cygwin'}, reason='requires executable bit support')
def test_executable_bit(wheel_executable_bit):
artifact = wheel.wheelfile.WheelFile(wheel_executable_bit)
executable_files = {
'executable_bit-1.0.0.data/purelib/executable_module.py',
'executable_bit-1.0.0.data/scripts/example',
'executable_bit-1.0.0.data/scripts/example-script',
}
for info in artifact.infolist():
mode = (info.external_attr >> 16) & 0o777
assert bool(mode & stat.S_IXUSR) == (info.filename in executable_files)
def test_detect_wheel_tag_module(wheel_purelib_and_platlib):
name = wheel.wheelfile.WheelFile(wheel_purelib_and_platlib).parsed_filename
assert name.group('pyver') == INTERPRETER
assert name.group('abi') == ABI
assert name.group('plat') == PLATFORM
def test_detect_wheel_tag_script(wheel_executable):
name = wheel.wheelfile.WheelFile(wheel_executable).parsed_filename
assert name.group('pyver') == 'py3'
assert name.group('abi') == 'none'
assert name.group('plat') == PLATFORM
def test_entrypoints(wheel_full_metadata):
artifact = wheel.wheelfile.WheelFile(wheel_full_metadata)
with artifact.open('full_metadata-1.2.3.dist-info/entry_points.txt') as f:
assert f.read().decode().strip() == textwrap.dedent('''
[something.custom]
example = example:custom
[console_scripts]
example-cli = example:cli
[gui_scripts]
example-gui = example:gui
''').strip()
def test_top_level_modules(package_module_types):
with mesonpy._project() as project:
builder = mesonpy._EditableWheelBuilder(
project._metadata, project._manifest, project._limited_api, project._allow_windows_shared_libs)
assert set(builder._top_level_modules) == {
'file',
'package',
'namespace',
'native',
}
def test_purelib_platlib_split(package_purelib_platlib_split, tmp_path):
with pytest.raises(mesonpy.BuildError, match='The purelib-platlib-split package is split'):
with mesonpy._project() as project:
project.wheel(tmp_path)
@pytest.mark.skipif(sys.platform != 'darwin', reason='macOS specific test')
@pytest.mark.parametrize('arch', ['x86_64', 'arm64'])
def test_archflags_envvar(package_purelib_and_platlib, monkeypatch, tmp_path, arch):
try:
monkeypatch.setenv('ARCHFLAGS', f'-arch {arch}')
filename = mesonpy.build_wheel(tmp_path)
name = wheel.wheelfile.WheelFile(tmp_path / filename).parsed_filename
assert name.group('plat').endswith(arch)
finally:
# revert environment variable setting done by the in-process build
os.environ.pop('_PYTHON_HOST_PLATFORM', None)
def test_subprojects(package_subproject, tmp_path):
filename = mesonpy.build_wheel(tmp_path)
artifact = wheel.wheelfile.WheelFile(tmp_path / filename)
assert wheel_contents(artifact) == {
'subproject-1.0.0.dist-info/METADATA',
'subproject-1.0.0.dist-info/RECORD',
'subproject-1.0.0.dist-info/WHEEL',
'subproject.py',
'dep.py',
}
# Requires Meson 1.2.0, see https://github.com/mesonbuild/meson/pull/11909.
@pytest.mark.skipif(MESON_VERSION < (1, 1, 99), reason='Meson version too old')
@pytest.mark.parametrize(('arg'), ['--skip-subprojects', '--skip-subprojects=dep'])
def test_skip_subprojects(package_subproject, tmp_path, arg):
filename = mesonpy.build_wheel(tmp_path, {'install-args': [arg]})
artifact = wheel.wheelfile.WheelFile(tmp_path / filename)
assert wheel_contents(artifact) == {
'subproject-1.0.0.dist-info/METADATA',
'subproject-1.0.0.dist-info/RECORD',
'subproject-1.0.0.dist-info/WHEEL',
'subproject.py',
}
# Requires Meson 1.3.0, see https://github.com/mesonbuild/meson/pull/11745.
@pytest.mark.skipif(MESON_VERSION < (1, 2, 99), reason='Meson version too old')
@pytest.mark.skipif(NOGIL_BUILD, reason='Free-threaded CPython does not support the limited API')
@pytest.mark.xfail('__pypy__' in sys.builtin_module_names, reason='PyPy does not support the abi3 platform tag for wheels')
def test_limited_api(wheel_limited_api):
artifact = wheel.wheelfile.WheelFile(wheel_limited_api)
name = artifact.parsed_filename
assert name.group('pyver') == INTERPRETER
assert name.group('abi') == 'abi3'
assert name.group('plat') == PLATFORM
# Requires Meson 1.3.0, see https://github.com/mesonbuild/meson/pull/11745.
@pytest.mark.skipif(MESON_VERSION < (1, 2, 99), reason='Meson version too old')
@pytest.mark.skipif(NOGIL_BUILD, reason='Free-threaded CPython does not support the limited API')
@pytest.mark.xfail('__pypy__' in sys.builtin_module_names, reason='PyPy does not use special modules suffix for stable ABI')
def test_limited_api_bad(package_limited_api, tmp_path):
with pytest.raises(mesonpy.BuildError, match='The package declares compatibility with Python limited API but '):
with mesonpy._project({'setup-args': ['-Dextra=true']}) as project:
project.wheel(tmp_path)
# Requires Meson 1.3.0, see https://github.com/mesonbuild/meson/pull/11745.
@pytest.mark.skipif(MESON_VERSION < (1, 2, 99), reason='Meson version too old')
def test_limited_api_disabled(package_limited_api, tmp_path):
filename = mesonpy.build_wheel(tmp_path, {'setup-args': ['-Dpython.allow_limited_api=false']})
artifact = wheel.wheelfile.WheelFile(tmp_path / filename)
name = artifact.parsed_filename
assert name.group('pyver') == INTERPRETER
assert name.group('abi') == ABI
assert name.group('plat') == PLATFORM
def test_install_subdir(wheel_install_subdir):
artifact = wheel.wheelfile.WheelFile(wheel_install_subdir)
# Handling of the exclude_files and exclude_directories requires
# Meson 1.1.0, see https://github.com/mesonbuild/meson/pull/11432.
# Run the test anyway to ensure that meson-python can produce a
# wheel also for older versions of Meson.
if MESON_VERSION >= (1, 1, 99):
assert wheel_contents(artifact) == {
'install_subdir-1.0.0.dist-info/METADATA',
'install_subdir-1.0.0.dist-info/RECORD',
'install_subdir-1.0.0.dist-info/WHEEL',
'subdir/__init__.py',
'subdir/test.py',
'test/module.py',
'nested/deep/deep.py',
'nested/nested.py',
}
def test_vendored_meson(wheel_vendored_meson):
# This test will error if the vendored meson.py wrapper script in
# the test package isn't used.
pass
def test_encoding(package_encoding, tmp_path):
with mesonpy._project() as project:
wheelname = project.wheel(tmp_path)
artifact = wheel.wheelfile.WheelFile(tmp_path / wheelname)
assert wheel_contents(artifact) == {
'encoding-1.0.0.dist-info/METADATA',
'encoding-1.0.0.dist-info/RECORD',
'encoding-1.0.0.dist-info/WHEEL',
'ใในใ.py',
}
def test_custom_target_install_dir(package_custom_target_dir, tmp_path):
filename = mesonpy.build_wheel(tmp_path)
artifact = wheel.wheelfile.WheelFile(tmp_path / filename)
assert wheel_contents(artifact) == {
'custom_target_dir-1.0.0.dist-info/METADATA',
'custom_target_dir-1.0.0.dist-info/RECORD',
'custom_target_dir-1.0.0.dist-info/WHEEL',
'package/generated/one.py',
'package/generated/two.py',
}
|