2021-03-04 14:43:00 -04:00
|
|
|
import io
|
2024-06-04 03:36:28 -03:00
|
|
|
import pathlib
|
2017-12-30 16:18:06 -04:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
from importlib import resources
|
2022-07-24 21:53:10 -03:00
|
|
|
from . import util
|
2017-12-30 16:18:06 -04:00
|
|
|
|
|
|
|
|
2021-07-29 22:05:05 -03:00
|
|
|
class CommonTests(util.CommonTests, unittest.TestCase):
|
2017-12-30 16:18:06 -04:00
|
|
|
def execute(self, package, path):
|
2021-12-18 22:28:49 -04:00
|
|
|
with resources.as_file(resources.files(package).joinpath(path)):
|
|
|
|
pass
|
2017-12-30 16:18:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
class PathTests:
|
|
|
|
def test_reading(self):
|
2023-02-18 17:29:22 -04:00
|
|
|
"""
|
2024-06-04 03:36:28 -03:00
|
|
|
Path should be readable and a pathlib.Path instance.
|
2023-02-18 17:29:22 -04:00
|
|
|
"""
|
2021-12-18 22:28:49 -04:00
|
|
|
target = resources.files(self.data) / 'utf-8.file'
|
|
|
|
with resources.as_file(target) as path:
|
2024-06-04 03:36:28 -03:00
|
|
|
self.assertIsInstance(path, pathlib.Path)
|
2021-12-18 22:28:49 -04:00
|
|
|
self.assertTrue(path.name.endswith("utf-8.file"), repr(path))
|
2024-06-04 03:36:28 -03:00
|
|
|
self.assertEqual('Hello, UTF-8 world!\n', path.read_text(encoding='utf-8'))
|
2017-12-30 16:18:06 -04:00
|
|
|
|
|
|
|
|
2024-09-11 23:33:07 -03:00
|
|
|
class PathDiskTests(PathTests, util.DiskSetup, unittest.TestCase):
|
2020-06-29 17:59:22 -03:00
|
|
|
def test_natural_path(self):
|
2021-04-02 16:35:32 -03:00
|
|
|
# Guarantee the internal implementation detail that
|
|
|
|
# file-system-backed resources do not get the tempdir
|
|
|
|
# treatment.
|
2021-12-18 22:28:49 -04:00
|
|
|
target = resources.files(self.data) / 'utf-8.file'
|
|
|
|
with resources.as_file(target) as path:
|
|
|
|
assert 'data' in str(path)
|
2020-06-29 17:59:22 -03:00
|
|
|
|
2017-12-30 16:18:06 -04:00
|
|
|
|
2021-03-04 14:43:00 -04:00
|
|
|
class PathMemoryTests(PathTests, unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
file = io.BytesIO(b'Hello, UTF-8 world!\n')
|
|
|
|
self.addCleanup(file.close)
|
|
|
|
self.data = util.create_package(
|
|
|
|
file=file, path=FileNotFoundError("package exists only in memory")
|
|
|
|
)
|
|
|
|
self.data.__spec__.origin = None
|
|
|
|
self.data.__spec__.has_location = False
|
|
|
|
|
|
|
|
|
2017-12-30 16:18:06 -04:00
|
|
|
class PathZipTests(PathTests, util.ZipSetup, unittest.TestCase):
|
|
|
|
def test_remove_in_context_manager(self):
|
2023-02-18 17:29:22 -04:00
|
|
|
"""
|
|
|
|
It is not an error if the file that was temporarily stashed on the
|
|
|
|
file system is removed inside the `with` stanza.
|
|
|
|
"""
|
2021-12-18 22:28:49 -04:00
|
|
|
target = resources.files(self.data) / 'utf-8.file'
|
|
|
|
with resources.as_file(target) as path:
|
|
|
|
path.unlink()
|
2017-12-30 16:18:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|