mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
4de5477b61
With the introduction and use of pytest, it is simple and easy to execute specific tests in isolation through documented command line arguments. Either by specifying the module path or through the `-k EXPRESSION` argument. There is no longer any need to provide the boilerplate: if __name__ == '__main__': unittest.main() To every test file. It is simply noise. The pattern remains in test files that aren't named with `test_*` as those files are not discovered and executed by pytest by default.
30 lines
1015 B
Python
30 lines
1015 B
Python
from PIL import Image
|
|
from .helper import PillowTestCase, hopper
|
|
|
|
|
|
class TestImageGetExtrema(PillowTestCase):
|
|
|
|
def test_extrema(self):
|
|
|
|
def extrema(mode):
|
|
return hopper(mode).getextrema()
|
|
|
|
self.assertEqual(extrema("1"), (0, 255))
|
|
self.assertEqual(extrema("L"), (0, 255))
|
|
self.assertEqual(extrema("I"), (0, 255))
|
|
self.assertEqual(extrema("F"), (0, 255))
|
|
self.assertEqual(extrema("P"), (0, 225)) # fixed palette
|
|
self.assertEqual(
|
|
extrema("RGB"), ((0, 255), (0, 255), (0, 255)))
|
|
self.assertEqual(
|
|
extrema("RGBA"), ((0, 255), (0, 255), (0, 255), (255, 255)))
|
|
self.assertEqual(
|
|
extrema("CMYK"), ((0, 255), (0, 255), (0, 255), (0, 0)))
|
|
self.assertEqual(extrema("I;16"), (0, 255))
|
|
|
|
def test_true_16(self):
|
|
im = Image.open("Tests/images/16_bit_noise.tif")
|
|
self.assertEqual(im.mode, 'I;16')
|
|
extrema = im.getextrema()
|
|
self.assertEqual(extrema, (106, 285))
|