mirror of
https://github.com/python/cpython.git
synced 2026-04-27 06:10:59 +00:00
- Add Py_TARGET_ABI3T macro. - Add ".abi3t.so" to importlib EXTENSION_SUFFIXES. - Remove ".abi3.so" from importlib EXTENSION_SUFFIXES on Free Threading. - Adjust tests This is part of the implementation for PEP-803. Detailed documentation to come later. Co-authored-by: Nathan Goldbaum <nathan.goldbaum@gmail.com>
83 lines
2.6 KiB
Python
83 lines
2.6 KiB
Python
from test.support import is_apple_mobile, Py_GIL_DISABLED
|
|
from test.test_importlib import abc, util
|
|
|
|
machinery = util.import_importlib('importlib.machinery')
|
|
|
|
import unittest
|
|
import sys
|
|
|
|
|
|
class FinderTests(abc.FinderTests):
|
|
|
|
"""Test the finder for extension modules."""
|
|
|
|
def setUp(self):
|
|
if not self.machinery.EXTENSION_SUFFIXES or not util.EXTENSIONS:
|
|
raise unittest.SkipTest("Requires dynamic loading support.")
|
|
if util.EXTENSIONS.name in sys.builtin_module_names:
|
|
raise unittest.SkipTest(
|
|
f"{util.EXTENSIONS.name} is a builtin module"
|
|
)
|
|
|
|
def find_spec(self, fullname):
|
|
if is_apple_mobile:
|
|
# Apple mobile platforms require a specialist loader that uses
|
|
# .fwork files as placeholders for the true `.so` files.
|
|
loaders = [
|
|
(
|
|
self.machinery.AppleFrameworkLoader,
|
|
[
|
|
ext.replace(".so", ".fwork")
|
|
for ext in self.machinery.EXTENSION_SUFFIXES
|
|
]
|
|
)
|
|
]
|
|
else:
|
|
loaders = [
|
|
(
|
|
self.machinery.ExtensionFileLoader,
|
|
self.machinery.EXTENSION_SUFFIXES
|
|
)
|
|
]
|
|
|
|
importer = self.machinery.FileFinder(util.EXTENSIONS.path, *loaders)
|
|
|
|
return importer.find_spec(fullname)
|
|
|
|
def test_module(self):
|
|
self.assertTrue(self.find_spec(util.EXTENSIONS.name))
|
|
|
|
# No extension module as an __init__ available for testing.
|
|
test_package = test_package_in_package = None
|
|
|
|
# No extension module in a package available for testing.
|
|
test_module_in_package = None
|
|
|
|
# Extension modules cannot be an __init__ for a package.
|
|
test_package_over_module = None
|
|
|
|
def test_failure(self):
|
|
self.assertIsNone(self.find_spec('asdfjkl;'))
|
|
|
|
def test_abi3_extension_suffixes(self):
|
|
suffixes = self.machinery.EXTENSION_SUFFIXES
|
|
if 'win32' in sys.platform:
|
|
# Either "_d.pyd" or ".pyd" must be in suffixes
|
|
self.assertTrue({"_d.pyd", ".pyd"}.intersection(suffixes))
|
|
elif 'cygwin' in sys.platform:
|
|
pass
|
|
else:
|
|
if Py_GIL_DISABLED:
|
|
self.assertNotIn(".abi3.so", suffixes)
|
|
else:
|
|
self.assertIn(".abi3.so", suffixes)
|
|
self.assertIn(".abi3t.so", suffixes)
|
|
|
|
|
|
(Frozen_FinderTests,
|
|
Source_FinderTests
|
|
) = util.test_both(FinderTests, machinery=machinery)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|