2017-12-30 16:18:06 -04:00
|
|
|
import unittest
|
|
|
|
|
2018-03-27 13:59:38 -03:00
|
|
|
from importlib import import_module, resources
|
2017-12-30 16:18:06 -04:00
|
|
|
from . import data01
|
2021-07-29 22:05:05 -03:00
|
|
|
from .resources import util
|
2017-12-30 16:18:06 -04:00
|
|
|
|
|
|
|
|
2021-07-29 22:05:05 -03:00
|
|
|
class CommonBinaryTests(util.CommonTests, unittest.TestCase):
|
2017-12-30 16:18:06 -04:00
|
|
|
def execute(self, package, path):
|
2021-11-24 03:51:37 -04:00
|
|
|
with util.suppress_known_deprecation():
|
|
|
|
resources.read_binary(package, path)
|
2017-12-30 16:18:06 -04:00
|
|
|
|
|
|
|
|
2021-07-29 22:05:05 -03:00
|
|
|
class CommonTextTests(util.CommonTests, unittest.TestCase):
|
2017-12-30 16:18:06 -04:00
|
|
|
def execute(self, package, path):
|
2021-11-24 03:51:37 -04:00
|
|
|
with util.suppress_known_deprecation():
|
|
|
|
resources.read_text(package, path)
|
2017-12-30 16:18:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
class ReadTests:
|
|
|
|
def test_read_binary(self):
|
2021-11-24 03:51:37 -04:00
|
|
|
with util.suppress_known_deprecation():
|
|
|
|
result = resources.read_binary(self.data, 'binary.file')
|
2017-12-30 16:18:06 -04:00
|
|
|
self.assertEqual(result, b'\0\1\2\3')
|
|
|
|
|
|
|
|
def test_read_text_default_encoding(self):
|
2021-11-24 03:51:37 -04:00
|
|
|
with util.suppress_known_deprecation():
|
|
|
|
result = resources.read_text(self.data, 'utf-8.file')
|
2017-12-30 16:18:06 -04:00
|
|
|
self.assertEqual(result, 'Hello, UTF-8 world!\n')
|
|
|
|
|
|
|
|
def test_read_text_given_encoding(self):
|
2021-11-24 03:51:37 -04:00
|
|
|
with util.suppress_known_deprecation():
|
|
|
|
result = resources.read_text(self.data, 'utf-16.file', encoding='utf-16')
|
2017-12-30 16:18:06 -04:00
|
|
|
self.assertEqual(result, 'Hello, UTF-16 world!\n')
|
|
|
|
|
|
|
|
def test_read_text_with_errors(self):
|
|
|
|
# Raises UnicodeError without the 'errors' argument.
|
2021-11-24 03:51:37 -04:00
|
|
|
with util.suppress_known_deprecation():
|
|
|
|
self.assertRaises(
|
|
|
|
UnicodeError, resources.read_text, self.data, 'utf-16.file'
|
|
|
|
)
|
|
|
|
with util.suppress_known_deprecation():
|
|
|
|
result = resources.read_text(self.data, 'utf-16.file', errors='ignore')
|
2017-12-30 16:18:06 -04:00
|
|
|
self.assertEqual(
|
|
|
|
result,
|
|
|
|
'H\x00e\x00l\x00l\x00o\x00,\x00 '
|
|
|
|
'\x00U\x00T\x00F\x00-\x001\x006\x00 '
|
2021-03-04 14:43:00 -04:00
|
|
|
'\x00w\x00o\x00r\x00l\x00d\x00!\x00\n\x00',
|
|
|
|
)
|
2017-12-30 16:18:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
class ReadDiskTests(ReadTests, unittest.TestCase):
|
|
|
|
data = data01
|
|
|
|
|
|
|
|
|
|
|
|
class ReadZipTests(ReadTests, util.ZipSetup, unittest.TestCase):
|
2018-03-27 13:59:38 -03:00
|
|
|
def test_read_submodule_resource(self):
|
|
|
|
submodule = import_module('ziptestdata.subdirectory')
|
2021-11-24 03:51:37 -04:00
|
|
|
with util.suppress_known_deprecation():
|
|
|
|
result = resources.read_binary(submodule, 'binary.file')
|
2018-03-27 13:59:38 -03:00
|
|
|
self.assertEqual(result, b'\0\1\2\3')
|
|
|
|
|
|
|
|
def test_read_submodule_resource_by_name(self):
|
2021-11-24 03:51:37 -04:00
|
|
|
with util.suppress_known_deprecation():
|
|
|
|
result = resources.read_binary('ziptestdata.subdirectory', 'binary.file')
|
2018-03-27 13:59:38 -03:00
|
|
|
self.assertEqual(result, b'\0\1\2\3')
|
2017-12-30 16:18:06 -04:00
|
|
|
|
|
|
|
|
2021-07-29 22:05:05 -03:00
|
|
|
class ReadNamespaceTests(ReadTests, unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
from . import namespacedata01
|
|
|
|
|
|
|
|
self.data = namespacedata01
|
|
|
|
|
|
|
|
|
2017-12-30 16:18:06 -04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|