Pillow/Tests/test_tiff_ifdrational.py

61 lines
1.7 KiB
Python
Raw Normal View History

from fractions import Fraction
from PIL import Image, TiffImagePlugin
from PIL.TiffImagePlugin import IFDRational
from .helper import PillowTestCase, hopper
2016-02-05 01:57:13 +03:00
class Test_IFDRational(PillowTestCase):
def _test_equal(self, num, denom, target):
2016-01-24 04:44:31 +03:00
t = IFDRational(num, denom)
self.assertEqual(target, t)
self.assertEqual(t, target)
2016-01-24 04:44:31 +03:00
def test_sanity(self):
2016-01-24 04:44:31 +03:00
self._test_equal(1, 1, 1)
2016-02-05 01:57:13 +03:00
self._test_equal(1, 1, Fraction(1, 1))
self._test_equal(2, 2, 1)
2016-02-05 01:57:13 +03:00
self._test_equal(1.0, 1, Fraction(1, 1))
2016-01-24 04:44:31 +03:00
2016-02-05 01:57:13 +03:00
self._test_equal(Fraction(1, 1), 1, Fraction(1, 1))
self._test_equal(IFDRational(1, 1), 1, 1)
2016-01-24 04:44:31 +03:00
2016-02-05 01:57:13 +03:00
self._test_equal(1, 2, Fraction(1, 2))
self._test_equal(1, 2, IFDRational(1, 2))
def test_nonetype(self):
2019-02-03 07:59:24 +03:00
# Fails if the _delegate function doesn't return a valid function
2016-01-24 04:44:31 +03:00
xres = IFDRational(72)
yres = IFDRational(72)
self.assertIsNotNone(xres._val)
self.assertIsNotNone(xres.numerator)
self.assertIsNotNone(xres.denominator)
self.assertIsNotNone(yres._val)
2016-01-24 04:44:31 +03:00
self.assertTrue(xres and 1)
self.assertTrue(xres and yres)
def test_ifd_rational_save(self):
methods = (True, False)
2019-06-13 18:54:46 +03:00
if "libtiff_encoder" not in dir(Image.core):
methods = (False,)
2016-08-04 09:40:12 +03:00
for libtiff in methods:
TiffImagePlugin.WRITE_LIBTIFF = libtiff
2016-01-24 04:44:31 +03:00
im = hopper()
2019-06-13 18:54:46 +03:00
out = self.tempfile("temp.tiff")
2016-02-05 01:57:13 +03:00
res = IFDRational(301, 1)
2019-06-13 18:54:46 +03:00
im.save(out, dpi=(res, res), compression="raw")
Improve handling of file resources Follow Python's file object semantics. User code is responsible for closing resources (usually through a context manager) in a deterministic way. To achieve this, remove __del__ functions. These functions used to closed open file handlers in an attempt to silence Python ResourceWarnings. However, using __del__ has the following drawbacks: - __del__ isn't called until the object's reference count reaches 0. Therefore, resource handlers remain open or in use longer than necessary. - The __del__ method isn't guaranteed to execute on system exit. See the Python documentation: https://docs.python.org/3/reference/datamodel.html#object.__del__ > It is not guaranteed that __del__() methods are called for objects > that still exist when the interpreter exits. - Exceptions that occur inside __del__ are ignored instead of raised. This has the potential of hiding bugs. This is also in the Python documentation: > Warning: Due to the precarious circumstances under which __del__() > methods are invoked, exceptions that occur during their execution > are ignored, and a warning is printed to sys.stderr instead. Instead, always close resource handlers when they are no longer in use. This will close the file handler at a specified point in the user's code and not wait until the interpreter chooses to. It is always guaranteed to run. And, if an exception occurs while closing the file handler, the bug will not be ignored. Now, when code receives a ResourceWarning, it will highlight an area that is mishandling resources. It should not simply be silenced, but fixed by closing resources with a context manager. All warnings that were emitted during tests have been cleaned up. To enable warnings, I passed the `-Wa` CLI option to Python. This exposed some mishandling of resources in ImageFile.__init__() and SpiderImagePlugin.loadImageSeries(), they too were fixed.
2019-05-25 19:30:58 +03:00
with Image.open(out) as reloaded:
self.assertEqual(
float(IFDRational(301, 1)), float(reloaded.tag_v2[282])
)