2020-05-08 20:20:26 -03:00
|
|
|
import typing
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
from importlib import resources
|
|
|
|
from importlib.abc import Traversable
|
2022-01-22 22:38:26 -04:00
|
|
|
from . import data01
|
|
|
|
from .resources import util
|
2020-05-08 20:20:26 -03:00
|
|
|
|
|
|
|
|
|
|
|
class FilesTests:
|
|
|
|
def test_read_bytes(self):
|
|
|
|
files = resources.files(self.data)
|
|
|
|
actual = files.joinpath('utf-8.file').read_bytes()
|
|
|
|
assert actual == b'Hello, UTF-8 world!\n'
|
|
|
|
|
|
|
|
def test_read_text(self):
|
|
|
|
files = resources.files(self.data)
|
2021-04-05 01:11:23 -03:00
|
|
|
actual = files.joinpath('utf-8.file').read_text(encoding='utf-8')
|
2020-05-08 20:20:26 -03:00
|
|
|
assert actual == 'Hello, UTF-8 world!\n'
|
|
|
|
|
|
|
|
@unittest.skipUnless(
|
|
|
|
hasattr(typing, 'runtime_checkable'),
|
|
|
|
"Only suitable when typing supports runtime_checkable",
|
2021-03-04 14:43:00 -04:00
|
|
|
)
|
2020-05-08 20:20:26 -03:00
|
|
|
def test_traversable(self):
|
|
|
|
assert isinstance(resources.files(self.data), Traversable)
|
|
|
|
|
|
|
|
|
|
|
|
class OpenDiskTests(FilesTests, unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.data = data01
|
|
|
|
|
|
|
|
|
|
|
|
class OpenZipTests(FilesTests, util.ZipSetup, unittest.TestCase):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-07-29 22:05:05 -03:00
|
|
|
class OpenNamespaceTests(FilesTests, unittest.TestCase):
|
|
|
|
def setUp(self):
|
2022-01-22 22:38:26 -04:00
|
|
|
from . import namespacedata01
|
2021-07-29 22:05:05 -03:00
|
|
|
|
|
|
|
self.data = namespacedata01
|
|
|
|
|
|
|
|
|
2020-05-08 20:20:26 -03:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|